#include "verify_program.hpp" #include #include #include #include struct test_global_max_pooling : verify_program { migraphx::program create_program() const { migraphx::program p; auto* mm = p.get_main_module(); auto input = mm->add_parameter("x", migraphx::shape{migraphx::shape::float_type, {1, 3, 16, 16}}); auto op = migraphx::op::pooling{"max"}; auto lens = input->get_shape().lens(); op.lengths = {lens[2], lens[3]}; mm->add_instruction(op, input); return p; } };