| 35 | #include "test.hpp" |
| 36 | |
| 37 | TEST_CASE(load_op) |
| 38 | { |
| 39 | for(const auto& name : migraphx::get_operators()) |
| 40 | { |
| 41 | auto op = migraphx::load_op(name); |
| 42 | CHECK(op.name() == name); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | TEST_CASE(make_op) |
| 47 | { |
nothing calls this directly
no test coverage detected