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.

pooling.cpp 430 B

12345678910111213141516171819
  1. #include "test/armv7/fixture.h"
  2. #include "test/common/checker.h"
  3. #include "test/common/pooling.h"
  4. namespace megdnn {
  5. namespace test {
  6. TEST_F(ARMV7, POOLING) {
  7. auto args = pooling::get_args();
  8. for (auto&& arg : args) {
  9. Checker<Pooling> checker(handle());
  10. checker.set_param(arg.param).exec(TensorShapeArray{arg.ishape, {}});
  11. }
  12. }
  13. } // namespace test
  14. } // namespace megdnn
  15. // vim: syntax=cpp.doxygen