Merge pull request #6611 from tomoaki0705:fixPerformanceSplitAarch64

This commit is contained in:
Alexander Alekhin 2016-06-01 10:34:33 +00:00
commit e1ba4399e8

View File

@ -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
} }