Skip to content

Commit e1ba439

Browse files
committed
Merge pull request opencv#6611 from tomoaki0705:fixPerformanceSplitAarch64
2 parents d3930cd + 070e4d7 commit e1ba439

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

modules/core/perf/perf_split.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,9 @@ PERF_TEST_P( Size_Depth_Channels, split,
2929
int runs = (sz.width <= 640) ? 8 : 1;
3030
TEST_CYCLE_MULTIRUN(runs) split(m, (vector<Mat>&)mv);
3131

32+
#if defined (__aarch64__)
33+
SANITY_CHECK(mv, 2e-5);
34+
#else
3235
SANITY_CHECK(mv, 1e-12);
36+
#endif
3337
}

0 commit comments

Comments
 (0)