You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

norm.h 362 B

12345678910111213141516171819
  1. #pragma once
  2. #include <iostream>
  3. #include "megdnn/basic_types.h"
  4. #include "megdnn/opr_param_defs.h"
  5. namespace megdnn {
  6. namespace test {
  7. namespace norm {
  8. struct TestArg {
  9. param::Norm param;
  10. TensorShape src;
  11. TestArg(param::Norm param, TensorShape src) : param(param), src(src) {}
  12. };
  13. } // namespace norm
  14. } // namespace test
  15. } // namespace megdnn