blob: e344ee08adc2b13b146f021a5d512be016b12b66 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// See LICENSE file in the project root for full license information.
4//
5
6#pragma once
7
8#include "backends/ClWorkloadUtils.hpp"
9
10namespace armnn
11{
12
13class ClReshapeFloat32Workload : public Float32Workload<ReshapeQueueDescriptor>
14{
15public:
16 ClReshapeFloat32Workload(const ReshapeQueueDescriptor& descriptor, const WorkloadInfo& info);
17
18 void Execute() const override;
19
20private:
21 mutable arm_compute::CLReshapeLayer m_Layer;
22};
23
24} //namespace armnn
25
26