aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/NeonWorkloads/NeonLstmFloat32Workload.cpp
blob: ba1369e179f1b31469e7b46b4faf65679f842d37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//

#include "NeonLstmFloat32Workload.hpp"

namespace armnn
{
NeonLstmFloat32Workload::NeonLstmFloat32Workload(const LstmQueueDescriptor& descriptor,
                                                   const WorkloadInfo& info)
        : FloatWorkload<LstmQueueDescriptor>(descriptor, info)
{
    m_Data.ValidateInputsOutputs("NeonLstmFloat32Workload", 1, 1);
}

void NeonLstmFloat32Workload::Execute() const
{
    throw armnn::Exception("No implementation of Lstm in the Neon backend!");
}

} // namespace armnn