Commit 3a0e26b8 authored by Andrey Pavlenko's avatar Andrey Pavlenko

adding/tuning multiple run for perf tests failing due to big deviation…

adding/tuning multiple run for perf tests failing due to big deviation (functions using TBB can work so)
parent 48e31fd2
......@@ -258,7 +258,7 @@ PERF_TEST_P(Size_CvtMode, cvtColor8u,
declare.time(100);
declare.in(src, WARMUP_RNG).out(dst);
int runs = sz.width <= 320 ? 70 : 5;
int runs = sz.width <= 320 ? 100 : 5;
TEST_CYCLE_MULTIRUN(runs) cvtColor(src, dst, mode, ch.dcn);
SANITY_CHECK(dst, 1);
......
......@@ -35,7 +35,7 @@ PERF_TEST_P(Size_Source, calcHist1d,
declare.in(source);
TEST_CYCLE()
TEST_CYCLE_MULTIRUN(3)
{
calcHist(&source, numberOfImages, channels, Mat(), hist, dims, histSize, ranges);
}
......
......@@ -25,7 +25,7 @@ PERF_TEST_P(MatInfo_Size_Size, resizeUpLinear,
cvtest::fillGradient(src);
declare.in(src).out(dst);
TEST_CYCLE() resize(src, dst, to);
TEST_CYCLE_MULTIRUN(10) resize(src, dst, to);
#ifdef ANDROID
SANITY_CHECK(dst, 5);
......@@ -52,7 +52,7 @@ PERF_TEST_P(MatInfo_Size_Size, resizeDownLinear,
cvtest::fillGradient(src);
declare.in(src).out(dst);
TEST_CYCLE() resize(src, dst, to);
TEST_CYCLE_MULTIRUN(10) resize(src, dst, to);
#ifdef ANDROID
SANITY_CHECK(dst, 5);
......
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