File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed
dpnp/backend/extensions/blas Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -330,12 +330,28 @@ bool _is_lnl_arl_architecture(sycl::device &dev)
330
330
sycl::ext::oneapi::experimental::architecture::
331
331
intel_gpu_20_4_4)) /* Lunar Lake */
332
332
{
333
+ std::cout << " _is_lnl_arl_architecture: running on Lunar Lake" << std::endl;
333
334
return true ;
334
335
}
335
336
else if (dev.ext_oneapi_architecture_is (
336
337
sycl::ext::oneapi::experimental::architecture::
337
- intel_gpu_12_74_4)) /* Arrow Lake */
338
+ intel_gpu_12_74_4)) /* Arrow Lake H */
338
339
{
340
+ std::cout << " _is_lnl_arl_architecture: running on Arrow Lake H" << std::endl;
341
+ return true ;
342
+ }
343
+ else if (dev.ext_oneapi_architecture_is (
344
+ sycl::ext::oneapi::experimental::architecture::
345
+ intel_gpu_arl_u)) /* Arrow Lake U */
346
+ {
347
+ std::cout << " _is_lnl_arl_architecture: running on Arrow Lake U" << std::endl;
348
+ return true ;
349
+ }
350
+ else if (dev.ext_oneapi_architecture_is (
351
+ sycl::ext::oneapi::experimental::architecture::
352
+ intel_gpu_arl_s)) /* Arrow Lake S */
353
+ {
354
+ std::cout << " _is_lnl_arl_architecture: running on Arrow Lake S" << std::endl;
339
355
return true ;
340
356
}
341
357
#endif // !defined(USE_ONEMKL_CUBLAS)
You can’t perform that action at this time.
0 commit comments