We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
arch_parser.c
1 parent 19486bb commit 4109e15Copy full SHA for 4109e15
third_party/intel/backend/arch_parser.c
@@ -43,9 +43,11 @@ extern "C" EXPORT_FUNC const char *parse_device_arch(uint64_t dev_arch) {
43
case sycl::ext::oneapi::experimental::architecture::intel_gpu_pvc:
44
arch = "pvc";
45
break;
46
+#if SYCL_COMPILER_VERSION >= 20250000
47
case sycl::ext::oneapi::experimental::architecture::intel_gpu_ptl_h:
48
arch = "ptl_h";
49
50
+#endif
51
default:
52
std::cerr << "sycl_arch not recognized: " << (uint64_t)sycl_arch
53
<< std::endl;
0 commit comments