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

Method enqueue_unmap_image

include/boost/compute/command_queue.hpp:1178–1185  ·  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

1176 ///
1177 /// \see_opencl_ref{clEnqueueUnmapMemObject}
1178 event enqueue_unmap_image(const image_object &image,
1179 void *mapped_ptr,
1180 const wait_list &events = wait_list())
1181 {
1182 BOOST_ASSERT(image.get_context() == this->get_context());
1183
1184 return enqueue_unmap_mem_object(image.get(), mapped_ptr, events);
1185 }
1186
1187 /// Enqueues a command to copy data from \p src_image to \p dst_image.
1188 ///

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