| 335 | static void print_module(const module& m) { std::cout << m << std::endl; } |
| 336 | |
| 337 | static migraphx::instruction_ref add_allocation(module& m, const migraphx::shape& s) |
| 338 | { |
| 339 | return m.add_instruction(migraphx::make_op("allocate", {{"shape", migraphx::to_value(s)}}), {}); |
| 340 | } |
| 341 | |
| 342 | struct experimental_custom_op |
| 343 | { |
nothing calls this directly
no test coverage detected