blob: 2202463928f4d9494edf91d4700531622670c373 [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 Benthamd80a7122019-01-08 17:52:37 +00008#include <backendsCommon/Workload.hpp>
9
10#include <arm_compute/runtime/IFunction.h>
11
12#include <memory>
telsoa014fcda012018-03-09 14:13:49 +000013
14namespace armnn
15{
16
Nattapat Chaimanowongcce11fc2018-10-12 16:30:56 +010017class NeonReshapeWorkload : public BaseWorkload<ReshapeQueueDescriptor>
telsoa014fcda012018-03-09 14:13:49 +000018{
19public:
Nattapat Chaimanowongcce11fc2018-10-12 16:30:56 +010020 NeonReshapeWorkload(const ReshapeQueueDescriptor& descriptor, const WorkloadInfo& info);
21
telsoa014fcda012018-03-09 14:13:49 +000022 virtual void Execute() const override;
23
24private:
Matthew Benthamd80a7122019-01-08 17:52:37 +000025 std::unique_ptr<arm_compute::IFunction> m_Layer;
telsoa014fcda012018-03-09 14:13:49 +000026};
27
28} //namespace armnn