#include "verify_program.hpp" #include #include #include #include struct batch_quant_dot_2 : verify_program { migraphx::program create_program() const { migraphx::program p; auto* mm = p.get_main_module(); migraphx::shape m1_shape{migraphx::shape::int8_type, {3, 2, 2, 8}}; migraphx::shape m2_shape{migraphx::shape::int8_type, {3, 2, 8, 7}}; migraphx::shape m3_shape{migraphx::shape::int32_type, {3, 2, 2, 7}}; auto l1 = mm->add_parameter("a", m1_shape); auto l2 = mm->add_parameter("b", m2_shape); auto l3 = mm->add_parameter("c", m3_shape); migraphx::add_apply_alpha_beta(*mm, {l1, l2, l3}, migraphx::make_op("quant_dot"), 1, 3); return p; } };