HomeSort by relevance Sort by last modified time
    Searched refs:maxWorkGroupSize (Results 1 - 16 of 16) sorted by null

  /external/opencv3/modules/ts/src/
ocl_test.cpp 162 DUMP_MESSAGE_STDOUT(" Max work group size = "<< device.maxWorkGroupSize());
163 DUMP_PROPERTY_XML("cv_ocl_current_maxWorkGroupSize", device.maxWorkGroupSize());
  /external/opencv3/modules/core/src/
copy.cpp 718 size_t maxWorkGroupSize = dev.maxWorkGroupSize();
719 CV_Assert(maxWorkGroupSize % 4 == 0);
722 localsize[2] = { maxWorkGroupSize / 4, 4 };
    [all...]
stat.cpp     [all...]
umatrix.cpp 867 size_t wgs = ocl::Device::getDefault().maxWorkGroupSize();
matrix.cpp     [all...]
dxt.cpp     [all...]
matmul.cpp 821 int max_wg_size = (int)dev.maxWorkGroupSize();
    [all...]
ocl.cpp     [all...]
  /external/opencv3/modules/imgproc/src/
featureselect.cpp 95 size_t wgs = ocl::Device::getDefault().maxWorkGroupSize();
hough.cpp 674 int workgroup_size = min((int) dev.maxWorkGroupSize(), (src.cols + pixPerWI - 1)/pixPerWI);
697 int workgroup_size = min((int) dev.maxWorkGroupSize(), total_points);
    [all...]
canny.cpp 104 int max_wg_size = (int)dev.maxWorkGroupSize();
    [all...]
deriv.cpp 687 size_t wgs = dev.maxWorkGroupSize();
    [all...]
histogram.cpp     [all...]
templmatch.cpp 83 size_t wgs = ocl::Device::getDefault().maxWorkGroupSize();
    [all...]
filter.cpp     [all...]
  /external/opencv3/modules/core/include/opencv2/core/
ocl.hpp 201 size_t maxWorkGroupSize() const;

Completed in 145 milliseconds