IVGCVSW-2093 Add SpaceToBatchNd layer and corresponding no-op factory implementations
[platform/upstream/armnn.git] / src / backends / test / TensorCopyUtils.hpp
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 #pragma once
6
7 #include <armnn/Tensor.hpp>
8 #include <backends/ITensorHandle.hpp>
9
10 void CopyDataToITensorHandle(armnn::ITensorHandle* tensorHandle, const void* mem);
11
12 void CopyDataFromITensorHandle(void* mem, const armnn::ITensorHandle* tensorHandle);
13
14 void AllocateAndCopyDataToITensorHandle(armnn::ITensorHandle* tensorHandle, const void* mem);