#include "verify_program.hpp" #include #include #include struct quant_conv_padding : verify_program { migraphx::program create_program() const { migraphx::program p; migraphx::shape a_shape{migraphx::shape::int8_type, {2, 3, 4, 4}}; auto pa = p.add_parameter("a", a_shape); migraphx::shape c_shape{migraphx::shape::int8_type, {2, 3, 3, 3}}; auto pc = p.add_parameter("c", c_shape); p.add_instruction(migraphx::op::quant_convolution{{{1, 1}}, {{1, 1}}}, pa, pc); return p; } };