blob: ffc02c047f0c89180d06ddee286151686dfbaa45 [file] [log] [blame]
Matthew Bentham29cadb32018-10-01 17:22:32 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <backends/Workload.hpp>
9
10namespace armnn
11{
12
13// Base class template providing an implementation of the Splitter layer common to all data types.
14class ClSplitterWorkload : public BaseWorkload<SplitterQueueDescriptor>
15{
16public:
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