Enqueues a command to map a region of an image object into the host address space and returns a pointer to this mapped region.
void * clEnqueueMapImage(cl_command_queue command_queue,
cl_mem image,
cl_bool blocking_map,
cl_map_flags map_flags,
const size_t * origin,
const size_t * region,
size_t *image_row_pitch,
size_t *image_slice_pitch,
cl_uint num_events_in_wait_list,
const cl_event *event_wait_list,
cl_event *event,
cl_int *errcode_ret)command_queue-
Must be a valid host command-queue.
image-
A valid image object. The OpenCL context associated with
command_queueandimagemust be the same. blocking_map-
Indicates if the map operation is
blockingornon-blocking.If
blocking_mapisCL_TRUE,clEnqueueMapImagedoes not return until the specified region inimageis mapped into the host address space and the application can access the contents of the mapped region using the pointer returned byclEnqueueMapImage.If
blocking_mapisCL_FALSEi.e. map operation is non-blocking, the pointer to the mapped region returned byclEnqueueMapImagecannot be used until the map command has completed. Theeventargument returns an event object which can be used to query the execution status of the map command. When the map command is completed, the application can access the contents of the mapped region using the pointer returned byclEnqueueMapImage. map_flags-
A bit-bield with the following supported values.
origin-
Defines the (
x, y, z) offset in pixels in the 1D, 2D or 3D image, the (x, y) offset and the image index in the 2D image array or the (x) offset and the image index in the 1D image array. Ifimageis a 2D image object,origin[2] must be 0. Ifimageis a 1D image or 1D image buffer object,origin[1] andorigin[2] must be 0. Ifimageis a 1D image array object,origin[2] must be 0. Ifimageis a 1D image array object,origin[1] describes the image index in the 1D image array. Ifimageis a 2D image array object,origin[2] describes the image index in the 2D image array. region-
Defines the (
width,height,depth) in pixels of the 1D, 2D or 3D rectangle, the (width,height) in pixels of the 2D rectangle and the number of images of a 2D image array or the (width) in pixels of the 1D rectangle and the number of images of a 1D image array. Ifimageis a 2D image object,region[2] must be 1. Ifimageis a 1D image or 1D image buffer object,region[1] andregion[2] must be 1. Ifimageis a 1D image array object,region[2] must be 1. The values inregioncannot be 0. image_row_pitch-
Returns the scan-line pitch in bytes for the mapped region. This must be a non-NULL value.
image_slice_pitch-
Returns the size in bytes of each 2D slice of a 3D image or the size of each 1D or 2D image in a 1D or 2D image array for the mapped region. For a 1D and 2D image, zero is returned if this argument is not NULL. For a 3D image, 1D, and 2D image array,
image_slice_pitchmust be a non-NULL value. event_wait_list ,num_events_in_wait_list-
Specify events that need to complete before
clEnqueueMapImagecan be executed. Ifevent_wait_listis NULL, thenclEnqueueMapImagedoes 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 copy 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. errcode_ret-
Returns an appropriate error code. If
errcode_retis NULL, no error code is returned.
The pointer returned maps a 1D, 2D or 3D region starting at origin and is at least region[0] pixels in size for a 1D image, 1D image buffer or 1D image array, (image_row_pitch * region[1]) pixels in size for a 2D image or 2D image array, and (image_slice_pitch * region[2]) pixels in size for a 3D image.
The result of a memory access outside this region is undefined.
If the image object is created with CL_MEM_USE_HOST_PTR set in mem_flags, the following will be true:
-
The
host_ptrspecified inclCreateImageis guaranteed to contain the latest bits in the region being mapped when theclEnqueueMapImagecommand has completed. -
The pointer value returned by
clEnqueueMapImagewill be derived from thehost_ptrspecified when the image object is created.
Mapped image objects are unmapped using clEnqueueUnmapMemObject.
clEnqueueMapBuffer and clEnqueueMapImage increment the mapped count of the memory object.
The initial mapped count value of a memory object is zero.
Multiple calls to clEnqueueMapBuffer or clEnqueueMapImage on the same memory object will increment this mapped count by appropriate number of calls.
clEnqueueUnmapMemObject decrements the mapped count of the memory object.
clEnqueueMapBuffer and clEnqueueMapImage act as synchronization points for a region of the buffer object being mapped.
If the mipmap extensions are enabled with cl_khr_mipmap_image, calls to clEnqueueReadImage, clEnqueueWriteImage and clEnqueueMapImage can be used to read from or write to a specific mip-level of a mip-mapped image.
If image argument is a 1D image, origin[1] specifies the mip-level to use.
If image argument is a 1D image array, origin[2] specifies the mip-level to use.
If image argument is a 2D image, origin[3] specifies the mip-level to use.
If image argument is a 2D image array or a 3D image, origin[3] specifies the mip-level to use.
clEnqueueMapImage will return a pointer to the mapped region.
The errcode_ret is set to CL_SUCCESS.
A NULL pointer is returned otherwise with one of the following error values returned in errcode_ret:
-
CL_INVALID_COMMAND_QUEUEifcommand_queueis not a valid host command-queue. -
CL_INVALID_CONTEXTif the context associated withcommand_queueandimageare not the same or if the context associated withcommand_queueand events inevent_wait_listare not the same. -
CL_INVALID_MEM_OBJECTifimageis not a valid image object. -
CL_INVALID_VALUEif region being mapped given by (origin,origin+region) is out of bounds or if values specified inmap_flagsare not valid. -
CL_INVALID_VALUEif values inoriginandregiondo not follow rules described in the argument description fororiginandregion. -
CL_INVALID_VALUEifimage_row_pitchis NULL. -
CL_INVALID_VALUEifimageis a 3D image, 1D or 2D image array object andimage_slice_pitchis NULL. -
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_INVALID_IMAGE_SIZEif image dimensions (image width, height, specified or compute row and/or slice pitch) forimageare not supported by device associated withqueue. -
CL_IMAGE_FORMAT_NOT_SUPPORTEDif image format (image channel order and data type) forimageare not supported by device associated withqueue. -
CL_MAP_FAILUREif there is a failure to map the requested region into the host address space. This error cannot occur for image objects created withCL_MEM_USE_HOST_PTRorCL_MEM_ALLOC_HOST_PTR. -
CL_EXEC_STATUS_ERROR_FOR_EVENTS_IN_WAIT_LISTif the map operation is 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 withimage. -
CL_INVALID_OPERATIONif the device associated withcommand_queuedoes not support images (i.e.CL_DEVICE_IMAGE_SUPPORTspecified in the table of OpenCL Device Queries forclGetDeviceInfoisCL_FALSE. -
CL_INVALID_OPERATIONifimagehas been created withCL_MEM_HOST_WRITE_ONLYorCL_MEM_HOST_NO_ACCESSandCL_MAP_READis set inmap_flagsor ifimagehas been created withCL_MEM_HOST_READ_ONLYorCL_MEM_HOST_NO_ACCESSandCL_MAP_WRITEorCL_MAP_WRITE_INVALIDATE_REGIONis set inmap_flags. -
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. -
CL_INVALID_OPERATIONif mapping would lead to overlapping regions being mapped for writing.