blob: 8b2b58d9b1013d54d13b25dbdebefaecb3c285f0 [file] [log] [blame]
arovir019e53a352018-08-31 15:26:35 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
arovir019e53a352018-08-31 15:26:35 +01004//
5
6#include "NeonLstmFloatWorkload.hpp"
7
8namespace armnn
9{
10NeonLstmFloatWorkload::NeonLstmFloatWorkload(const LstmQueueDescriptor& descriptor,
11 const WorkloadInfo& info)
12 : FloatWorkload<LstmQueueDescriptor>(descriptor, info)
13{
14 m_Data.ValidateInputsOutputs("NeonLstmFloatWorkload", 1, 1);
15}
16
17void NeonLstmFloatWorkload::Execute() const
18{
19 throw armnn::Exception("No implementation of Lstm in the Neon backend!");
20}
21
22} // namespace armnn