| 3493 | //! \brief Wrapper for clGetEventProfilingInfo(). |
| 3494 | template <typename T> |
| 3495 | cl_int getProfilingInfo(cl_profiling_info name, T* param) const |
| 3496 | { |
| 3497 | return detail::errHandler(detail::getInfo( |
| 3498 | &::clGetEventProfilingInfo, object_, name, param), |
| 3499 | __GET_EVENT_PROFILE_INFO_ERR); |
| 3500 | } |
| 3501 | |
| 3502 | //! \brief Wrapper for clGetEventProfilingInfo() that returns by value. |
| 3503 | template <cl_profiling_info name> typename |