aboutsummaryrefslogtreecommitdiff
path: root/src/armnnTestUtils/TensorCopyUtils.cpp
blob: 50f2642669d7100d467f614b0742dd094b100f01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// Copyright © 2017,2022 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include <armnn/backends/ITensorHandle.hpp>
#include <armnnTestUtils/TensorCopyUtils.hpp>
#include <Half.hpp>

void CopyDataToITensorHandle(armnn::ITensorHandle* tensorHandle, const void* memory)
{
    tensorHandle->CopyInFrom(memory);
}

void CopyDataFromITensorHandle(void* memory, const armnn::ITensorHandle* tensorHandle)
{
    tensorHandle->CopyOutTo(memory);
}

void AllocateAndCopyDataToITensorHandle(armnn::ITensorHandle* tensorHandle, const void* memory)
{
    tensorHandle->Allocate();
    CopyDataToITensorHandle(tensorHandle, memory);
}