Merge pull request #5091 from jet47:gpu-sanity-epsilon
This commit is contained in:
commit
6f47c26acf
@ -330,7 +330,7 @@ PERF_TEST_P(Sz_Depth, Calib3D_ReprojectImageTo3D,
|
|||||||
|
|
||||||
TEST_CYCLE() cv::gpu::reprojectImageTo3D(d_src, dst, Q);
|
TEST_CYCLE() cv::gpu::reprojectImageTo3D(d_src, dst, Q);
|
||||||
|
|
||||||
GPU_SANITY_CHECK(dst);
|
GPU_SANITY_CHECK(dst, 1e-1, ERROR_RELATIVE);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -625,7 +625,7 @@ PERF_TEST_P(Sz_Depth, Core_Sqrt, Combine(
|
|||||||
|
|
||||||
TEST_CYCLE() cv::gpu::sqrt(d_src, dst);
|
TEST_CYCLE() cv::gpu::sqrt(d_src, dst);
|
||||||
|
|
||||||
GPU_SANITY_CHECK(dst);
|
GPU_SANITY_CHECK(dst, 1e-2);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -665,7 +665,7 @@ PERF_TEST_P(Sz_Depth, Core_Log, Combine(
|
|||||||
|
|
||||||
TEST_CYCLE() cv::gpu::log(d_src, dst);
|
TEST_CYCLE() cv::gpu::log(d_src, dst);
|
||||||
|
|
||||||
GPU_SANITY_CHECK(dst);
|
GPU_SANITY_CHECK(dst, 1e-1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -705,7 +705,7 @@ PERF_TEST_P(Sz_Depth, Core_Exp, Combine(
|
|||||||
|
|
||||||
TEST_CYCLE() cv::gpu::exp(d_src, dst);
|
TEST_CYCLE() cv::gpu::exp(d_src, dst);
|
||||||
|
|
||||||
GPU_SANITY_CHECK(dst);
|
GPU_SANITY_CHECK(dst, 1e-2);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user