| 40 | namespace match = migraphx::match; |
| 41 | |
| 42 | static bool is_convolution(const migraphx::instruction& ins) { return ins.name() == "convolution"; } |
| 43 | static bool is_dot(const migraphx::instruction& ins) { return ins.name() == "dot"; } |
| 44 | |
| 45 | static void run_pass(migraphx::module& m) |