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

Method CLArrayAccessor

tests/CL/CLArrayAccessor.h:47–50  ·  view source on GitHub ↗

Create an accessor for the given @p array. * * @param[in, out] array To be accessed array. * * @note The CL memory is mapped by the constructor. * */

Source from the content-addressed store, hash-verified

45 *
46 */
47 CLArrayAccessor(CLArray<T> &array) : _array{array}
48 {
49 _array.map();
50 }
51
52 /** Prevent instances of this class from being copy constructed */
53 CLArrayAccessor(const CLArrayAccessor &) = delete;

Callers

nothing calls this directly

Calls 1

mapMethod · 0.45

Tested by

no test coverage detected