aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/workloads/ClReshapeUint8Workload.hpp
blob: 654437a4c1c5b4b64b42358500a805a57900bf85 (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
28
29
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <backends/Workload.hpp>

#include <arm_compute/runtime/CL/CLFunctions.h>

namespace armnn
{

// Reshape
class ClReshapeUint8Workload : public Uint8Workload<ReshapeQueueDescriptor>
{
public:
    ClReshapeUint8Workload( const ReshapeQueueDescriptor& descriptor, const WorkloadInfo& info);

    void Execute() const override;

private:
    mutable arm_compute::CLReshapeLayer m_Layer;
};

} //namespace armnn