#include "verify_program.hpp" #include #include #include struct test_mul_add : verify_program { migraphx::program create_program() const { migraphx::program p; auto* mm = p.get_main_module(); migraphx::shape s{migraphx::shape::float_type, {2, 3}}; migraphx::shape bs{migraphx::shape::float_type, {3}}; auto x = mm->add_parameter("x", s); auto a = mm->add_parameter("a", bs); auto b = mm->add_parameter("b", bs); auto ab = mm->add_instruction(migraphx::op::broadcast{1, s.lens()}, a); auto bb = mm->add_instruction(migraphx::op::broadcast{1, s.lens()}, b); auto mul = mm->add_instruction(migraphx::op::mul{}, x, ab); mm->add_instruction(migraphx::op::add{}, mul, bb); return p; } };