blob: 950335902e1990dfaf57b206615284914e54e67a [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
Aron Virginas-Tarc9cc8042018-11-01 16:15:57 +00008#include <backendsCommon/Workload.hpp>
Matthew Bentham29cadb32018-10-01 17:22:32 +01009
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