C Specification
To enqueue a command to execute a kernel on a device, call the function
// Provided by CL_VERSION_1_0
cl_int clEnqueueNDRangeKernel(
cl_command_queue command_queue,
cl_kernel kernel,
cl_uint work_dim,
const size_t* global_work_offset,
const size_t* global_work_size,
const size_t* local_work_size,
cl_uint num_events_in_wait_list,
const cl_event* event_wait_list,
cl_event* event);
Parameters
-
command_queue is a valid host command-queue. The kernel will be queued for execution on the device associated with command_queue.
-
kernel is a valid kernel object. The OpenCL context associated with kernel and command-queue must be the same.
-
work_dim is the number of dimensions used to specify the global work-items and work-items in the work-group. work_dim must be greater than zero and less than or equal to
CL_DEVICE_.MAX_ WORK_ ITEM_ DIMENSIONS -
global_work_offset can be used to specify an array of work_dim unsigned values that describe the offset used to calculate the global ID of a work-item. If global_work_offset is
NULL, the global IDs start at offset (0, 0, 0). global_work_offset must beNULLbefore version 1.1. -
global_work_size points to an array of work_dim unsigned values that describe the number of global work-items in work_dim dimensions that will execute the kernel function. The total number of global work-items is computed as global_work_size[0] × … × global_work_size[work_dim - 1]. If the device associated with command_queue is an OpenCL 2.1 or newer device, and global_work_size is
NULLor the value in any passed dimension is zero, then the kernel command will trivially succeed after its event dependencies are satisfied and subsequently update its completion event. The behavior in this situation is similar to that of an enqueued marker, except that unlike a marker, an enqueued kernel with no events passed to event_wait_list may run at any time. -
local_work_size points to an array of work_dim unsigned values that describe the number of work-items that make up a work-group (also referred to as the size of the work-group) that will execute the kernel specified by kernel. The total number of work-items in a work-group is computed as local_work_size[0] × … × local_work_size[work_dim - 1]. The total number of work-items in the work-group must be less than or equal to the
CL_KERNEL_value specified in the Kernel Object Device Queries table, and the number of work-items specified in local_work_size[0], …, local_work_size[work_dim - 1] must be less than or equal to the corresponding values specified byWORK_ GROUP_ SIZE CL_DEVICE_[0], …,MAX_ WORK_ ITEM_ SIZES CL_DEVICE_[work_dim - 1]. The explicitly specified local_work_size will be used to determine how to break the global work-items specified by global_work_size into appropriate work-group instances.MAX_ WORK_ ITEM_ SIZES -
event_wait_list and num_events_in_wait_list specify events that need to complete before this particular command can be executed. If event_wait_list is
NULL, then this particular command does not wait on any event to complete. If event_wait_list isNULL, num_events_in_wait_list must be 0. If event_wait_list is notNULL, the list of events pointed to by event_wait_list must be valid and num_events_in_wait_list must be greater than 0. The events specified in event_wait_list act as synchronization points. The context associated with events in event_wait_list and command_queue must be the same. The memory associated with event_wait_list can be reused or freed after the function returns. -
event returns an event object that identifies this command and can be used to query or wait for this command to complete. If event is
NULLor the enqueue is unsuccessful, no event will be created and therefore it will not be possible to query the status of this command or to wait for this command to complete. If event_wait_list and event are notNULL, event must not refer to an element of the event_wait_list array.
Description
An ND-range kernel command may require uniform work-groups or may support non-uniform work-groups. To support non-uniform work-groups:
-
The device associated with command_queue must support non-uniform work-groups.
-
The program object associated with kernel must support non-uniform work-groups. Specifically, this means:
-
If the program was created with clCreateProgramWithSource, the program must be compiled or built using the
-cl-std=CL2.0or-cl-std=CL3.0build option and without the-cl-uniform-work-group-sizebuild option. -
If the program was created with clCreateProgramWithIL or clCreateProgramWithBinary, the program must be compiled or built without the
-cl-uniform-work-group-sizebuild options. -
If the program was created using clLinkProgram, all input programs must support non-uniform work-groups.
-
If non-uniform work-groups are supported, any single dimension for which the global size is not divisible by the local size will be partitioned into two regions. One region will have work-groups that have the same number of work-items as was specified by the local size parameter in that dimension. The other region will have work-groups with less than the number of work items specified by the local size parameter in that dimension. The global IDs and group IDs of the work-items in the first region will be numerically lower than those in the second, and the second region will be at most one work-group wide in that dimension. Work-group sizes could be non-uniform in multiple dimensions, potentially producing work-groups of up to 4 different sizes in a 2D range and 8 different sizes in a 3D range.
If non-uniform work-groups are supported and local_work_size is NULL, the OpenCL runtime may choose a uniform or non-uniform work-group size.
Otherwise, when non-uniform work-groups are not supported, the size of each work-group must be uniform.
If local_work_size is specified, the values specified in global_work_size[0], …, global_work_size[work_dim - 1] must be evenly divisible by the corresponding values specified in local_work_size[0], …, local_work_size[work_dim - 1].
If local_work_size is NULL, the OpenCL runtime must choose a uniform work-group size.
The work-group size to be used for kernel can also be specified in the program source or intermediate language. In this case the size of work-group specified by local_work_size must match the value specified in the program source.
These work-group instances are executed in parallel across multiple compute units or concurrently on the same compute unit.
Each work-item is uniquely identified by a global identifier. The global ID, which can be read inside the kernel, is computed using the value given by global_work_size and global_work_offset. In addition, a work-item is also identified within a work-group by a unique local ID. The local ID, which can also be read by the kernel, is computed using the value given by local_work_size. The starting local ID is always (0, 0, …, 0).
clEnqueueNDRangeKernel returns CL_SUCCESS if the kernel-instance was
successfully queued.
Otherwise, it returns one of the following errors:
-
CL_INVALID_if there is no successfully built program executable available for the device associated with command_queue.PROGRAM_ EXECUTABLE -
CL_INVALID_if command_queue is not a valid host command-queue.COMMAND_ QUEUE -
CL_INVALID_if kernel is not a valid kernel object.KERNEL -
CL_INVALID_if context associated with command_queue and kernel are not the same or if the context associated with command_queue and events in event_wait_list are not the same.CONTEXT -
CL_INVALID_if the kernel argument values have not been specified.KERNEL_ ARGS -
CL_INVALID_if work_dim is not a valid value (i.e. a value between 1 andWORK_ DIMENSION CL_DEVICE_).MAX_ WORK_ ITEM_ DIMENSIONS -
CL_INVALID_if global_work_size is NULL or if any of the values specified in global_work_size[0], … global_work_size[work_dim - 1] are zero. This error condition does not apply when the device associated with command_queue supports OpenCL 2.1 or newer.GLOBAL_ WORK_ SIZE -
CL_INVALID_if any of the values specified in global_work_size[0], … global_work_size[work_dim - 1] exceed the maximum value representable byGLOBAL_ WORK_ SIZE size_ton the device on which the kernel-instance will be enqueued. -
CL_INVALID_if the value specified in global_work_size + the corresponding values in global_work_offset for any dimensions is greater than the maximum value representable by size t on the device on which the kernel-instance will be enqueued, or if global_work_offset is non-GLOBAL_ OFFSET NULLbefore version 1.1. -
CL_INVALID_if local_work_size is specified and does not match the required work-group size for kernel in the program source.WORK_ GROUP_ SIZE -
CL_INVALID_if local_work_size is specified and is not consistent with the required number of sub-groups for kernel in the program source.WORK_ GROUP_ SIZE -
CL_INVALID_if local_work_size is specified and the total number of work-items in the work-group computed as local_work_size[0] × … local_work_size[work_dim - 1] is greater than the value specified byWORK_ GROUP_ SIZE CL_KERNEL_in the Kernel Object Device Queries table.WORK_ GROUP_ SIZE -
CL_INVALID_if the work-group size must be uniform and the local_work_size is notWORK_ GROUP_ SIZE NULL, is not equal to the required work-group size specified in the kernel source, or the global_work_size is not evenly divisible by the local_work_size. -
CL_INVALID_if the number of work-items specified in any of local_work_size[0], … local_work_size[work_dim - 1] is greater than the corresponding values specified byWORK_ ITEM_ SIZE CL_DEVICE_[0], …,MAX_ WORK_ ITEM_ SIZES CL_DEVICE_[work_dim - 1].MAX_ WORK_ ITEM_ SIZES -
CL_MISALIGNED_if a sub-buffer object is specified as the value for an argument that is a buffer object and the offset specified when the sub-buffer object is created is not aligned toSUB_ BUFFER_ OFFSET CL_DEVICE_value for device associated with queue. This error code is missing before version 1.1.MEM_ BASE_ ADDR_ ALIGN -
CL_INVALID_if an image object is specified as an argument value and the image dimensions (image width, height, specified or compute row and/or slice pitch) are not supported by device associated with queue.IMAGE_ SIZE -
CL_IMAGE_if an image object is specified as an argument value and the image format (image channel order and data type) is not supported by device associated with queue.FORMAT_ NOT_ SUPPORTED -
CL_OUT_if there is a failure to queue the execution instance of kernel on the command-queue because of insufficient resources needed to execute the kernel. For example, the explicitly specified local_work_size causes a failure to execute the kernel because of insufficient resources such as registers or local memory. Another example would be the number of read-only image args used in kernel exceed theOF_ RESOURCES CL_DEVICE_value for device or the number of write-only and read-write image args used in kernel exceed theMAX_ READ_ IMAGE_ ARGS CL_DEVICE_value for device or the number of samplers used in kernel exceedMAX_ READ_ WRITE_ IMAGE_ ARGS CL_DEVICE_for device.MAX_ SAMPLERS -
CL_MEM_if there is a failure to allocate memory for data store associated with image or buffer objects specified as arguments to kernel.OBJECT_ ALLOCATION_ FAILURE -
CL_INVALID_if event_wait_list isEVENT_ WAIT_ LIST NULLand num_events_in_wait_list > 0, or event_wait_list is notNULLand num_events_in_wait_list is 0, or if event objects in event_wait_list are not valid events. -
CL_INVALID_if SVM pointers are passed as arguments to a kernel and the device does not support SVM, or if system pointers are passed as arguments to a kernel and the device does not support fine-grain system SVM.OPERATION -
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.