File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff 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+
459467def is_win_platform ():
460468 """
461469 Return True if a test is running on Windows OS, False otherwise.
Original file line number Diff line number Diff line change 1212 assert_dtype_allclose ,
1313 generate_random_numpy_array ,
1414 get_all_dtypes ,
15+ is_ptl ,
1516 numpy_version ,
1617)
1718from .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" ,
You can’t perform that action at this time.
0 commit comments