| 33 | #include <test.hpp> |
| 34 | |
| 35 | static void run_pass(migraphx::module& m) |
| 36 | { |
| 37 | migraphx::run_passes(m, |
| 38 | {migraphx::propagate_precision{}, |
| 39 | migraphx::eliminate_common_subexpression{}, |
| 40 | migraphx::dead_code_elimination{}}); |
| 41 | } |
| 42 | |
| 43 | TEST_CASE(propagate_input) |
| 44 | { |
no test coverage detected