#include "verify_program.hpp" #include #include #include struct test_gathernd_default : verify_program { migraphx::program create_program() const { migraphx::program p; auto* mm = p.get_main_module(); migraphx::shape ds{migraphx::shape::float_type, {2, 2}}; migraphx::shape is{migraphx::shape::int64_type, {2, 2}}; std::vector indices{0, 0, 1, 1}; auto a0 = mm->add_parameter("data", ds); auto a1 = mm->add_literal(migraphx::literal{is, indices}); mm->add_instruction(migraphx::make_op("gathernd"), a0, a1); return p; } };