From adadf1cbfe821247840cd1328db457f1f3e481c6 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Mon, 17 Nov 2025 13:29:49 +0100 Subject: [PATCH] Enabled test_special_case since MKLD-18712 resolved --- 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",