Commit 655465d9 authored by vbystricky's avatar vbystricky

Increase epsilon for pass sanity check

parent eb54c839
...@@ -247,8 +247,8 @@ OCL_PERF_TEST_P(IntegralFixture, Integral2, ::testing::Combine(OCL_TEST_SIZES, O ...@@ -247,8 +247,8 @@ OCL_PERF_TEST_P(IntegralFixture, Integral2, ::testing::Combine(OCL_TEST_SIZES, O
OCL_TEST_CYCLE() cv::integral(src, sum, sqsum, ddepth, CV_32F); OCL_TEST_CYCLE() cv::integral(src, sum, sqsum, ddepth, CV_32F);
SANITY_CHECK(sum, 2e-6, ERROR_RELATIVE); SANITY_CHECK(sum, 1e-6, ERROR_RELATIVE);
SANITY_CHECK(sqsum, 2e-5, ERROR_RELATIVE); SANITY_CHECK(sqsum, 5e-5, ERROR_RELATIVE);
} }
///////////// Threshold //////////////////////// ///////////// Threshold ////////////////////////
......
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