| 217 | } |
| 218 | |
| 219 | static auto check_target(const std::string& arch) |
| 220 | { |
| 221 | auto define = "__" + arch + "__"; |
| 222 | auto content = migraphx::replace_string(check_define, "__DEFINE__", define); |
| 223 | return migraphx::gpu::compile_hip_src({make_src_file("main.cpp", content)}, {}, arch); |
| 224 | } |
| 225 | |
| 226 | TEST_CASE(compile_target) |
| 227 | { |
no test coverage detected