diff --git a/modules/core/perf/opencl/perf_arithm.cpp b/modules/core/perf/opencl/perf_arithm.cpp index cb14aa92b1..42f5244b7f 100644 --- a/modules/core/perf/opencl/perf_arithm.cpp +++ b/modules/core/perf/opencl/perf_arithm.cpp @@ -357,7 +357,8 @@ typedef TestBaseWithParam FlipFixture; OCL_PERF_TEST_P(FlipFixture, Flip, ::testing::Combine(OCL_TEST_SIZES, - OCL_TEST_TYPES, FlipType::all())) + ::testing::Values(CV_8UC1, CV_8UC3, CV_8UC4, CV_16UC1, CV_32FC1, CV_32FC4), + FlipType::all())) { const FlipParams params = GetParam(); const Size srcSize = get<0>(params); @@ -387,7 +388,9 @@ typedef tuple RotateParams; typedef TestBaseWithParam RotateFixture; OCL_PERF_TEST_P(RotateFixture, rotate, - ::testing::Combine(OCL_TEST_SIZES, OCL_TEST_TYPES, RotateType::all())) + ::testing::Combine(OCL_TEST_SIZES, + ::testing::Values(CV_8UC1, CV_8UC2, CV_8UC4, CV_32FC1, CV_32FC4), + RotateType::all())) { const RotateParams params = GetParam(); const Size srcSize = get<0>(params);