From 8c7f71aaca88da237ca5d5c604a7b08ac3cfcc44 Mon Sep 17 00:00:00 2001 From: Vladislav Perevezentsev Date: Thu, 18 Dec 2025 01:57:07 -0800 Subject: [PATCH 1/2] Unskip dlpack tests --- dpnp/tests/third_party/cupy/core_tests/test_dlpack.py | 4 ---- 1 file changed, 4 deletions(-) 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 80715257f9bc..65feab0a0419 100644 --- a/dpnp/tests/third_party/cupy/core_tests/test_dlpack.py +++ b/dpnp/tests/third_party/cupy/core_tests/test_dlpack.py @@ -78,7 +78,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) @@ -98,7 +97,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", [ @@ -126,7 +124,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") @@ -198,7 +195,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] From 91feff279619a16afa4a6dd3a7e6ee60559636df Mon Sep 17 00:00:00 2001 From: Vladislav Perevezentsev Date: Thu, 18 Dec 2025 04:03:21 -0800 Subject: [PATCH 2/2] Unskip dlpack tests in test_sycl_queue --- dpnp/tests/test_sycl_queue.py | 1 - 1 file changed, 1 deletion(-) diff --git a/dpnp/tests/test_sycl_queue.py b/dpnp/tests/test_sycl_queue.py index c6d11dcd8693..3ea4105a2cb2 100644 --- a/dpnp/tests/test_sycl_queue.py +++ b/dpnp/tests/test_sycl_queue.py @@ -1052,7 +1052,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)])