I read that when not specifying the size of the workgroup when placing the kernel, OpenCL selects one for me.
eg:
//don't know which workgroup size OpenCl will use! clEnqueueNDRangeKernel(queue, kernel, 1, NULL, &global_size, NULL, 0, NULL, NULL);
Is there a way to get the size of an OpenCL workgroup? Is the OpenCL workgroup size the one that clGetKernelWorkGroupInfo returns?
Thank you in advance!
Simbi
source share