| 4948 | |
| 4949 | template <typename T> |
| 4950 | cl_int getWorkGroupInfo( |
| 4951 | const Device& device, cl_kernel_work_group_info name, T* param) const |
| 4952 | { |
| 4953 | return detail::errHandler( |
| 4954 | detail::getInfo( |
| 4955 | &::clGetKernelWorkGroupInfo, object_, device(), name, param), |
| 4956 | __GET_KERNEL_WORK_GROUP_INFO_ERR); |
| 4957 | } |
| 4958 | |
| 4959 | template <cl_int name> typename |
| 4960 | detail::param_traits<detail::cl_kernel_work_group_info, name>::param_type |
nothing calls this directly
no test coverage detected