| 33 | #include <test.hpp> |
| 34 | |
| 35 | static void run_pass(migraphx::module& m) |
| 36 | { |
| 37 | migraphx::run_passes( |
| 38 | m, {migraphx::normalize_ops{}, migraphx::insert_pad{}, migraphx::dead_code_elimination{}}); |
| 39 | } |
| 40 | |
| 41 | static migraphx::instruction_ref |
| 42 | create_im2col(migraphx::instruction_ref& l_img, size_t channels, migraphx::module& m) |
no test coverage detected