Skip to content

Commit 0c3fb55

Browse files
author
Diptorup Deb
authored
Merge pull request #1348 from IntelPython/skip_ipow_tests_l0
Skip ipow tests on L0 GPU.
2 parents f8e8120 + 5eabded commit 0c3fb55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

numba_dpex/tests/dpjit_tests/parfors/test_builtin_ops.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
from numba_dpex.tests._helper import (
1414
get_float_dtypes,
1515
get_int_dtypes,
16+
has_level_zero,
1617
has_opencl_gpu,
1718
is_windows,
1819
num_required_arguments,
@@ -317,7 +318,7 @@ def parfor_not_(a):
317318
}
318319

319320

320-
if has_opencl_gpu() or is_windows():
321+
if has_opencl_gpu() or is_windows() or has_level_zero():
321322
unsupported_funcs |= {parfor_ipow}
322323

323324

0 commit comments

Comments
 (0)