C Specification
To return profiling information for a command associated with an event when profiling is enabled, call the function
// Provided by CL_VERSION_1_0
cl_int clGetEventProfilingInfo(
    cl_event event,
    cl_profiling_info param_name,
    size_t param_value_size,
    void* param_value,
    size_t* param_value_size_ret);
Parameters
- 
event specifies the event object.
 - 
param_name specifies the profiling data to query. The list of supported param_name types and the information returned in param_value by clGetEventProfilingInfo is described in the Event Profiling Queries table.
 - 
param_value is a pointer to memory where the appropriate result being queried is returned. If param_value is
NULL, it is ignored. - 
param_value_size specifies the size in bytes of memory pointed to by param_value. This size must be greater than or equal to the size of the return type specified in the Event Profiling Queries table. If param_value is
NULL, it is ignored. - 
param_value_size_ret returns the actual size in bytes of data being queried by param_name. If param_value_size_ret is
NULL, it is ignored. 
Description
| Event Profiling Info | Return Type | Description | 
|---|---|---|
  | 
  | 
A 64-bit value that describes the current device time counter in nanoseconds when the command identified by event is enqueued in a command-queue by the host.     If the   | 
  | 
  | 
A 64-bit value that describes the current device time counter in nanoseconds when the command identified by event that has been enqueued is submitted by the host to the device associated with the command-queue.     If the   | 
  | 
  | 
A 64-bit value that describes the current device time counter in nanoseconds when the command identified by event starts execution on the device.     If the   | 
  | 
  | 
A 64-bit value that describes the current device time counter in nanoseconds when the command identified by event has finished execution on the device.     If the   | 
 missing before version 2.0.  | 
  | 
A 64-bit value that describes the current device time counter in nanoseconds when the command identified by event and any child commands enqueued by this command on the device have finished execution.     If the   | 
The unsigned 64-bit values returned can be used to measure the time in nano-seconds consumed by OpenCL commands.
OpenCL devices are required to correctly track time across changes in device
frequency and power states.
The CL_DEVICE_ specifies the resolution of the
timer i.e. the number of nanoseconds elapsed before the timer is
incremented.
| 
 If the   | 
clGetEventProfilingInfo returns CL_SUCCESS if the function is executed
successfully and the profiling information has been recorded.
Otherwise, it returns one of the following errors:
- 
CL_INVALID_if event is a not a valid event object.EVENT  - 
CL_PROFILING_if theINFO_ NOT_ AVAILABLE CL_QUEUE_flag is not set for the command-queue, if the execution status of the command identified by event is notPROFILING_ ENABLE CL_COMPLETEor if event is a user event object. Prior to OpenCL 3.0, implementations may returnCL_PROFILING_for an event created by clEnqueueSVMFree.INFO_ NOT_ AVAILABLE 
If thecl_khr_extension is supported, and if event was created from a call to clEnqueueCommandBufferKHR,command_ buffer_ multi_ device CL_PROFILING_is returned if all the queues passed do not haveINFO_ NOT_ AVAILABLE CL_QUEUE_set.PROFILING_ ENABLE  - 
CL_INVALID_if param_name is not one of the supported values, or if the size in bytes specified by param_value_size is less than size of the return type specified in the Event Profiling Queries table and param_value is not aVALUE NULLvalue. - 
CL_OUT_if there is a failure to allocate resources required by the OpenCL implementation on the device.OF_ RESOURCES  - 
CL_OUT_if there is a failure to allocate resources required by the OpenCL implementation on the host.OF_ HOST_ MEMORY  
Document Notes
For more information, see the OpenCL Specification
This page is extracted from the OpenCL Specification. Fixes and changes should be made to the Specification, not directly.