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
RefConstantWorkload.cpp
Go to the documentation of this file.
1
//
2
// Copyright © 2019-2023 Arm Ltd and Contributors. All rights reserved.
3
// SPDX-License-Identifier: MIT
4
//
5
6
#include "
RefConstantWorkload.hpp
"
7
8
#include "
RefWorkloadUtils.hpp
"
9
10
#include <
armnn/Types.hpp
>
11
12
#include <
armnn/utility/Assert.hpp
>
13
14
#include <cstring>
15
16
namespace
armnn
17
{
18
19
RefConstantWorkload::RefConstantWorkload
(
20
const
ConstantQueueDescriptor
& descriptor,
const
WorkloadInfo
& info)
21
:
RefBaseWorkload
<
ConstantQueueDescriptor
>(descriptor,
info
) {}
22
23
void
RefConstantWorkload::Execute
()
const
24
{
25
Execute
(
m_Data
.
m_Outputs
);
26
}
27
28
void
RefConstantWorkload::ExecuteAsync
(
ExecutionData
& executionData)
29
{
30
WorkingMemDescriptor
* workingMemDescriptor =
static_cast<
WorkingMemDescriptor
*
>
(executionData.
m_Data
);
31
Execute
(workingMemDescriptor->
m_Outputs
);
32
}
33
34
void
RefConstantWorkload::Execute
(std::vector<ITensorHandle*> outputs)
const
35
{
36
ARMNN_SCOPED_PROFILING_EVENT_REF_NAME_GUID
(
"RefConstantWorkload_Execute"
);
37
memcpy(outputs[0]->
Map
(),
m_Data
.
m_LayerOutput
->
GetConstTensor
<
void
>(),
GetTensorInfo
(outputs[0]).GetNumBytes());
38
}
39
40
}
//namespace armnn
armnn::experimental::ExecutionData::m_Data
void * m_Data
Definition:
ExecutionData.hpp:16
RefConstantWorkload.hpp
armnn::RefConstantWorkload::ExecuteAsync
void ExecuteAsync(ExecutionData &executionData) override
Definition:
RefConstantWorkload.cpp:28
ARMNN_SCOPED_PROFILING_EVENT_REF_NAME_GUID
#define ARMNN_SCOPED_PROFILING_EVENT_REF_NAME_GUID(label)
Creates a profiling event that uses GetGuid() and GetName() from the calling class.
Definition:
RefWorkloadUtils.hpp:22
armnn::ConstantQueueDescriptor
Definition:
WorkloadData.hpp:368
Assert.hpp
armnn::ConstTensorHandle::GetConstTensor
const T * GetConstTensor() const
Definition:
TensorHandle.hpp:28
armnn::WorkloadInfo
Contains information about TensorInfos of a layer.
Definition:
WorkloadInfo.hpp:16
armnn::GetTensorInfo
const TensorInfo & GetTensorInfo(const ITensorHandle *tensorHandle)
float32 helpers
Definition:
RefWorkloadUtils.hpp:33
armnn::RefConstantWorkload::Execute
void Execute() const override
Definition:
RefConstantWorkload.cpp:23
armnn::RefConstantWorkload::RefConstantWorkload
RefConstantWorkload(const ConstantQueueDescriptor &descriptor, const WorkloadInfo &info)
Definition:
RefConstantWorkload.cpp:19
armnn::BoostLogSeverityMapping::info
@ info
armnn::QueueDescriptor::m_Outputs
std::vector< ITensorHandle * > m_Outputs
Definition:
WorkloadData.hpp:27
armnn::ConstantQueueDescriptor::m_LayerOutput
const ConstTensorHandle * m_LayerOutput
Definition:
WorkloadData.hpp:375
RefWorkloadUtils.hpp
armnn::BaseWorkload< ConstantQueueDescriptor >::m_Data
ConstantQueueDescriptor m_Data
Definition:
Workload.hpp:89
armnn::LayerType::Map
@ Map
armnn
Copyright (c) 2021 ARM Limited and Contributors.
Definition:
01_00_quick_start.dox:6
Types.hpp
armnn::experimental::WorkingMemDescriptor
Definition:
WorkingMemDescriptor.hpp:18
armnn::RefBaseWorkload
Definition:
RefBaseWorkload.hpp:13
armnn::experimental::WorkingMemDescriptor::m_Outputs
std::vector< ITensorHandle * > m_Outputs
Definition:
WorkingMemDescriptor.hpp:21
armnn::experimental::ExecutionData
Definition:
ExecutionData.hpp:14
src
backends
reference
workloads
RefConstantWorkload.cpp
Generated on Wed Feb 14 2024 16:36:17 for Arm NN by
1.8.17