Commit 942ff5be authored by vbystricky's avatar vbystricky

Disable OpenCL version of minMaxIdx with mask on AMD devices

parent aab6f6c5
......@@ -1446,6 +1446,9 @@ static bool ocl_minMaxIdx( InputArray _src, double* minVal, double* maxVal, int*
int type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type),
kercn = haveMask ? cn : std::min(4, ocl::predictOptimalVectorWidth(_src, _src2));
if (haveMask && dev.isAMD())
return false;
CV_Assert( (cn == 1 && (!haveMask || _mask.type() == CV_8U)) ||
(cn >= 1 && !minLoc && !maxLoc) );
......
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