提交 3a5e036f 编写于 作者: V Vitaly Tuzov

Updated fix for accumulate performance test in case of multiple iterations

上级 01f773b8
......@@ -30,9 +30,9 @@ PERF_TEST_P( Size_MatType, Accumulate,
declare.time(100);
declare.in(src, WARMUP_RNG).out(dst);
TEST_CYCLE() { dst.setTo(cv::Scalar::all(0)); accumulate(src, dst); }
TEST_CYCLE() accumulate(src, dst);
SANITY_CHECK(dst);
SANITY_CHECK_NOTHING();
}
#ifdef HAVE_OPENVX
......@@ -60,9 +60,9 @@ PERF_TEST_P( Size_MatType, AccumulateSquare,
declare.time(100);
declare.in(src, WARMUP_RNG).out(dst);
TEST_CYCLE() { dst.setTo(cv::Scalar::all(0)); accumulateSquare(src, dst); }
TEST_CYCLE() accumulateSquare(src, dst);
SANITY_CHECK(dst);
SANITY_CHECK_NOTHING();
}
#ifdef HAVE_OPENVX
......@@ -90,7 +90,7 @@ PERF_TEST_P( Size_MatType, AccumulateWeighted,
declare.time(100);
declare.in(src, WARMUP_RNG).out(dst);
TEST_CYCLE() { dst.setTo(cv::Scalar::all(0)); accumulateWeighted(src, dst, 0.314); }
TEST_CYCLE() accumulateWeighted(src, dst, 0.314);
SANITY_CHECK(dst);
SANITY_CHECK_NOTHING();
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册