[PyOV] unskip test_ops_matmul (#18934)

This commit is contained in:
Anastasia Kuporosova 2023-08-03 10:06:07 +02:00 committed by GitHub
parent c38638ee43
commit 83d7b9d372
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,6 @@ import openvino.runtime.opset8 as ov
([2, 2, 4], [2, 4, 2], False, False, [2, 2, 2]), ([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): def test_matmul(shape_a, shape_b, transpose_a, transpose_b, output_shape):
np.random.seed(133391) np.random.seed(133391)
left_input = -100.0 + np.random.rand(*shape_a).astype(np.float32) * 200.0 left_input = -100.0 + np.random.rand(*shape_a).astype(np.float32) * 200.0