Enqueue commands to write to a buffer object from host memory.
cl_int clEnqueueWriteBuffer(cl_command_queue command_queue,
cl_mem buffer,
cl_bool blocking_write,
size_t offset,
size_t size,
const void *ptr,
cl_uint num_events_in_wait_list,
const cl_event *event_wait_list,
cl_event *event)
command_queue
-
Is a valid host command-queue in which the write command will be queued.
command_queue
andbuffer
must be created with the same OpenCL context. buffer
-
Refers to a valid buffer object.
blocking_write
-
Indicates if the write operations are
blocking
ornonblocking
.If
blocking_write
isCL_TRUE
, the OpenCL implementation copies the data referred to byptr
and enqueues the write operation in the command-queue. The memory pointed to byptr
can be reused by the application after theclEnqueueWriteBuffer
call returns.If
blocking_write
isCL_FALSE
, the OpenCL implementation will useptr
to perform a nonblocking write. As the write is non-blocking the implementation can return immediately. The memory pointed to byptr
cannot be reused by the application after the call returns. Theevent
argument returns an event object which can be used to query the execution status of the write command. When the write command has completed, the memory pointed to byptr
can then be reused by the application. offset
-
The offset in bytes in the buffer object to write to.
size
-
The size in bytes of data being written.
ptr
-
The pointer to buffer in host memory where data is to be written from.
event_wait_list
num_events_in_wait_list
-
event_wait_list
andnum_events_in_wait_list
specify events that need to complete before this particular command can be executed. Ifevent_wait_list
is NULL, then this particular command does not wait on any event to complete. Ifevent_wait_list
is NULL,num_events_in_wait_list
must be 0. Ifevent_wait_list
is not NULL, the list of events pointed to byevent_wait_list
must be valid andnum_events_in_wait_list
must be greater than 0. The events specified inevent_wait_list
act as synchronization points. The context associated with events inevent_wait_list
andcommand_queue
must be the same. The memory associated withevent_wait_list
can be reused or freed after the function returns. event
-
Returns an event object that identifies this particular write command and can be used to query or queue a wait for this particular command to complete.
event
can be NULL in which case it will not be possible for the application to query the status of this command or queue a wait for this command to complete. If theevent_wait_list
and theevent
arguments are not NULL, theevent
argument should not refer to an element of theevent_wait_list
array
Calling clEnqueueWriteBuffer
to update the latest bits in a region of the buffer object with the ptr
argument value set to host_ptr
+ offset
, where host_ptr
is a pointer to the memory region specified when the buffer object being written is created with CL_MEM_USE_HOST_PTR
, must meet the following requirements in order to avoid undefined behavior:
-
The host memory region given by
(host_ptr + offset, cb)
contains the latest bits when the enqueued write command begins execution. -
The buffer object or memory objects created from this buffer object are not mapped.
-
The buffer object or memory objects created from this buffer object are not used by any command-queue until the read command has finished execution.
clEnqueueWriteBuffer
returns CL_SUCCESS
if the function is executed successfully.
Otherwise, it returns one of the following errors:
-
CL_INVALID_COMMAND_QUEUE
ifcommand_queue
is not a valid command-queue. -
CL_INVALID_CONTEXT
if the context associated withcommand_queue
andbuffer
are not the same or if the context associated withcommand_queue
and events inevent_wait_list
are not the same. -
CL_INVALID_MEM_OBJECT
ifbuffer
is not a valid buffer object. -
CL_INVALID_VALUE
if the region being written specified by (offset
,size
) is out of bounds or ifptr
is a NULL value. -
CL_INVALID_EVENT_WAIT_LIST
ifevent_wait_list
is NULL andnum_events_in_wait_list
> 0, orevent_wait_list
is not NULL andnum_events_in_wait_list
is 0, or if event objects inevent_wait_list
are not valid events. -
CL_MISALIGNED_SUB_BUFFER_OFFSET
ifbuffer
is a sub-buffer object andoffset
specified when the sub-buffer object is created is not aligned toCL_DEVICE_MEM_BASE_ADDR_ALIGN
value for device associated withqueue
. -
CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LIST
if the read and write operations are blocking and the execution status of any of the events inevent_wait_list
is a negative integer value. -
CL_MEM_OBJECT_ALLOCATION_FAILURE
if there is a failure to allocate memory for data store associated withbuffer
. -
CL_INVALID_OPERATION
ifclEnqueueWriteBuffer
is called onbuffer
which has been created withCL_MEM_HOST_READ_ONLY
orCL_MEM_HOST_NO_ACCESS
. -
CL_OUT_OF_RESOURCES
if there is a failure to allocate resources required by the OpenCL implementation on the device. -
CL_OUT_OF_HOST_MEMORY
if there is a failure to allocate resources required by the OpenCL implementation on the host.