MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / map

Method map

arm_compute/runtime/CL/CLArray.h:71–74  ·  view source on GitHub ↗

Enqueue a map operation of the allocated buffer. * * @param[in] blocking If true, then the mapping will be ready to use by the time * this method returns, else it is the caller's responsibility * to flush the queue and wait for the mapping operation to have completed. */

Source from the content-addressed store, hash-verified

69 * to flush the queue and wait for the mapping operation to have completed.
70 */
71 void map(bool blocking = true)
72 {
73 ICLArray<T>::map(CLScheduler::get().queue(), blocking);
74 }
75 using ICLArray<T>::map;
76 /** Enqueue an unmap operation of the allocated and mapped buffer.
77 *

Callers

nothing calls this directly

Calls 1

mapFunction · 0.85

Tested by

no test coverage detected