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

Method unmap

arm_compute/Acl.hpp:633–638  ·  view source on GitHub ↗

Unmaps tensor's memory * * @param[in] handle Handle to unmap * * @return Status code */

Source from the content-addressed store, hash-verified

631 * @return Status code
632 */
633 StatusCode unmap(void *handle)
634 {
635 const auto st = detail::as_enum<StatusCode>(AclUnmapTensor(_object.get(), handle));
636 report_status(st, "[Compute Library] Failed to unmap the tensor!");
637 return st;
638 }
639 /** Import external memory to a given tensor object
640 *
641 * @param[in] handle External memory handle

Callers

nothing calls this directly

Calls 3

AclUnmapTensorFunction · 0.85
report_statusFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected