blob: 531e32961b5a5f061983b4443566b276007219f0 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// See LICENSE file in the project root for full license information.
4//
5
6#pragma once
7
8#include "backends/ClWorkloadUtils.hpp"
9
10namespace armnn
11{
12
telsoa01c577f2c2018-08-31 09:22:23 +010013// Base class template providing an implementation of the Merger layer common to all data types.
14template <armnn::DataType... DataTypes>
15class ClBaseMergerWorkload : public TypedWorkload<MergerQueueDescriptor, DataTypes...>
telsoa014fcda012018-03-09 14:13:49 +000016{
17public:
telsoa01c577f2c2018-08-31 09:22:23 +010018 using TypedWorkload<MergerQueueDescriptor, DataTypes...>::TypedWorkload;
telsoa014fcda012018-03-09 14:13:49 +000019
20 void Execute() const override
21 {
telsoa01c577f2c2018-08-31 09:22:23 +010022 // With subtensors, merger is a no-op.
telsoa014fcda012018-03-09 14:13:49 +000023 }
24};
25
26} //namespace armnn