Commit 070e4d75 authored by Tomoaki Teshima's avatar Tomoaki Teshima

let the performance test of split pass on 64bit ARM

  * loosen the threshold only under aarch64
  * fix #6610
parent 45474279
...@@ -29,5 +29,9 @@ PERF_TEST_P( Size_Depth_Channels, split, ...@@ -29,5 +29,9 @@ PERF_TEST_P( Size_Depth_Channels, split,
int runs = (sz.width <= 640) ? 8 : 1; int runs = (sz.width <= 640) ? 8 : 1;
TEST_CYCLE_MULTIRUN(runs) split(m, (vector<Mat>&)mv); TEST_CYCLE_MULTIRUN(runs) split(m, (vector<Mat>&)mv);
#if defined (__aarch64__)
SANITY_CHECK(mv, 2e-5);
#else
SANITY_CHECK(mv, 1e-12); SANITY_CHECK(mv, 1e-12);
#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