blob: 4951873f0be14ec940abcb10ce6a910e42f912ab [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
David Beck0dbe0ee2018-09-24 15:59:27 +01008#include <backends/neon/workloads/NeonWorkloadUtils.hpp>
telsoa014fcda012018-03-09 14:13:49 +00009
10namespace armnn
11{
12
13class NeonReshapeUint8Workload : public Uint8Workload<ReshapeQueueDescriptor>
14{
15public:
16 NeonReshapeUint8Workload(const ReshapeQueueDescriptor& descriptor, const WorkloadInfo& info);
17 virtual void Execute() const override;
18
19private:
20 mutable arm_compute::NEReshapeLayer m_Layer;
21};
22
23} //namespace armnn
24
25
26
27