blob: c9801a3ae10ac849dcc0fc0afc51d413b2021c15 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5
6#pragma once
7
Matthew Bentham14e46692018-09-20 15:35:30 +01008#include "backends/Workload.hpp"
9
10#include <arm_compute/runtime/CL/CLFunctions.h>
telsoa014fcda012018-03-09 14:13:49 +000011
12namespace armnn
13{
14
15// Reshape
16class ClReshapeUint8Workload : public Uint8Workload<ReshapeQueueDescriptor>
17{
18public:
19 ClReshapeUint8Workload( const ReshapeQueueDescriptor& descriptor, const WorkloadInfo& info);
20
21 void Execute() const override;
22
23private:
24 mutable arm_compute::CLReshapeLayer m_Layer;
25};
26
27} //namespace armnn
28
29