C Specification
To read from a buffer object to host memory or to write to a buffer object from host memory call one of the functions
// Provided by CL_VERSION_1_0
cl_int clEnqueueReadBuffer(
cl_command_queue command_queue,
cl_mem buffer,
cl_bool blocking_read,
size_t offset,
size_t size,
void* ptr,
cl_uint num_events_in_wait_list,
const cl_event* event_wait_list,
cl_event* event);
// Provided by CL_VERSION_1_0
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);
Parameters
-
command_queue 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).
-
offset is the offset in bytes in the buffer object to read from or write to.
-
size is the size in bytes of data being read or written.
-
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,
clEnqueueReadBuffer 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,
clEnqueueReadBuffer 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
clEnqueueWriteBuffer 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.
clEnqueueReadBuffer and clEnqueueWriteBuffer 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 the region being read or written specified by (offset, size) is out of bounds or if ptr is aVALUE NULLvalue. -
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 clEnqueueReadBuffer is called on buffer which has been created withOPERATION CL_MEM_orHOST_ WRITE_ ONLY CL_MEM_.HOST_ NO_ ACCESS -
CL_INVALID_if clEnqueueWriteBuffer 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 clEnqueueWriteBuffer is called on buffer which has been created withOPERATION CL_MEM_.IMMUTABLE_ EXT
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.