ArmNN
 25.02
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RefConcatWorkload.cpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017,2019-2024 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include "RefConcatWorkload.hpp"
7 #include "Concatenate.hpp"
8 #include "Profiling.hpp"
9 #include "RefWorkloadUtils.hpp"
10 
11 namespace armnn
12 {
13 
15 {
17 }
18 
19 void RefConcatWorkload::Execute(std::vector<ITensorHandle*> inputs, std::vector<ITensorHandle*> outputs) const
20 {
21  ARMNN_SCOPED_PROFILING_EVENT_REF_NAME_GUID("RefConcatWorkload_Execute");
22  Concatenate(m_Data, inputs, outputs);
23 }
24 
25 } //namespace armnn
#define ARMNN_SCOPED_PROFILING_EVENT_REF_NAME_GUID(label)
Creates a profiling event that uses GetGuid() and GetName() from the calling class.
QueueDescriptor m_Data
Definition: Workload.hpp:74
void Execute() const override
Copyright (c) 2021 ARM Limited and Contributors.
void Concatenate(const ConcatQueueDescriptor &data, std::vector< ITensorHandle * > inputs, std::vector< ITensorHandle * > outputs)
Definition: Concatenate.cpp:14
std::vector< ITensorHandle * > m_Inputs
std::vector< ITensorHandle * > m_Outputs