IVGCVSW-1946: Remove armnn/src from the include paths
[platform/upstream/armnn.git] / src / backends / cl / workloads / ClSplitterWorkload.hpp
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 namespace armnn
11 {
12
13 // Base class template providing an implementation of the Splitter layer common to all data types.
14 class ClSplitterWorkload : public BaseWorkload<SplitterQueueDescriptor>
15 {
16 public:
17     using BaseWorkload<SplitterQueueDescriptor>::BaseWorkload;
18
19     void Execute() const override
20     {
21         // With subtensors, splitter is a no-op.
22     }
23 };
24
25 } //namespace armnn