mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-22 07:05:54 +00:00
15 lines
463 B
C++
15 lines
463 B
C++
|
//
|
||
|
// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
//
|
||
|
#pragma once
|
||
|
|
||
|
#include <armnn/Tensor.hpp>
|
||
|
|
||
|
#include <armnn/backends/ITensorHandle.hpp>
|
||
|
|
||
|
void CopyDataToITensorHandle(armnn::ITensorHandle* tensorHandle, const void* memory);
|
||
|
|
||
|
void CopyDataFromITensorHandle(void* mem, const armnn::ITensorHandle* tensorHandle);
|
||
|
|
||
|
void AllocateAndCopyDataToITensorHandle(armnn::ITensorHandle* tensorHandle, const void* memory);
|