C Specification
The following functions enqueue commands to read a 2D or 3D rectangular region from a buffer object to host memory or write a 2D or 3D rectangular region to a buffer object from host memory.
// Provided by CL_VERSION_1_1
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);
| clEnqueueReadBufferRect is missing before version 1.1. |
// Provided by CL_VERSION_1_1
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,
const void* ptr,
cl_uint num_events_in_wait_list,
const cl_event* event_wait_list,
cl_event* event);
| clEnqueueWriteBufferRect is missing before version 1.1. |
Parameters
-
command_queue refers is a valid host command-queue in which the read / write command will be queued. command_queue and buffer must be created with the same OpenCL context.
-
buffer refers to a valid buffer object.
-
blocking_read and blocking_write indicate if the read and write operations are blocking or non-blocking (see below).
-
buffer_origin defines the (x, y, z) offset in the memory region associated with buffer. For a 2D rectangle region, the z value given by buffer_origin[2] should be 0. The offset in bytes is computed as buffer_origin[2] × buffer_slice_pitch + buffer_origin[1] × buffer_row_pitch + buffer_origin[0].
-
host_origin defines the (x, y, z) offset in the memory region pointed to by ptr. For a 2D rectangle region, the z value given by host_origin[2] should be 0. The offset in bytes is computed as host_origin[2] × host_slice_pitch + host_origin[1] × host_row_pitch + host_origin[0].
-
region defines the (width in bytes, height in rows, depth in slices) of the 2D or 3D rectangle being read or written. For a 2D rectangle copy, the depth value given by region[2] should be 1. The values in region cannot be 0.
-
buffer_row_pitch is the length of each row in bytes to be used for the memory region associated with buffer. If buffer_row_pitch is 0, buffer_row_pitch is computed as region[0].
-
buffer_slice_pitch is the length of each 2D slice in bytes to be used for the memory region associated with buffer. If buffer_slice_pitch is 0, buffer_slice_pitch is computed as region[1] × buffer_row_pitch.
-
host_row_pitch is the length of each row in bytes to be used for the memory region pointed to by ptr. If host_row_pitch is 0, host_row_pitch is computed as region[0].
-
host_slice_pitch is the length of each 2D slice in bytes to be used for the memory region pointed to by ptr. If host_slice_pitch is 0, host_slice_pitch is computed as region[1] × host_row_pitch.
-
ptr is the pointer to buffer in host memory where data is to be read into or to be written from.
-
event_wait_list and num_events_in_wait_list specify events that need to complete before this particular command can be executed. If event_wait_list is
NULL, then this particular command does not wait on any event to complete. If event_wait_list isNULL, num_events_in_wait_list must be 0. If event_wait_list is notNULL, the list of events pointed to by event_wait_list must be valid and num_events_in_wait_list must be greater than 0. The events specified in event_wait_list act as synchronization points. The context associated with events in event_wait_list and command_queue must be the same. The memory associated with event_wait_list can be reused or freed after the function returns. -
event returns an event object that identifies this read / write command and can be used to query or queue a wait for this command to complete. If event is
NULLor the enqueue is unsuccessful, no event will be created and therefore it will not be possible to query the status of this command or to wait for this command to complete. If event_wait_list and event are notNULL, event must not refer to an element of the event_wait_list array.
Description
If blocking_read is CL_TRUE i.e. the read command is blocking,
clEnqueueReadBufferRect does not return until the buffer data has been
read and copied into memory pointed to by ptr.
If blocking_read is CL_FALSE i.e. the read command is non-blocking,
clEnqueueReadBufferRect queues a non-blocking read command and returns.
The contents of the buffer that ptr points to cannot be used until the
read command has completed.
The event 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 that ptr
points to can be used by the application.
If blocking_write is CL_TRUE, the write command is blocking and does not
return until the command is complete, including transfer of the data.
The memory pointed to by ptr can be reused by the application after the
clEnqueueWriteBufferRect call returns.
If blocking_write is CL_FALSE, the OpenCL implementation will use ptr to
perform a non-blocking write.
As the write is non-blocking the implementation can return immediately.
The memory pointed to by ptr cannot be reused by the application after the
call returns.
The event 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 by ptr can
then be reused by the application.
clEnqueueReadBufferRect and clEnqueueWriteBufferRect return CL_SUCCESS
if the function is executed successfully.
Otherwise, they return one of the following errors:
-
CL_INVALID_if command_queue is not a valid host command-queue.COMMAND_ QUEUE -
CL_INVALID_if the context associated with command_queue and buffer are not the same or if the context associated with command_queue and events in event_wait_list are not the same.CONTEXT -
CL_INVALID_if buffer is not a valid buffer object.MEM_ OBJECT -
CL_INVALID_if buffer_origin, host_origin, or region isVALUE NULL. -
CL_INVALID_if the region being read or written specified by (buffer_origin, region, buffer_row_pitch, buffer_slice_pitch) is out of bounds.VALUE -
CL_INVALID_if any region array element is 0.VALUE -
CL_INVALID_if buffer_row_pitch is not 0 and is less than region[0].VALUE -
CL_INVALID_if host_row_pitch is not 0 and is less than region[0].VALUE -
CL_INVALID_if buffer_slice_pitch is not 0 and is less than region[1] × buffer_row_pitch and not a multiple of buffer_row_pitch.VALUE -
CL_INVALID_if host_slice_pitch is not 0 and is less than region[1] × host_row_pitch and not a multiple of host_row_pitch.VALUE -
CL_INVALID_if ptr isVALUE NULL. -
CL_INVALID_if event_wait_list isEVENT_ WAIT_ LIST NULLand num_events_in_wait_list > 0, or event_wait_list is notNULLand num_events_in_wait_list is 0, or if event objects in event_wait_list are not valid events. -
CL_MISALIGNED_if buffer is a sub-buffer object and offset specified when the sub-buffer object is created is not aligned toSUB_ BUFFER_ OFFSET CL_DEVICE_value for device associated with queue. This error code is missing before version 1.1.MEM_ BASE_ ADDR_ ALIGN -
CL_EXEC_if the read and write operations are blocking and the execution status of any of the events in event_wait_list is a negative integer value. This error code is missing before version 1.1.STATUS_ ERROR_ FOR_ EVENTS_ IN_ WAIT_ LIST -
CL_MEM_if there is a failure to allocate memory for data store associated with buffer.OBJECT_ ALLOCATION_ FAILURE -
CL_INVALID_if clEnqueueReadBufferRect is called on buffer which has been created withOPERATION CL_MEM_orHOST_ WRITE_ ONLY CL_MEM_.HOST_ NO_ ACCESS -
CL_INVALID_if clEnqueueWriteBufferRect is called on buffer which has been created withOPERATION CL_MEM_orHOST_ READ_ ONLY CL_MEM_.HOST_ NO_ ACCESS -
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 -
CL_INVALID_if clEnqueueWriteBufferRect is called on buffer which has been created withOPERATION CL_MEM_.IMMUTABLE_ EXT
|
Calling clEnqueueReadBuffer to read 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 read is
created with
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
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
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
|
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.