| 43 | static bool is_dot(const migraphx::instruction& ins) { return ins.name() == "dot"; } |
| 44 | |
| 45 | static void run_pass(migraphx::module& m) |
| 46 | { |
| 47 | run_passes(m, |
| 48 | {migraphx::simplify_qdq{.remove_qdq_only = false, .use_mx_quant = true}, |
| 49 | migraphx::dead_code_elimination{}}); |
| 50 | } |
| 51 | |
| 52 | static void run_cse(migraphx::module& m) |
| 53 | { |
no test coverage detected