Unmaps tensor's memory * * @param[in] handle Handle to unmap * * @return Status code */
| 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 |
nothing calls this directly
no test coverage detected