| 198 | /// \see_opencl_ref{clGetKernelWorkGroupInfo} |
| 199 | template<class T> |
| 200 | T get_work_group_info(const device &device, cl_kernel_work_group_info info) const |
| 201 | { |
| 202 | return detail::get_object_info<T>(clGetKernelWorkGroupInfo, m_kernel, info, device.id()); |
| 203 | } |
| 204 | |
| 205 | /// Sets the argument at \p index to \p value with \p size. |
| 206 | /// |