• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include <backendsCommon/Workload.hpp>
9 
10 #include <arm_compute/core/Error.h>
11 #include <arm_compute/runtime/IFunction.h>
12 
13 namespace armnn
14 {
15 
16 arm_compute::Status ClConcatWorkloadValidate(const std::vector<const TensorInfo*>& inputs,
17                                              const TensorInfo& output,
18                                              const OriginsDescriptor& descriptor);
19 
20 class ClConcatWorkload : public BaseWorkload<ConcatQueueDescriptor>
21 {
22 public:
23     ClConcatWorkload(const ConcatQueueDescriptor& descriptor, const WorkloadInfo& info);
24 
25     void Execute() const override;
26 
27 private:
28     mutable std::unique_ptr<arm_compute::IFunction> m_Layer;
29 };
30 
31 } //namespace armnn
32