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.

conv_pooling.h 537 B

1234567891011121314151617181920212223
  1. #pragma once
  2. #include "megdnn/basic_types.h"
  3. #include "megdnn/opr_param_defs.h"
  4. namespace megdnn {
  5. namespace test {
  6. namespace conv_pooling {
  7. struct TestArg {
  8. param::ConvPooling param;
  9. TensorShape src, filter, bias;
  10. TestArg(param::ConvPooling param, TensorShape src, TensorShape filter,
  11. TensorShape bias)
  12. : param(param), src(src), filter(filter), bias(bias) {}
  13. };
  14. std::vector<TestArg> get_args();
  15. } // namespace conv_pooling
  16. } // namespace test
  17. } // namespace megdnn
  18. // vim: syntax=cpp.doxygen