MCPcopy Create free account
hub / github.com/boostorg/compute / enqueue_unmap_image

Method enqueue_unmap_image

include/boost/compute/command_queue.hpp:1133–1140  ·  view source on GitHub ↗

Enqueues a command to unmap \p image from the host memory space. \see_opencl_ref{clEnqueueUnmapMemObject}

Source from the content-addressed store, hash-verified

1131 ///
1132 /// \see_opencl_ref{clEnqueueUnmapMemObject}
1133 event enqueue_unmap_image(const image_object &image,
1134 void *mapped_ptr,
1135 const wait_list &events = wait_list())
1136 {
1137 BOOST_ASSERT(image.get_context() == this->get_context());
1138
1139 return enqueue_unmap_mem_object(image.get(), mapped_ptr, events);
1140 }
1141
1142 /// Enqueues a command to copy data from \p src_image to \p dst_image.
1143 ///

Callers 1

BOOST_AUTO_TEST_CASEFunction · 0.80

Calls 3

get_contextMethod · 0.95
wait_listClass · 0.85
getMethod · 0.45

Tested by 1

BOOST_AUTO_TEST_CASEFunction · 0.64