| 30 | #include <test.hpp> |
| 31 | |
| 32 | static void run_pass(migraphx::program& p) |
| 33 | { |
| 34 | migraphx::run_passes( |
| 35 | p, {migraphx::eliminate_common_subexpression{}, migraphx::dead_code_elimination{}}); |
| 36 | } |
| 37 | |
| 38 | static void run_pass(migraphx::module& m) |
| 39 | { |
no test coverage detected