#include "verify_program.hpp" #include #include #include struct test_scatternd_mul : verify_program { migraphx::program create_program() const { migraphx::program p; auto* mm = p.get_main_module(); auto dtype = migraphx::shape::float_type; auto itype = migraphx::shape::int64_type; migraphx::shape ds{dtype, {8}}; migraphx::shape is{itype, {4, 1}}; migraphx::shape us{dtype, {4}}; std::vector ind_vec{4, 3, 1, 7}; auto data = mm->add_parameter("data", ds); auto indices = mm->add_literal(migraphx::literal{is, ind_vec}); auto updates = mm->add_parameter("update", us); auto scatternd = mm->add_instruction(migraphx::make_op("scatternd_mul"), data, indices, updates); mm->add_return({scatternd}); return p; } };