diff --git a/numba_dpex/tests/dpjit_tests/parfors/test_builtin_ops.py b/numba_dpex/tests/dpjit_tests/parfors/test_builtin_ops.py index 2f87c5f117..269881d8fe 100644 --- a/numba_dpex/tests/dpjit_tests/parfors/test_builtin_ops.py +++ b/numba_dpex/tests/dpjit_tests/parfors/test_builtin_ops.py @@ -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, @@ -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}