Commit 9e834631 authored by Alexander Alekhin's avatar Alexander Alekhin

ocl: fix pyrUp perf test

parent e98c9a7c
...@@ -111,15 +111,15 @@ OCL_PERF_TEST_P(PyrUpFixture, PyrUp, ...@@ -111,15 +111,15 @@ OCL_PERF_TEST_P(PyrUpFixture, PyrUp,
{ {
ocl::oclMat oclSrc(src), oclDst(dstSize, type); ocl::oclMat oclSrc(src), oclDst(dstSize, type);
OCL_TEST_CYCLE() ocl::pyrDown(oclSrc, oclDst); OCL_TEST_CYCLE() ocl::pyrUp(oclSrc, oclDst);
oclDst.download(dst); oclDst.download(dst);
SANITY_CHECK(dst, 5e-4); SANITY_CHECK(dst, 1);
} }
else if (RUN_PLAIN_IMPL) else if (RUN_PLAIN_IMPL)
{ {
TEST_CYCLE() pyrDown(src, dst); TEST_CYCLE() pyrUp(src, dst);
SANITY_CHECK(dst); SANITY_CHECK(dst);
} }
......
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