Commit 6a0945ee authored by Robert Kimball's avatar Robert Kimball

fix error

parent 6292fa4d
...@@ -89,8 +89,8 @@ NGRAPH_TEST(${BACKEND_NAME}, batch_mat_mul_forward) ...@@ -89,8 +89,8 @@ NGRAPH_TEST(${BACKEND_NAME}, batch_mat_mul_forward)
auto backend_results = execute(backend_f, batchmatmul_args, "${BACKEND_NAME}"); auto backend_results = execute(backend_f, batchmatmul_args, "${BACKEND_NAME}");
for (size_t i = 0; i < ref_results.size(); i++) for (size_t i = 0; i < ref_results.size(); i++)
{ {
EXPECT_TRUE(test::all_close_f(ref_results.at(i), backend_results.at(i)), EXPECT_TRUE(test::all_close_f(ref_results.at(i), backend_results.at(i),
DEFAULT_FLOAT_TOLERANCE_BITS + 3); DEFAULT_FLOAT_TOLERANCE_BITS + 3));
} }
} }
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment