| 30 | #include <test.hpp> |
| 31 | |
| 32 | static void run_pass(migraphx::module& m, std::size_t align = 32) |
| 33 | { |
| 34 | migraphx::run_passes( |
| 35 | m, {migraphx::eliminate_allocation{"allocate", align}, migraphx::dead_code_elimination{}}); |
| 36 | } |
| 37 | |
| 38 | struct allocate |
| 39 | { |
no test coverage detected