Skip to content

Commit 4bf0e4e

Browse files
authored
mute a test for padding (#2160)
1 parent d06277f commit 4bf0e4e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_arraypad.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from dpnp.dpnp_utils.dpnp_utils_pad import _as_pairs as dpnp_as_pairs
1313
from tests.third_party.cupy import testing
1414

15-
from .helper import assert_dtype_allclose, get_all_dtypes
15+
from .helper import assert_dtype_allclose, get_all_dtypes, has_support_aspect64
1616

1717

1818
class TestPad:
@@ -384,6 +384,7 @@ def test_reflect_symmetric_1d(self, pad_width, mode, reflect_type):
384384
result = dpnp.pad(a_dp, pad_width, mode=mode, reflect_type=reflect_type)
385385
assert_array_equal(result, expected)
386386

387+
@pytest.mark.skipif(not has_support_aspect64(), reason="dpctl-gh-1887")
387388
@pytest.mark.parametrize("data", [[[4, 5, 6], [6, 7, 8]], [[4, 5, 6]]])
388389
@pytest.mark.parametrize("pad_width", [10, (5, 7)])
389390
@pytest.mark.parametrize("mode", ["reflect", "symmetric"])

0 commit comments

Comments
 (0)