aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/workloads/ClReshapeWorkload.hpp
blob: a7b464e7198e61b17180655ebe6fa88640f1eb34 (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.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <backendsCommon/Workload.hpp>

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

namespace armnn
{

class ClReshapeWorkload : public BaseWorkload<ReshapeQueueDescriptor>
{
public:
    ClReshapeWorkload(const ReshapeQueueDescriptor& descriptor, const WorkloadInfo& info);

    void Execute() const override;

private:
    mutable arm_compute::CLReshapeLayer m_Layer;
};

} //namespace armnn