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

Method do_unmap

arm_compute/runtime/CL/CLArray.h:101–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99 _buffer, blocking ? CL_TRUE : CL_FALSE, CL_MAP_READ | CL_MAP_WRITE, 0, this->max_num_values() * sizeof(T)));
100 }
101 void do_unmap(cl::CommandQueue &q, uint8_t *mapping) override
102 {
103 ARM_COMPUTE_ERROR_ON(nullptr == _buffer.get());
104 q.enqueueUnmapMemObject(_buffer, mapping);
105 }
106
107private:
108 cl::Buffer _buffer;

Callers

nothing calls this directly

Calls 2

enqueueUnmapMemObjectMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected