#include "verify_program.hpp" #include #include #include struct test_step_transpose : verify_program { migraphx::program create_program() const { migraphx::program p; auto* mm = p.get_main_module(); migraphx::shape s1{migraphx::shape::float_type, {2, 1, 4, 6}}; auto l0 = mm->add_parameter("x", s1); auto tl = mm->add_instruction(migraphx::make_op("transpose", {{"dims", {0, 2, 3, 1}}}), l0); auto r = mm->add_instruction( migraphx::make_op("step", {{"axes", {0, 1, 2}}, {"steps", {2, 2, 3}}}), tl); mm->add_return({r}); return p; } };