Skip to content

Commit

Permalink
Increased test case tolerance value from 0.003f to 0.0055f
Browse files Browse the repository at this point in the history
  • Loading branch information
virajwad committed Dec 20, 2024
1 parent 2c1ddb4 commit de5d8d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontends/onnx/tests/onnx_import_com_microsoft.in.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1378,9 +1378,9 @@ OPENVINO_TEST(${BACKEND_NAME}, onnx_com_microsoft_dynamic_quantize_matmul) {
test_case.add_expected_output<float>(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);
}
}

Expand Down

0 comments on commit de5d8d2

Please sign in to comment.