• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include "RefConcatWorkload.hpp"
7 
8 #include "Concatenate.hpp"
9 
10 #include "Profiling.hpp"
11 
12 namespace armnn
13 {
14 
Execute() const15 void RefConcatWorkload::Execute() const
16 {
17     ARMNN_SCOPED_PROFILING_EVENT(Compute::CpuRef, "RefConcatWorkload_Execute");
18     Concatenate(m_Data);
19 }
20 
21 } //namespace armnn
22