| 5794 | |
| 5795 | template <typename T> |
| 5796 | cl_int getWorkGroupInfo( |
| 5797 | const Device& device, cl_kernel_work_group_info name, T* param) const |
| 5798 | { |
| 5799 | return detail::errHandler( |
| 5800 | detail::getInfo( |
| 5801 | &::clGetKernelWorkGroupInfo, object_, device(), name, param), |
| 5802 | __GET_KERNEL_WORK_GROUP_INFO_ERR); |
| 5803 | } |
| 5804 | |
| 5805 | template <cl_kernel_work_group_info name> typename |
| 5806 | detail::param_traits<detail::cl_kernel_work_group_info, name>::param_type |
no test coverage detected