Skip to content

Commit

Permalink
Merge pull request #1348 from IntelPython/skip_ipow_tests_l0
Browse files Browse the repository at this point in the history
Skip ipow tests on L0 GPU.
  • Loading branch information
Diptorup Deb authored Feb 19, 2024
2 parents f8e8120 + 5eabded commit 0c3fb55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion numba_dpex/tests/dpjit_tests/parfors/test_builtin_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from numba_dpex.tests._helper import (
get_float_dtypes,
get_int_dtypes,
has_level_zero,
has_opencl_gpu,
is_windows,
num_required_arguments,
Expand Down Expand Up @@ -317,7 +318,7 @@ def parfor_not_(a):
}


if has_opencl_gpu() or is_windows():
if has_opencl_gpu() or is_windows() or has_level_zero():
unsupported_funcs |= {parfor_ipow}


Expand Down

0 comments on commit 0c3fb55

Please sign in to comment.