#include "verify_program.hpp" #include #include #include struct test_mul_lrn : verify_program { migraphx::program create_program() const { migraphx::program p; auto* mm = p.get_main_module(); migraphx::shape s{migraphx::shape::half_type, {1, 3, 224, 224}}; auto x = mm->add_parameter("x", s); std::vector vec(s.elements(), 500.0f); auto l = mm->add_literal(migraphx::literal(s, vec)); auto xl = mm->add_instruction(migraphx::make_op("mul"), x, l); auto y = mm->add_instruction(migraphx::make_op("relu"), xl); mm->add_instruction( migraphx::make_op("lrn", {{"alpha", 0.0001}, {"beta", 0.75}, {"bias", 1.0}, {"size", 50}}), y); return p; } };