diff --git a/modules/gpu/perf_cpu/perf_arithm.cpp b/modules/gpu/perf_cpu/perf_arithm.cpp index da2754a1f80bab0f8e095dd535db2de92be5c0e4..80f1cae36849fde7b2a4930d86aee120d31f94dc 100644 --- a/modules/gpu/perf_cpu/perf_arithm.cpp +++ b/modules/gpu/perf_cpu/perf_arithm.cpp @@ -596,6 +596,6 @@ GPU_PERF_TEST(GEMM, cv::gpu::DeviceInfo, cv::Size) INSTANTIATE_TEST_CASE_P(Arithm, GEMM, testing::Combine( ALL_DEVICES, - testing::Values(cv::Size(512, 512), cv::Size(1024, 1024), cv::Size(2048, 2048)))); + testing::Values(cv::Size(512, 512), cv::Size(1024, 1024)))); #endif diff --git a/modules/gpu/perf_cpu/perf_features2d.cpp b/modules/gpu/perf_cpu/perf_features2d.cpp index c255fb122158353631a52d8b04546d3ba8764288..20f544ada4067fcd3b6fdde8adbc24585a3e9cda 100644 --- a/modules/gpu/perf_cpu/perf_features2d.cpp +++ b/modules/gpu/perf_cpu/perf_features2d.cpp @@ -100,7 +100,7 @@ GPU_PERF_TEST_1(SURF, cv::gpu::DeviceInfo) cv::SURF surf; - declare.time(10.0); + declare.time(30.0); TEST_CYCLE() { diff --git a/modules/gpu/perf_cpu/perf_filters.cpp b/modules/gpu/perf_cpu/perf_filters.cpp index ebd9dba7657407df97800b19d677900b9c1ea11a..08c441a045255551e0553d3f5c1088730aa48f28 100644 --- a/modules/gpu/perf_cpu/perf_filters.cpp +++ b/modules/gpu/perf_cpu/perf_filters.cpp @@ -79,7 +79,7 @@ GPU_PERF_TEST(LinearFilter, cv::gpu::DeviceInfo, cv::Size, perf::MatType, int) cv::Ptr filter = cv::createLinearFilter(type, type, cv::Mat::ones(ksize, ksize, CV_8U)); - declare.time(1.0); + declare.time(10.0); TEST_CYCLE() { @@ -111,7 +111,7 @@ GPU_PERF_TEST(SeparableLinearFilter, cv::gpu::DeviceInfo, cv::Size, perf::MatTyp cv::Mat kernel = cv::getGaussianKernel(ksize, 0.5, CV_32F); cv::Ptr filter = cv::createSeparableLinearFilter(type, type, kernel, kernel); - declare.time(1.0); + declare.time(10.0); TEST_CYCLE() { diff --git a/modules/gpu/perf_cpu/perf_imgproc.cpp b/modules/gpu/perf_cpu/perf_imgproc.cpp index b722740af032b5d5e3ed08390ac9bbde4bbb93a9..2c7169962cb5ad58c6b16ef9bda92f8699e733dc 100644 --- a/modules/gpu/perf_cpu/perf_imgproc.cpp +++ b/modules/gpu/perf_cpu/perf_imgproc.cpp @@ -45,7 +45,7 @@ GPU_PERF_TEST_1(MeanShiftFiltering, cv::gpu::DeviceInfo) cv::Mat dst; - declare.time(15.0); + declare.time(100.0); TEST_CYCLE() { @@ -133,7 +133,7 @@ GPU_PERF_TEST(Threshold, cv::gpu::DeviceInfo, cv::Size, perf::MatType) INSTANTIATE_TEST_CASE_P(ImgProc, Threshold, testing::Combine( ALL_DEVICES, GPU_TYPICAL_MAT_SIZES, - testing::Values(CV_8UC1, CV_16UC1, CV_32FC1))); + testing::Values(CV_8UC1, CV_32FC1))); ////////////////////////////////////////////////////////////////////// // Resize