1 // 2 // Copyright © 2017,2022 Arm Ltd and Contributors. All rights reserved. 3 // SPDX-License-Identifier: MIT 4 // 5 #pragma once 6 7 namespace armnn 8 { 9 class ITensorHandle; 10 } // namespace armnn 11 12 void CopyDataToITensorHandle(armnn::ITensorHandle* tensorHandle, const void* memory); 13 14 void CopyDataFromITensorHandle(void* mem, const armnn::ITensorHandle* tensorHandle); 15 16 void AllocateAndCopyDataToITensorHandle(armnn::ITensorHandle* tensorHandle, const void* memory);