aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/NeonWorkloads/NeonLstmFloatWorkload.cpp
blob: 8159e9feb4fdeb90f69a8370f103d9fc90ae2cf4 (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 "NeonLstmFloatWorkload.hpp"

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

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

} // namespace armnn