Skip to content

Commit 7311ae3

Browse files
committed
Add debug prints
1 parent ada070e commit 7311ae3

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

dpnp/backend/extensions/blas/gemm.cpp

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,12 +330,28 @@ bool _is_lnl_arl_architecture(sycl::device &dev)
330330
sycl::ext::oneapi::experimental::architecture::
331331
intel_gpu_20_4_4)) /* Lunar Lake */
332332
{
333+
std::cout << "_is_lnl_arl_architecture: running on Lunar Lake" << std::endl;
333334
return true;
334335
}
335336
else if (dev.ext_oneapi_architecture_is(
336337
sycl::ext::oneapi::experimental::architecture::
337-
intel_gpu_12_74_4)) /* Arrow Lake */
338+
intel_gpu_12_74_4)) /* Arrow Lake H */
338339
{
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;
339355
return true;
340356
}
341357
#endif // !defined(USE_ONEMKL_CUBLAS)

0 commit comments

Comments
 (0)