aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/ClWorkloads/ClBaseSplitterWorkload.hpp
blob: fef841ced26bdc7b629e04ad2b2c01ccf7af6638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//

#pragma once

#include "backends/ClWorkloadUtils.hpp"

namespace armnn
{

// Base class template providing an implementation of the Splitter layer common to all data types
template <armnn::DataType DataType>
class ClBaseSplitterWorkload : public TypedWorkload<SplitterQueueDescriptor, DataType>
{
public:
    using TypedWorkload<SplitterQueueDescriptor, DataType>::TypedWorkload;

    void Execute() const override
    {
        // With subtensors, merger is a no-op
    }
};

} //namespace armnn