| 73 | }; |
| 74 | |
| 75 | TEST_CASE(literal_test) |
| 76 | { |
| 77 | migraphx::program p; |
| 78 | |
| 79 | auto* mm = p.get_main_module(); |
| 80 | auto lit = mm->add_literal(1); |
| 81 | CHECK(lit->eval() == migraphx::literal{1}); |
| 82 | } |
| 83 | |
| 84 | TEST_CASE(param_test) |
| 85 | { |
nothing calls this directly
no test coverage detected