#include #include "verify_program.hpp" #include #include #include struct test_isnan_broadcast : verify_program { migraphx::program create_program() const { migraphx::program p; auto* mm = p.get_main_module(); auto x = mm->add_parameter("x", migraphx::shape{migraphx::shape::float_type, {2}}); auto s0 = migraphx::shape{migraphx::shape::float_type, {2, 2}}; x = mm->add_instruction( migraphx::make_op("broadcast", {{"axis", 0}, {"out_lens", s0.lens()}}), x); std::vector data0{2, std::numeric_limits::quiet_NaN()}; migraphx::shape s1{migraphx::shape::float_type, {1, 2}}; auto l0 = mm->add_literal(migraphx::literal{s1, data0}); x = mm->add_instruction(migraphx::make_op("concat", {{"axis", 0}}), x, l0); mm->add_instruction(migraphx::make_op("isnan"), x); return p; } };