aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/ClWorkloads/ClActivationUint8Workload.hpp
blob: 3a9cceb2989bc6bc4ffad1ebed59003bda271466 (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
27
//
// 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
{

// Activation layer execution
class ClActivationUint8Workload : public Uint8Workload<ActivationQueueDescriptor>
{
public:
    ClActivationUint8Workload(const ActivationQueueDescriptor& descriptor, const WorkloadInfo& info);
    void Execute() const override;

private:
    mutable arm_compute::CLActivationLayer m_ActivationLayer;
};

} //namespace armnn