Skip to content

Commit 777a1b7

Browse files
authored
Temporary skip tests failing on PTL-H (#2513)
The PR proposes to skip tests which are failing in internal CI due to known issue on PTL-H machine.
1 parent eb4e73c commit 777a1b7

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

dpnp/tests/helper.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,14 @@ def is_lts_driver(device=None):
456456
return dev.has_aspect_gpu and "1.3" in dev.driver_version
457457

458458

459+
def is_ptl(device=None):
460+
"""
461+
Return True if a test is running on Panther Lake with Iris Xe3 GPU device,
462+
False otherwise.
463+
"""
464+
return _get_dev_mask(device) == 0xB000
465+
466+
459467
def is_win_platform():
460468
"""
461469
Return True if a test is running on Windows OS, False otherwise.

dpnp/tests/test_product.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
assert_dtype_allclose,
1313
generate_random_numpy_array,
1414
get_all_dtypes,
15+
is_ptl,
1516
numpy_version,
1617
)
1718
from .third_party.cupy import testing
@@ -1161,6 +1162,7 @@ def test_large_values(self, dtype):
11611162
expected = numpy.matmul(a, b)
11621163
assert_dtype_allclose(result, expected)
11631164

1165+
@pytest.mark.skipif(is_ptl(), reason="MKLD-18712")
11641166
@pytest.mark.parametrize("dt_out", [numpy.int32, numpy.float32])
11651167
@pytest.mark.parametrize(
11661168
"shape1, shape2",

0 commit comments

Comments
 (0)