Skip to content

Commit 0c455a6

Browse files
authored
Temporary mute a test for dpnp.correlate (#2297)
`dpnp.correlate` with input arrays of different USM types produces sporadic crashes on Windows in internal CI. The PR proposes to temporary mute them until the issue is resolved.
1 parent 77702b3 commit 0c455a6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

dpnp/tests/test_usm_type.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
from .helper import (
1414
assert_dtype_allclose,
1515
generate_random_numpy_array,
16+
is_win_platform,
1617
)
1718

1819
list_of_usm_types = ["device", "shared", "host"]
@@ -796,6 +797,9 @@ def test_1in_1out(func, data, usm_type):
796797
@pytest.mark.parametrize("usm_type_x", list_of_usm_types, ids=list_of_usm_types)
797798
@pytest.mark.parametrize("usm_type_y", list_of_usm_types, ids=list_of_usm_types)
798799
def test_2in_1out(func, data1, data2, usm_type_x, usm_type_y):
800+
if func == "correlate" and is_win_platform():
801+
pytest.skip("due to SAT-7693")
802+
799803
x = dp.array(data1, usm_type=usm_type_x)
800804
y = dp.array(data2, usm_type=usm_type_y)
801805
z = getattr(dp, func)(x, y)

0 commit comments

Comments
 (0)