From f4366e413500214da80211f8bab22a0927e60e07 Mon Sep 17 00:00:00 2001 From: Anton <100830759+antonwolfy@users.noreply.github.com> Date: Tue, 18 Nov 2025 17:34:11 +0100 Subject: [PATCH] Enable a test on PTL muted due to oneMKL issue (#2672) The PR unmutes `test_special_case` for running on PTL, because and appropriate oneMKL issue has been resolved as part of 2025.3 release. --- dpnp/tests/test_product.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/dpnp/tests/test_product.py b/dpnp/tests/test_product.py index 9963c85f737c..763049e8791e 100644 --- a/dpnp/tests/test_product.py +++ b/dpnp/tests/test_product.py @@ -13,7 +13,6 @@ generate_random_numpy_array, get_all_dtypes, is_gpu_device, - is_ptl, is_win_platform, numpy_version, ) @@ -1154,7 +1153,6 @@ def test_large_values(self, dtype): expected = numpy.matmul(a, b) assert_dtype_allclose(result, expected) - @pytest.mark.skipif(is_ptl(), reason="MKLD-18712") @pytest.mark.parametrize("dt_out", [numpy.int32, numpy.float32]) @pytest.mark.parametrize( "shape1, shape2",