Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions dpnp/tests/test_sycl_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -1052,6 +1052,7 @@ 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)])
Expand Down
4 changes: 4 additions & 0 deletions dpnp/tests/third_party/cupy/core_tests/test_dlpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ 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 @@ -97,6 +98,7 @@ 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 @@ -124,6 +126,7 @@ 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 @@ -195,6 +198,7 @@ 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