blob: 0acce4d309b5686f262a893008197457b64f4440 [file] [log] [blame]
telsoa01c577f2c2018-08-31 09:22:23 +01001//
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/Workload.hpp"
9#include "backends/WorkloadData.hpp"
10
11namespace armnn
12{
13
14class RefLstmFloat32Workload : public Float32Workload<LstmQueueDescriptor>
15{
16public:
17 using Float32Workload<LstmQueueDescriptor>::Float32Workload;
18 virtual void Execute() const override;
19};
20
21} //namespace armnn