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_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
ornon-blocking
. Ifblocking_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 theclEnqueueWriteBufferRect
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. buffer_origin
-
The (
x, y, z
) offset in the memory region associated withbuffer
. For a 2D rectangle region, thez
value 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, thez
value 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 (
width
in bytes,height
in rows,depth
in slices) of the 2D or 3D rectangle being read or written. For a 2D rectangle copy, thedepth
value 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_pitch
is 0,buffer_row_pitch
is 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_pitch
is 0,buffer_slice_pitch
is 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_pitch
is 0,host_row_pitch
is 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_pitch
is 0,host_slice_pitch
is computed asregion
[1] *host_row_pitch
. 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 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_QUEUE
ifcommand_queue
is not a valid host 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 (buffer_origin
,region
,buffer_row_pitch
,buffer_slice_pitch
) is out of bounds. -
CL_INVALID_VALUE
ifptr
is a NULL value. -
CL_INVALID_VALUE
if anyregion
array element is 0. -
CL_INVALID_VALUE
ifbuffer_row_pitch
is not 0 and is less thanregion
[0]. -
CL_INVALID_VALUE
ifhost_row_pitch
is not 0 and is less thanregion
[0]. -
CL_INVALID_VALUE
ifbuffer_slice_pitch
is not 0 and is less thanregion
[1] *buffer_row_pitch
and not a multiple ofbuffer_row_pitch
. -
CL_INVALID_VALUE
ifhost_slice_pitch
is not 0 and is less thanregion
[1] *host_row_pitch
and not a multiple ofhost_row_pitch
. -
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
ifclEnqueueWriteBufferRect
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.