| 58 | } |
| 59 | |
| 60 | inline static void verify_load_save(const migraphx::program& p) |
| 61 | { |
| 62 | migraphx::tmp_dir td{"migraphx_test"}; |
| 63 | auto path = td.path / "test.mxr"; |
| 64 | migraphx::save(p, path.string()); |
| 65 | auto loaded = migraphx::load(path.string()); |
| 66 | EXPECT(p == loaded); |
| 67 | } |
| 68 | |
| 69 | inline static void compile_check(migraphx::program& p, |
| 70 | const migraphx::target& t, |
no test coverage detected