From 83d7b9d372bf1abfe5378fcdcc605593e4807c88 Mon Sep 17 00:00:00 2001 From: Anastasia Kuporosova Date: Thu, 3 Aug 2023 10:06:07 +0200 Subject: [PATCH] [PyOV] unskip test_ops_matmul (#18934) --- src/bindings/python/tests/test_graph/test_ops_matmul.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bindings/python/tests/test_graph/test_ops_matmul.py b/src/bindings/python/tests/test_graph/test_ops_matmul.py index 6c52b272030..0917bb0d59b 100644 --- a/src/bindings/python/tests/test_graph/test_ops_matmul.py +++ b/src/bindings/python/tests/test_graph/test_ops_matmul.py @@ -24,7 +24,6 @@ import openvino.runtime.opset8 as ov ([2, 2, 4], [2, 4, 2], False, False, [2, 2, 2]), ], ) -@pytest.mark.skip(reason="Sporadically failed. Need further investigation. Ticket - 95970") def test_matmul(shape_a, shape_b, transpose_a, transpose_b, output_shape): np.random.seed(133391) left_input = -100.0 + np.random.rand(*shape_a).astype(np.float32) * 200.0