| 140 | } |
| 141 | |
| 142 | static migraphx::argument run_ref(migraphx::program p, const migraphx::parameter_map& inputs) |
| 143 | { |
| 144 | p.compile(migraphx::make_target("ref")); |
| 145 | return p.eval(inputs).front(); |
| 146 | } |
| 147 | |
| 148 | static bool verify_mlir(const migraphx::module& mmlir) |
| 149 | { |
no test coverage detected