Enqueue command to write a 2D or 3D rectangular region to a buffer object from host memory.
cl_int clEnqueueWriteBufferRect(cl_command_queue command_queue,
cl_mem buffer,
cl_bool blocking_write,
const size_t * buffer_origin,
const size_t * host_origin,
const size_t *region,
size_t buffer_row_pitch,
size_t buffer_slice_pitch,
size_t host_row_pitch,
size_t host_slice_pitch,
void *ptr,
cl_uint num_events_in_wait_list,
const cl_event *event_wait_list,
cl_event *event)command_queue-
Is 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
blockingornon-blocking. Ifblocking_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 theclEnqueueWriteBufferRectcall 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. buffer_origin-
The (
x, y, z) offset in the memory region associated withbuffer. For a 2D rectangle region, thezvalue given bybuffer_origin[2] should be 0. The offset in bytes is computed asbuffer_origin[2] *buffer_slice_pitch+buffer_origin[1] *buffer_row_pitch+buffer_origin[0]. host_origin-
The (
x, y, z) offset in the memory region pointed to byptr. For a 2D rectangle region, thezvalue given byhost_origin[2] should be 0. The offset in bytes is computed ashost_origin[2] *host_slice_pitch+host_origin[1] *host_row_pitch+host_origin[0]. region-
The (
widthin bytes,heightin rows,depthin slices) of the 2D or 3D rectangle being read or written. For a 2D rectangle copy, thedepthvalue given byregion[2] should be 1. The values in region cannot be 0. buffer_row_pitch-
The length of each row in bytes to be used for the memory region associated with
buffer. Ifbuffer_row_pitchis 0,buffer_row_pitchis computed asregion[0]. buffer_slice_pitch-
The length of each 2D slice in bytes to be used for the memory region associated with
buffer. Ifbuffer_slice_pitchis 0,buffer_slice_pitchis computed asregion[1] *buffer_row_pitch. host_row_pitch-
The length of each row in bytes to be used for the memory region pointed to by
ptr. Ifhost_row_pitchis 0,host_row_pitchis computed asregion[0]. host_slice_pitch-
The length of each 2D slice in bytes to be used for the memory region pointed to by
ptr. Ifhost_slice_pitchis 0,host_slice_pitchis computed asregion[1] *host_row_pitch. 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 clEnqueueWriteBufferRect to update the latest bits in a region of the buffer object with the ptr argument value set to host_ptr and host_origin, buffer_origin values are the same, 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 (
buffer_origin region) 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 write command has finished execution.
clEnqueueWriteBufferRect 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 host 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 (buffer_origin,region,buffer_row_pitch,buffer_slice_pitch) is out of bounds. -
CL_INVALID_VALUEifptris a NULL value. -
CL_INVALID_VALUEif anyregionarray element is 0. -
CL_INVALID_VALUEifbuffer_row_pitchis not 0 and is less thanregion[0]. -
CL_INVALID_VALUEifhost_row_pitchis not 0 and is less thanregion[0]. -
CL_INVALID_VALUEifbuffer_slice_pitchis not 0 and is less thanregion[1] *buffer_row_pitchand not a multiple ofbuffer_row_pitch. -
CL_INVALID_VALUEifhost_slice_pitchis not 0 and is less thanregion[1] *host_row_pitchand not a multiple ofhost_row_pitch. -
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_OPERATIONifclEnqueueWriteBufferRectis 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.