Skip to content
Merged
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
4 changes: 4 additions & 0 deletions dpnp/tests/test_usm_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from .helper import (
assert_dtype_allclose,
generate_random_numpy_array,
is_win_platform,
)

list_of_usm_types = ["device", "shared", "host"]
Expand Down Expand Up @@ -796,6 +797,9 @@ def test_1in_1out(func, data, usm_type):
@pytest.mark.parametrize("usm_type_x", list_of_usm_types, ids=list_of_usm_types)
@pytest.mark.parametrize("usm_type_y", list_of_usm_types, ids=list_of_usm_types)
def test_2in_1out(func, data1, data2, usm_type_x, usm_type_y):
if func == "correlate" and is_win_platform():
pytest.skip("due to SAT-7693")

x = dp.array(data1, usm_type=usm_type_x)
y = dp.array(data2, usm_type=usm_type_y)
z = getattr(dp, func)(x, y)
Expand Down
Loading