C Specification
To create a host command-queue on a specific device, call the function
// Provided by CL_VERSION_1_0
cl_command_queue clCreateCommandQueue(
cl_context context,
cl_device_id device,
cl_command_queue_properties properties,
cl_int* errcode_ret);
| clCreateCommandQueue is deprecated by version 2.0. |
Parameters
-
context must be a valid OpenCL context.
-
device must be a device or sub-device associated with context. It can either be in the list of devices and sub-devices specified when context is created using clCreateContext or be a root device with the same device type as specified when context is created using clCreateContextFromType.
-
properties specifies a list of properties for the command-queue. This is a bit-field and the supported properties are described in the table below. Only command-queue properties specified in this table can be used, otherwise the value specified in properties is considered to be not valid. properties can be 0 in which case the default values for supported command-queue properties will be used.
Description
| Command-Queue Properties | Description |
|---|---|
|
Determines whether the commands queued in the command-queue are executed in-order or out-of-order. If set, the commands in the command-queue are executed out-of-order. Otherwise, commands are executed in-order. |
|
Enable or disable profiling of commands in the command-queue. If set, the profiling of commands is enabled. Otherwise profiling of commands is disabled. |
-
errcode_ret will return an appropriate error code. If errcode_ret is
NULL, no error code is returned.
clCreateCommandQueue returns a valid non-zero command-queue and errcode_ret
is set to CL_SUCCESS if the command-queue is created successfully.
Otherwise, it returns a NULL value with one of the following error values
returned in errcode_ret:
-
CL_INVALID_if context is not a valid context.CONTEXT -
CL_INVALID_if device is not a valid device or is not associated with context.DEVICE -
CL_INVALID_if values specified in properties are not valid.VALUE -
CL_INVALID_if values specified in properties are valid but are not supported by the device.QUEUE_ PROPERTIES -
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.