blob: 3f7c47032329bcc13fde6e1aafb911ecefaba342 [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
8#include <backends/NeonWorkloadUtils.hpp>
9
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