Searched refs:buf_cols (Results 1 – 1 of 1) sorted by relevance
/external/opencv3/modules/core/src/ |
D | matrix.cpp | 3529 const int min_opt_cols = 128, buf_cols = 32; in ocl_reduce() local 3536 bool useOptimized = 1 == dim && _src.cols() > min_opt_cols && (wgs >= buf_cols); in ocl_reduce() 3552 size_t tileHeight = (size_t)(wgs / buf_cols); in ocl_reduce() 3556 …tileHeight = min(tileHeight, defDev.localMemSize() / buf_cols / CV_ELEM_SIZE(CV_MAKETYPE(wdepth, c… in ocl_reduce() 3563 buf_cols, tileHeight, ops[op], cn, ddepth, in ocl_reduce() 3586 size_t localSize[2] = { buf_cols, tileHeight}; in ocl_reduce() 3587 size_t globalSize[2] = { buf_cols, src.rows }; in ocl_reduce()
|