Commit ad183481 authored by Alexander Alekhin's avatar Alexander Alekhin

perf: skip stitching OpenCL test on Win32 platform

parent 12ed7ca6
...@@ -104,6 +104,11 @@ OCL_PERF_TEST_P(stitch, boat, TEST_DETECTORS) ...@@ -104,6 +104,11 @@ OCL_PERF_TEST_P(stitch, boat, TEST_DETECTORS)
Size expected_dst_size(10789, 2663); Size expected_dst_size(10789, 2663);
checkDeviceMaxMemoryAllocSize(expected_dst_size, CV_16SC3, 4); checkDeviceMaxMemoryAllocSize(expected_dst_size, CV_16SC3, 4);
#if defined(_WIN32) && !defined(_WIN64)
if (cv::ocl::useOpenCL())
throw ::perf::TestBase::PerfSkipTestException();
#endif
UMat pano; UMat pano;
vector<Mat> _imgs; vector<Mat> _imgs;
......
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