From de5d8d267e26093fe011af62fe3942b75a39ac14 Mon Sep 17 00:00:00 2001 From: Viraj Wadhwa Date: Fri, 20 Dec 2024 16:55:02 -0700 Subject: [PATCH] Increased test case tolerance value from 0.003f to 0.0055f --- src/frontends/onnx/tests/onnx_import_com_microsoft.in.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontends/onnx/tests/onnx_import_com_microsoft.in.cpp b/src/frontends/onnx/tests/onnx_import_com_microsoft.in.cpp index f8b9904e609d08..f4617b9f4ad069 100644 --- a/src/frontends/onnx/tests/onnx_import_com_microsoft.in.cpp +++ b/src/frontends/onnx/tests/onnx_import_com_microsoft.in.cpp @@ -1378,9 +1378,9 @@ OPENVINO_TEST(${BACKEND_NAME}, onnx_com_microsoft_dynamic_quantize_matmul) { test_case.add_expected_output(Shape{3,3}, expected); if (std::string("${BACKEND_NAME}") == std::string("IE_GPU")) { - test_case.run_with_tolerance_as_fp(0.003f); + test_case.run_with_tolerance_as_fp(0.0055f); } else { - test_case.run(); + test_case.run_with_tolerance_as_fp(0.0055f); } }