Commit d13ecd0d authored by Vladislav Vinogradov's avatar Vladislav Vinogradov

increase epsilon for GEMM & Convolve sanity tests for CUDA 5.5

parent add2ea75
...@@ -1337,7 +1337,7 @@ PERF_TEST_P(Sz_Type_Flags, Core_GEMM, ...@@ -1337,7 +1337,7 @@ PERF_TEST_P(Sz_Type_Flags, Core_GEMM,
TEST_CYCLE() cv::gpu::gemm(d_src1, d_src2, 1.0, d_src3, 1.0, dst, flags); TEST_CYCLE() cv::gpu::gemm(d_src1, d_src2, 1.0, d_src3, 1.0, dst, flags);
GPU_SANITY_CHECK(dst, 1e-6); GPU_SANITY_CHECK(dst, 1e-6, ERROR_RELATIVE);
} }
else else
{ {
......
...@@ -884,7 +884,7 @@ PERF_TEST_P(Sz_KernelSz_Ccorr, ImgProc_Convolve, ...@@ -884,7 +884,7 @@ PERF_TEST_P(Sz_KernelSz_Ccorr, ImgProc_Convolve,
TEST_CYCLE() cv::gpu::convolve(d_image, d_templ, dst, ccorr, d_buf); TEST_CYCLE() cv::gpu::convolve(d_image, d_templ, dst, ccorr, d_buf);
GPU_SANITY_CHECK(dst); GPU_SANITY_CHECK(dst, 1e-6, ERROR_RELATIVE);
} }
else else
{ {
......
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