24.02
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
w
Variables
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
w
Enumerations
a
b
c
d
e
f
g
j
l
m
n
o
p
q
r
s
t
u
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
~
Variables
c
d
e
f
i
j
l
m
o
p
r
s
v
w
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
Enumerations
Enumerator
Related Functions
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
l
m
o
r
s
t
u
v
x
z
Functions
a
b
c
g
i
m
r
s
t
v
z
Variables
Typedefs
Macros
a
c
d
e
f
h
i
l
o
s
t
u
v
x
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
OutputHandler.cpp
Go to the documentation of this file.
1
//
2
// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
3
// SPDX-License-Identifier: MIT
4
//
5
6
#include "
OutputHandler.hpp
"
7
8
#include <
armnn/backends/ITensorHandle.hpp
>
9
#include <
backendsCommon/WorkloadDataCollector.hpp
>
10
#include <
armnn/backends/WorkloadFactory.hpp
>
11
12
namespace
armnn
13
{
14
15
void
OutputHandler::SetTensorInfo
(
const
TensorInfo
& tensorInfo)
16
{
17
m_TensorInfo = tensorInfo;
18
m_bTensorInfoSet =
true
;
19
}
20
21
void
OutputHandler::CreateTensorHandles
(
const
IWorkloadFactory
& factory,
const
bool
IsMemoryManaged)
22
{
23
ARMNN_NO_DEPRECATE_WARN_BEGIN
24
m_TensorHandle = factory.
CreateTensorHandle
(m_TensorInfo, IsMemoryManaged);
25
ARMNN_NO_DEPRECATE_WARN_END
26
}
27
28
void
OutputHandler::CreateTensorHandles
(
const
ITensorHandleFactory
& factory,
const
bool
IsMemoryManaged)
29
{
30
m_TensorHandle = factory.
CreateTensorHandle
(m_TensorInfo, IsMemoryManaged);
31
}
32
33
void
OutputHandler::CollectWorkloadOutputs
(
WorkloadDataCollector
& dataCollector)
const
34
{
35
dataCollector.
Push
(m_TensorHandle.get(), m_TensorInfo);
36
}
37
38
void
OutputHandler::SetAllocatedData
()
39
{
40
// Set allocated data only once
41
if
(!m_AllocatedTensorHandle)
42
{
43
m_AllocatedTensorHandle = std::move(m_TensorHandle);
44
}
45
}
46
47
}
// namespace armnn
armnn::IWorkloadFactory::CreateTensorHandle
virtual std::unique_ptr< ITensorHandle > CreateTensorHandle(const TensorInfo &tensorInfo, const bool IsMemoryManaged=true) const =0
OutputHandler.hpp
WorkloadDataCollector.hpp
armnn::TensorInfo
Definition:
Tensor.hpp:152
armnn::OutputHandler::SetTensorInfo
void SetTensorInfo(const TensorInfo &tensorInfo)
Sets the TensorInfo used by this output handler.
Definition:
OutputHandler.cpp:15
ARMNN_NO_DEPRECATE_WARN_BEGIN
#define ARMNN_NO_DEPRECATE_WARN_BEGIN
Definition:
Deprecated.hpp:33
armnn::OutputHandler::CreateTensorHandles
void CreateTensorHandles(const IWorkloadFactory &factory, const bool IsMemoryManaged=true)
Creates tensor handles used by the intermediate tensors.
Definition:
OutputHandler.cpp:21
WorkloadFactory.hpp
ITensorHandle.hpp
armnn::WorkloadDataCollector
Definition:
WorkloadDataCollector.hpp:15
armnn::IWorkloadFactory
Definition:
WorkloadFactory.hpp:22
armnn::ITensorHandleFactory
Definition:
ITensorHandleFactory.hpp:46
armnn::WorkloadDataCollector::Push
void Push(ITensorHandle *handle, const TensorInfo &info)
Definition:
WorkloadDataCollector.hpp:24
armnn::ITensorHandleFactory::CreateTensorHandle
virtual std::unique_ptr< ITensorHandle > CreateTensorHandle(const TensorInfo &tensorInfo) const =0
ARMNN_NO_DEPRECATE_WARN_END
#define ARMNN_NO_DEPRECATE_WARN_END
Definition:
Deprecated.hpp:34
armnn
Copyright (c) 2021 ARM Limited and Contributors.
Definition:
01_00_quick_start.dox:6
armnn::OutputHandler::SetAllocatedData
void SetAllocatedData()
Definition:
OutputHandler.cpp:38
armnn::OutputHandler::CollectWorkloadOutputs
void CollectWorkloadOutputs(WorkloadDataCollector &dataCollector) const
Fill the outputs for a given queue descriptor.
Definition:
OutputHandler.cpp:33
src
armnn
OutputHandler.cpp
Generated on Wed Feb 14 2024 16:36:14 for Arm NN by
1.8.17