#include "verify_program.hpp" #include #include #include struct gemm_2args_vv : verify_program { migraphx::program create_program() const { migraphx::program p; migraphx::shape m1_shape{migraphx::shape::float_type, {8}}; migraphx::shape m2_shape{migraphx::shape::float_type, {8}}; auto l1 = p.add_parameter("1", m1_shape); auto ul1 = p.add_instruction(migraphx::op::unsqueeze{{0}}, l1); auto l2 = p.add_parameter("2", m2_shape); auto ul2 = p.add_instruction(migraphx::op::unsqueeze{{1}}, l2); float alpha = 0.23f; auto res = p.add_instruction(migraphx::op::dot{alpha}, ul1, ul2); auto sres = p.add_instruction(migraphx::op::squeeze{{0}}, res); p.add_instruction(migraphx::op::squeeze{{0}}, sres); return p; } };