diff --git a/dpnp/tests/test_sycl_queue.py b/dpnp/tests/test_sycl_queue.py index 0bd4d6b5333..e7e15066664 100644 --- a/dpnp/tests/test_sycl_queue.py +++ b/dpnp/tests/test_sycl_queue.py @@ -1081,7 +1081,6 @@ def test_array_creation_from_dpctl(copy, device): assert isinstance(result, dpnp_array) -@pytest.mark.skip("due to dpctl-2213") @pytest.mark.parametrize("device", valid_dev, ids=dev_ids) @pytest.mark.parametrize("arr_dtype", get_all_dtypes(no_float16=True)) @pytest.mark.parametrize("shape", [tuple(), (2,), (3, 0, 1), (2, 2, 2)]) diff --git a/dpnp/tests/third_party/cupy/core_tests/test_dlpack.py b/dpnp/tests/third_party/cupy/core_tests/test_dlpack.py index 2df8cbfc5f7..41df0a82e0a 100644 --- a/dpnp/tests/third_party/cupy/core_tests/test_dlpack.py +++ b/dpnp/tests/third_party/cupy/core_tests/test_dlpack.py @@ -82,7 +82,6 @@ def _get_stream(self, stream_name): return dpctl.SyclQueue() return dpctl.SyclQueue() - @pytest.mark.skip("due to dpctl-2213") @testing.for_all_dtypes(no_bool=False) def test_conversion(self, dtype): orig_array = _gen_array(dtype) @@ -102,7 +101,6 @@ def test_from_dlpack_and_conv_errors(self): # for host copies. cupy.from_dlpack(orig_array, copy=True) - @pytest.mark.skip("due to dpctl-2213") @pytest.mark.parametrize( "kwargs, versioned", [ @@ -130,7 +128,6 @@ def test_conversion_max_version(self, kwargs, versioned): testing.assert_array_equal(orig_array, out_array) testing.assert_array_equal(orig_array.data.ptr, out_array.data.ptr) - @pytest.mark.skip("due to dpctl-2213") def test_conversion_device(self): orig_array = _gen_array("float32") @@ -202,7 +199,6 @@ def test_conversion_device_to_cpu(self): ) assert numpy.may_share_memory(arr_nocopy, arr1) - @pytest.mark.skip("due to dpctl-2213") def test_stream(self): allowed_streams = ["null", True] # if not cuda.runtime.is_hip: