Enqueue command to read from a 2D or 3D rectangular region from a buffer object to host memory.
cl_int clEnqueueReadBufferRect(cl_command_queue command_queue,
cl_mem buffer,
cl_bool blocking_read,
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 read command will be queued.
command_queueandbuffermust be created with the same OpenCL context. buffer-
Refers to a valid buffer object.
blocking_read-
Indicates if the read operations are
blockingornon-blocking.If
blocking_readisCL_TRUEi.e. the read command is blocking,clEnqueueReadBufferRectdoes not return until the buffer data has been read and copied into memory pointed to byptr.If
blocking_readisCL_FALSEi.e. the read command is non-blocking,clEnqueueReadBufferRectqueues a non-blocking read command and returns. The contents of the buffer thatptrpoints to cannot be used until the read command has completed. Theeventargument argument returns an event object which can be used to query the execution status of the read command. When the read command has completed, the contents of the buffer thatptrpoints to can be used by the application. buffer_origin-
The (x, y, z) offset in the memory region associated with
buffer. 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 by
ptr. 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 read into.
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 read 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 clEnqueueReadBufferRect to read 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 read is created with CL_MEM_USE_HOST_PTR, must meet the same requirements given for clEnqueueReadBuffer:
-
All commands that use this buffer object or a memory object (buffer or image) created from this buffer object have finished execution before the read 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.
clEnqueueReadBufferRect 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 read 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_OPERATIONifclEnqueueReadBufferRectis called onbufferwhich has been created withCL_MEM_HOST_WRITE_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.