From bb07e2710ef37959ae22c2436f440b8c1fdc09c4 Mon Sep 17 00:00:00 2001 From: Vladislav Vinogradov Date: Sat, 29 Dec 2012 14:55:29 +0400 Subject: [PATCH] decreased source size in NCV.VectorOperations test --- modules/gpu/test/nvidia/main_nvidia.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gpu/test/nvidia/main_nvidia.cpp b/modules/gpu/test/nvidia/main_nvidia.cpp index 43c92ce1ee..2602432c38 100644 --- a/modules/gpu/test/nvidia/main_nvidia.cpp +++ b/modules/gpu/test/nvidia/main_nvidia.cpp @@ -375,9 +375,9 @@ bool nvidia_NCV_Vector_Operations(const std::string& test_data_path, OutputLevel NCVAutoTestLister testListerVectorOperations("Vector Operations", outputLevel); - NCVTestSourceProvider testSrcRandom_32u(2010, 0, 0xFFFFFFFF, 4096, 4096); + NCVTestSourceProvider testSrcRandom_32u(2010, 0, 0xFFFFFFFF, 2048, 2048); - generateVectorTests(testListerVectorOperations, testSrcRandom_32u, 4096*4096); + generateVectorTests(testListerVectorOperations, testSrcRandom_32u, 2048*2048); return testListerVectorOperations.invoke();