Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions dpnp/tests/third_party/cupy/core_tests/test_dlpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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",
[
Expand Down Expand Up @@ -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")

Expand Down Expand Up @@ -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]

Expand Down
Loading