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_queueandbuffermust be created with the same OpenCL context. buffer-
Refers to a valid buffer object.
blocking_write-
Indicates if the write operations are
blockingornonblocking.If
blocking_writeisCL_TRUE, the OpenCL implementation copies the data referred to byptrand enqueues the write operation in the command-queue. The memory pointed to byptrcan be reused by the application after theclEnqueueWriteBuffercall returns.If
blocking_writeisCL_FALSE, the OpenCL implementation will useptrto perform a nonblocking write. As the write is non-blocking the implementation can return immediately. The memory pointed to byptrcannot be reused by the application after the call returns. Theeventargument 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 byptrcan 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_listnum_events_in_wait_list-
event_wait_listandnum_events_in_wait_listspecify events that need to complete before this particular command can be executed. Ifevent_wait_listis NULL, then this particular command does not wait on any event to complete. Ifevent_wait_listis NULL,num_events_in_wait_listmust be 0. Ifevent_wait_listis not NULL, the list of events pointed to byevent_wait_listmust be valid andnum_events_in_wait_listmust be greater than 0. The events specified inevent_wait_listact as synchronization points. The context associated with events inevent_wait_listandcommand_queuemust be the same. The memory associated withevent_wait_listcan 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.
eventcan 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_listand theeventarguments are not NULL, theeventargument should not refer to an element of theevent_wait_listarray
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_QUEUEifcommand_queueis not a valid command-queue. -
CL_INVALID_CONTEXTif the context associated withcommand_queueandbufferare not the same or if the context associated withcommand_queueand events inevent_wait_listare not the same. -
CL_INVALID_MEM_OBJECTifbufferis not a valid buffer object. -
CL_INVALID_VALUEif the region being written specified by (offset,size) is out of bounds or ifptris a NULL value. -
CL_INVALID_EVENT_WAIT_LISTifevent_wait_listis NULL andnum_events_in_wait_list> 0, orevent_wait_listis not NULL andnum_events_in_wait_listis 0, or if event objects inevent_wait_listare not valid events. -
CL_MISALIGNED_SUB_BUFFER_OFFSETifbufferis a sub-buffer object andoffsetspecified when the sub-buffer object is created is not aligned toCL_DEVICE_MEM_BASE_ADDR_ALIGNvalue for device associated withqueue. -
CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LISTif the read and write operations are blocking and the execution status of any of the events inevent_wait_listis a negative integer value. -
CL_MEM_OBJECT_ALLOCATION_FAILUREif there is a failure to allocate memory for data store associated withbuffer. -
CL_INVALID_OPERATIONifclEnqueueWriteBufferis called onbufferwhich has been created withCL_MEM_HOST_READ_ONLYorCL_MEM_HOST_NO_ACCESS. -
CL_OUT_OF_RESOURCESif there is a failure to allocate resources required by the OpenCL implementation on the device. -
CL_OUT_OF_HOST_MEMORYif there is a failure to allocate resources required by the OpenCL implementation on the host.