blob: ac3be5d16aab81bf8aa337d7dc8de47a16eab8d9 [file] [log] [blame]
arovir019e53a352018-08-31 15:26:35 +01001//
Mike Kelly7cbe7812023-07-25 17:37:33 +01002// Copyright © 2017-2023 Arm Ltd and Contributors. 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"
Les Bellde9011b2018-10-03 10:37:52 +01007#include "NeonWorkloadUtils.hpp"
8
Cathal Corbettfd5bec42022-03-03 15:13:23 +00009#include <aclCommon/ArmComputeTensorUtils.hpp>
10#include <aclCommon/ArmComputeUtils.hpp>
Matteo Martincighe5b8eb92019-11-28 15:45:42 +000011
Matthew Sloyan171214c2020-09-09 09:07:37 +010012#include <armnn/utility/NumericCast.hpp>
13
Aron Virginas-Tarc9cc8042018-11-01 16:15:57 +000014#include "neon/NeonTensorHandle.hpp"
arovir019e53a352018-08-31 15:26:35 +010015
16namespace armnn
17{
Les Bellde9011b2018-10-03 10:37:52 +010018using namespace armcomputetensorutils;
19
Cathal Corbettfd5bec42022-03-03 15:13:23 +000020NeonLstmFloatWorkload::NeonLstmFloatWorkload(const LstmQueueDescriptor& descriptor, const WorkloadInfo& info)
arovir019e53a352018-08-31 15:26:35 +010021 : FloatWorkload<LstmQueueDescriptor>(descriptor, info)
22{
Keith Davis2d0679f2021-08-05 11:35:00 +010023 // Report Profiling Details
24 ARMNN_REPORT_PROFILING_WORKLOAD_DESC("NeonLstmFloatWorkload_Construct",
25 descriptor.m_Parameters,
26 info,
Cathal Corbettfd5bec42022-03-03 15:13:23 +000027 GetGuid());
Keith Davis2d0679f2021-08-05 11:35:00 +010028
Les Bellde9011b2018-10-03 10:37:52 +010029 arm_compute::LSTMParams<arm_compute::ITensor> lstm_param;
30
31 // Basic parameters
32 m_InputToForgetWeightsTensor = std::make_unique<arm_compute::Tensor>();
33 BuildArmComputeTensor(*m_InputToForgetWeightsTensor, m_Data.m_InputToForgetWeights->GetTensorInfo());
34
35 m_InputToCellWeightsTensor = std::make_unique<arm_compute::Tensor>();
36 BuildArmComputeTensor(*m_InputToCellWeightsTensor, m_Data.m_InputToCellWeights->GetTensorInfo());
37
38 m_InputToOutputWeightsTensor = std::make_unique<arm_compute::Tensor>();
39 BuildArmComputeTensor(*m_InputToOutputWeightsTensor, m_Data.m_InputToOutputWeights->GetTensorInfo());
40
41 m_RecurrentToForgetWeightsTensor = std::make_unique<arm_compute::Tensor>();
42 BuildArmComputeTensor(*m_RecurrentToForgetWeightsTensor, m_Data.m_RecurrentToForgetWeights->GetTensorInfo());
43
44 m_RecurrentToCellWeightsTensor = std::make_unique<arm_compute::Tensor>();
45 BuildArmComputeTensor(*m_RecurrentToCellWeightsTensor, m_Data.m_RecurrentToCellWeights->GetTensorInfo());
46
47 m_RecurrentToOutputWeightsTensor = std::make_unique<arm_compute::Tensor>();
48 BuildArmComputeTensor(*m_RecurrentToOutputWeightsTensor, m_Data.m_RecurrentToOutputWeights->GetTensorInfo());
49
50 m_ForgetGateBiasTensor = std::make_unique<arm_compute::Tensor>();
51 BuildArmComputeTensor(*m_ForgetGateBiasTensor, m_Data.m_ForgetGateBias->GetTensorInfo());
52
53 m_CellBiasTensor = std::make_unique<arm_compute::Tensor>();
54 BuildArmComputeTensor(*m_CellBiasTensor, m_Data.m_CellBias->GetTensorInfo());
55
56 m_OutputGateBiasTensor = std::make_unique<arm_compute::Tensor>();
57 BuildArmComputeTensor(*m_OutputGateBiasTensor, m_Data.m_OutputGateBias->GetTensorInfo());
58
59 // for future reference: check the AndroidNN API for the logic here
60 if (!m_Data.m_Parameters.m_CifgEnabled)
61 {
62 m_InputToInputWeightsTensor = std::make_unique<arm_compute::Tensor>();
63 BuildArmComputeTensor(*m_InputToInputWeightsTensor, m_Data.m_InputToInputWeights->GetTensorInfo());
64
65 m_RecurrentToInputWeightsTensor = std::make_unique<arm_compute::Tensor>();
66 BuildArmComputeTensor(*m_RecurrentToInputWeightsTensor, m_Data.m_RecurrentToInputWeights->GetTensorInfo());
67
68 m_CellToInputWeightsTensor = std::make_unique<arm_compute::Tensor>();
69 if (m_Data.m_CellToInputWeights != nullptr)
70 {
71 BuildArmComputeTensor(*m_CellToInputWeightsTensor, m_Data.m_CellToInputWeights->GetTensorInfo());
72 }
73
74 m_InputGateBiasTensor = std::make_unique<arm_compute::Tensor>();
75 BuildArmComputeTensor(*m_InputGateBiasTensor, m_Data.m_InputGateBias->GetTensorInfo());
76
77 lstm_param.set_cifg_params(m_InputToInputWeightsTensor.get(),
78 m_RecurrentToInputWeightsTensor.get(),
79 m_Data.m_CellToInputWeights != nullptr ? m_CellToInputWeightsTensor.get() : nullptr,
80 m_InputGateBiasTensor.get());
81 }
82
83 if (m_Data.m_Parameters.m_ProjectionEnabled)
84 {
85 m_ProjectionWeightsTensor = std::make_unique<arm_compute::Tensor>();
86 BuildArmComputeTensor(*m_ProjectionWeightsTensor, m_Data.m_ProjectionWeights->GetTensorInfo());
87
88 m_ProjectionBiasTensor = std::make_unique<arm_compute::Tensor>();
89 if (m_Data.m_ProjectionBias != nullptr)
90 {
91 BuildArmComputeTensor(*m_ProjectionBiasTensor, m_Data.m_ProjectionBias->GetTensorInfo());
92 }
93
94 lstm_param.set_projection_params(m_ProjectionWeightsTensor.get(),
95 m_Data.m_ProjectionBias != nullptr ? m_ProjectionBiasTensor.get() : nullptr);
96 }
97
98 if (m_Data.m_Parameters.m_PeepholeEnabled)
99 {
100 m_CellToForgetWeightsTensor = std::make_unique<arm_compute::Tensor>();
101 BuildArmComputeTensor(*m_CellToForgetWeightsTensor, m_Data.m_CellToForgetWeights->GetTensorInfo());
102
103 m_CellToOutputWeightsTensor = std::make_unique<arm_compute::Tensor>();
104 BuildArmComputeTensor(*m_CellToOutputWeightsTensor, m_Data.m_CellToOutputWeights->GetTensorInfo());
105
106 lstm_param.set_peephole_params(m_CellToForgetWeightsTensor.get(), m_CellToOutputWeightsTensor.get());
107 }
108
Jan Eilersad5293a2019-07-08 09:57:55 +0100109 if (m_Data.m_Parameters.m_LayerNormEnabled)
110 {
111 m_InputLayerNormWeightsTensor = std::make_unique<arm_compute::Tensor>();
112 if (!m_Data.m_Parameters.m_CifgEnabled)
113 {
114 BuildArmComputeTensor(*m_InputLayerNormWeightsTensor, m_Data.m_InputLayerNormWeights->GetTensorInfo());
115 }
116
117 m_ForgetLayerNormWeightsTensor = std::make_unique<arm_compute::Tensor>();
118 BuildArmComputeTensor(*m_ForgetLayerNormWeightsTensor, m_Data.m_ForgetLayerNormWeights->GetTensorInfo());
119
120 m_CellLayerNormWeightsTensor = std::make_unique<arm_compute::Tensor>();
121 BuildArmComputeTensor(*m_CellLayerNormWeightsTensor, m_Data.m_CellLayerNormWeights->GetTensorInfo());
122
123 m_OutputLayerNormWeightsTensor = std::make_unique<arm_compute::Tensor>();
124 BuildArmComputeTensor(*m_OutputLayerNormWeightsTensor, m_Data.m_OutputLayerNormWeights->GetTensorInfo());
125
126 lstm_param.set_layer_normalization_params(m_Data.m_Parameters.m_CifgEnabled ?
127 nullptr : m_InputLayerNormWeightsTensor.get(),
128 m_ForgetLayerNormWeightsTensor.get(),
129 m_CellLayerNormWeightsTensor.get(),
130 m_OutputLayerNormWeightsTensor.get());
131 }
132
Derek Lambertic81855f2019-06-13 17:34:19 +0100133 const arm_compute::ITensor& input = static_cast<IAclTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
134 const arm_compute::ITensor& output_state_in = static_cast<IAclTensorHandle*>(m_Data.m_Inputs[1])->GetTensor();
135 const arm_compute::ITensor& cell_state_in = static_cast<IAclTensorHandle*>(m_Data.m_Inputs[2])->GetTensor();
Les Bellde9011b2018-10-03 10:37:52 +0100136
Derek Lambertic81855f2019-06-13 17:34:19 +0100137 arm_compute::ITensor& output_state_out = static_cast<IAclTensorHandle*>(m_Data.m_Outputs[1])->GetTensor();
138 arm_compute::ITensor& cell_state_out = static_cast<IAclTensorHandle*>(m_Data.m_Outputs[2])->GetTensor();
139 arm_compute::ITensor& output = static_cast<IAclTensorHandle*>(m_Data.m_Outputs[3])->GetTensor();
Les Bellde9011b2018-10-03 10:37:52 +0100140
141 // Get the batch_size and the num_units from the cellStateIn dimensions
142 const TensorInfo& inputTensorInfo = info.m_InputTensorInfos[2];
Matthew Sloyan171214c2020-09-09 09:07:37 +0100143 const unsigned int batch_size = armnn::numeric_cast<unsigned int>(inputTensorInfo.GetShape()[0]);
144 const unsigned int num_units = armnn::numeric_cast<unsigned int>(inputTensorInfo.GetShape()[1]);
Les Bellde9011b2018-10-03 10:37:52 +0100145
146 m_ScratchBuffer = std::make_unique<arm_compute::Tensor>();
147 if (m_Data.m_Parameters.m_CifgEnabled)
148 {
Jan Eilersad5293a2019-07-08 09:57:55 +0100149 // 2D tensor with dimensions [num_units * 3, batch_size] with CIFG
Matteo Martincigha65b7ae2018-11-14 12:39:55 +0000150 armnn::TensorInfo scratchBuffer1({ batch_size, num_units * 3 }, DataType::Float32);
Les Bellde9011b2018-10-03 10:37:52 +0100151 BuildArmComputeTensor(*m_ScratchBuffer, scratchBuffer1);
152 }
153 else
154 {
Jan Eilersad5293a2019-07-08 09:57:55 +0100155 // scratch_buffer [num_units * 4, batch_size] without CIFG
Matteo Martincigha65b7ae2018-11-14 12:39:55 +0000156 armnn::TensorInfo scratchBuffer2({ batch_size, num_units * 4 }, DataType::Float32);
Les Bellde9011b2018-10-03 10:37:52 +0100157 BuildArmComputeTensor(*m_ScratchBuffer, scratchBuffer2);
158 }
159
160 float cell_threshold = m_Data.m_Parameters.m_ClippingThresCell;
161 float projection_threshold = m_Data.m_Parameters.m_ClippingThresProj;
162
163 // for preparing the object for the class ActivationLayerInfo, we need to consider 5 situations
Cathal Corbettfd5bec42022-03-03 15:13:23 +0000164 arm_compute::ActivationLayerInfo activationLayerInfo =
165 ConvertLstmActivationFuncToAclLayerInfo(m_Data.m_Parameters.m_ActivationFunc);
Les Bellde9011b2018-10-03 10:37:52 +0100166
167 m_LstmLayer.configure(&input, m_InputToForgetWeightsTensor.get(), m_InputToCellWeightsTensor.get(),
168 m_InputToOutputWeightsTensor.get(), m_RecurrentToForgetWeightsTensor.get(),
169 m_RecurrentToCellWeightsTensor.get(), m_RecurrentToOutputWeightsTensor.get(),
170 m_ForgetGateBiasTensor.get(), m_CellBiasTensor.get(), m_OutputGateBiasTensor.get(),
171 &output_state_in, &cell_state_in, m_ScratchBuffer.get(), &output_state_out,
172 &cell_state_out, &output, lstm_param, activationLayerInfo,
173 cell_threshold, projection_threshold);
174
175 armcomputetensorutils::InitialiseArmComputeTensorEmpty(*m_ScratchBuffer);
176
Nattapat Chaimanowong177d8d22018-10-16 13:21:27 +0100177 InitializeArmComputeTensorData(*m_InputToForgetWeightsTensor,
178 m_Data.m_InputToForgetWeights);
179 InitializeArmComputeTensorData(*m_InputToCellWeightsTensor,
180 m_Data.m_InputToCellWeights);
181 InitializeArmComputeTensorData(*m_InputToOutputWeightsTensor,
182 m_Data.m_InputToOutputWeights);
183 InitializeArmComputeTensorData(*m_RecurrentToForgetWeightsTensor,
184 m_Data.m_RecurrentToForgetWeights);
185 InitializeArmComputeTensorData(*m_RecurrentToCellWeightsTensor,
186 m_Data.m_RecurrentToCellWeights);
187 InitializeArmComputeTensorData(*m_RecurrentToOutputWeightsTensor,
188 m_Data.m_RecurrentToOutputWeights);
189 InitializeArmComputeTensorData(*m_ForgetGateBiasTensor,
190 m_Data.m_ForgetGateBias);
191 InitializeArmComputeTensorData(*m_CellBiasTensor,
192 m_Data.m_CellBias);
193 InitializeArmComputeTensorData(*m_OutputGateBiasTensor,
194 m_Data.m_OutputGateBias);
Les Bellde9011b2018-10-03 10:37:52 +0100195
196 if (!m_Data.m_Parameters.m_CifgEnabled)
197 {
Nattapat Chaimanowong177d8d22018-10-16 13:21:27 +0100198 InitializeArmComputeTensorData(*m_InputToInputWeightsTensor,
199 m_Data.m_InputToInputWeights);
200 InitializeArmComputeTensorData(*m_RecurrentToInputWeightsTensor,
201 m_Data.m_RecurrentToInputWeights);
Les Bellde9011b2018-10-03 10:37:52 +0100202 if (m_Data.m_CellToInputWeights != nullptr)
203 {
Nattapat Chaimanowong177d8d22018-10-16 13:21:27 +0100204 InitializeArmComputeTensorData(*m_CellToInputWeightsTensor,
205 m_Data.m_CellToInputWeights);
Les Bellde9011b2018-10-03 10:37:52 +0100206 }
Nattapat Chaimanowong177d8d22018-10-16 13:21:27 +0100207 InitializeArmComputeTensorData(*m_InputGateBiasTensor,
208 m_Data.m_InputGateBias);
Les Bellde9011b2018-10-03 10:37:52 +0100209 }
210
211 if (m_Data.m_Parameters.m_ProjectionEnabled)
212 {
Nattapat Chaimanowong177d8d22018-10-16 13:21:27 +0100213 InitializeArmComputeTensorData(*m_ProjectionWeightsTensor,
214 m_Data.m_ProjectionWeights);
Les Bellde9011b2018-10-03 10:37:52 +0100215 if (m_Data.m_ProjectionBias != nullptr)
216 {
Nattapat Chaimanowong177d8d22018-10-16 13:21:27 +0100217 InitializeArmComputeTensorData(*m_ProjectionBiasTensor,
218 m_Data.m_ProjectionBias);
Les Bellde9011b2018-10-03 10:37:52 +0100219 }
220 }
221
222 if (m_Data.m_Parameters.m_PeepholeEnabled)
223 {
Nattapat Chaimanowong177d8d22018-10-16 13:21:27 +0100224 InitializeArmComputeTensorData(*m_CellToForgetWeightsTensor,
225 m_Data.m_CellToForgetWeights);
226 InitializeArmComputeTensorData(*m_CellToOutputWeightsTensor,
227 m_Data.m_CellToOutputWeights);
Les Bellde9011b2018-10-03 10:37:52 +0100228 }
229
Jan Eilersad5293a2019-07-08 09:57:55 +0100230 if (m_Data.m_Parameters.m_LayerNormEnabled)
231 {
232 if (!m_Data.m_Parameters.m_CifgEnabled)
233 {
234 InitializeArmComputeTensorData(*m_InputLayerNormWeightsTensor, m_Data.m_InputLayerNormWeights);
235 }
236 InitializeArmComputeTensorData(*m_ForgetLayerNormWeightsTensor, m_Data.m_ForgetLayerNormWeights);
237 InitializeArmComputeTensorData(*m_CellLayerNormWeightsTensor, m_Data.m_CellLayerNormWeights);
238 InitializeArmComputeTensorData(*m_OutputLayerNormWeightsTensor, m_Data.m_OutputLayerNormWeights);
239 }
240
Les Bellde9011b2018-10-03 10:37:52 +0100241 // Force Compute Library to perform the necessary copying and reshaping, after which
242 // delete all the input tensors that will no longer be needed
243 m_LstmLayer.prepare();
244 FreeUnusedTensors();
arovir019e53a352018-08-31 15:26:35 +0100245}
246
247void NeonLstmFloatWorkload::Execute() const
248{
Mike Kelly7cbe7812023-07-25 17:37:33 +0100249 ARMNN_SCOPED_PROFILING_EVENT_NEON_NAME_GUID("NeonLstmFloatWorkload_Execute");
Les Bellde9011b2018-10-03 10:37:52 +0100250 m_LstmLayer.run();
arovir019e53a352018-08-31 15:26:35 +0100251}
252
Les Bellde9011b2018-10-03 10:37:52 +0100253arm_compute::Status NeonLstmFloatWorkloadValidate(const TensorInfo& input,
254 const TensorInfo& outputStateIn,
255 const TensorInfo& cellStateIn,
256 const TensorInfo& scratchBuffer,
257 const TensorInfo& outputStateOut,
258 const TensorInfo& cellStateOut,
259 const TensorInfo& output,
260 const LstmDescriptor& descriptor,
Jan Eilersad5293a2019-07-08 09:57:55 +0100261 const LstmInputParamsInfo& paramsInfo)
Les Bellde9011b2018-10-03 10:37:52 +0100262{
263 arm_compute::LSTMParams<arm_compute::ITensorInfo> lstm_params_info;
264
Jan Eilersad5293a2019-07-08 09:57:55 +0100265 // The inputs and outputs
Les Bellde9011b2018-10-03 10:37:52 +0100266 const arm_compute::TensorInfo aclInputInfo = BuildArmComputeTensorInfo(input);
267 const arm_compute::TensorInfo aclOutputStateInInfo = BuildArmComputeTensorInfo(outputStateIn);
268 const arm_compute::TensorInfo aclCellStateInInfo = BuildArmComputeTensorInfo(cellStateIn);
269 const arm_compute::TensorInfo aclScratchBufferInfo = BuildArmComputeTensorInfo(scratchBuffer);
270 const arm_compute::TensorInfo aclOutputStateOutInfo = BuildArmComputeTensorInfo(outputStateOut);
271 const arm_compute::TensorInfo aclCellStateOutInfo = BuildArmComputeTensorInfo(cellStateOut);
272 const arm_compute::TensorInfo aclOutputInfo = BuildArmComputeTensorInfo(output);
273
274 // Basic parameters
Jan Eilersad5293a2019-07-08 09:57:55 +0100275 const arm_compute::TensorInfo aclInputToForgetWeightsInfo
Francis Murtaghbb590b42019-08-14 09:51:36 +0100276 = BuildArmComputeTensorInfo(paramsInfo.GetInputToForgetWeights());
Jan Eilersad5293a2019-07-08 09:57:55 +0100277 const arm_compute::TensorInfo aclInputToCellWeightsInfo
Francis Murtaghbb590b42019-08-14 09:51:36 +0100278 = BuildArmComputeTensorInfo(paramsInfo.GetInputToCellWeights());
Jan Eilersad5293a2019-07-08 09:57:55 +0100279 const arm_compute::TensorInfo aclInputToOutputWeightsInfo
Francis Murtaghbb590b42019-08-14 09:51:36 +0100280 = BuildArmComputeTensorInfo(paramsInfo.GetInputToOutputWeights());
Les Bellde9011b2018-10-03 10:37:52 +0100281 const arm_compute::TensorInfo aclRecurrentToForgetWeightsInfo
Francis Murtaghbb590b42019-08-14 09:51:36 +0100282 = BuildArmComputeTensorInfo(paramsInfo.GetRecurrentToForgetWeights());
Les Bellde9011b2018-10-03 10:37:52 +0100283 const arm_compute::TensorInfo aclRecurrentToCellWeightsInfo
Francis Murtaghbb590b42019-08-14 09:51:36 +0100284 = BuildArmComputeTensorInfo(paramsInfo.GetRecurrentToCellWeights());
Les Bellde9011b2018-10-03 10:37:52 +0100285 const arm_compute::TensorInfo aclRecurrentToOutputWeightsInfo
Francis Murtaghbb590b42019-08-14 09:51:36 +0100286 = BuildArmComputeTensorInfo(paramsInfo.GetRecurrentToOutputWeights());
Jan Eilersad5293a2019-07-08 09:57:55 +0100287 const arm_compute::TensorInfo aclForgetGateBiasInfo
Francis Murtaghbb590b42019-08-14 09:51:36 +0100288 = BuildArmComputeTensorInfo(paramsInfo.GetForgetGateBias());
Jan Eilersad5293a2019-07-08 09:57:55 +0100289 const arm_compute::TensorInfo aclCellBiasInfo
Francis Murtaghbb590b42019-08-14 09:51:36 +0100290 = BuildArmComputeTensorInfo(paramsInfo.GetCellBias());
Jan Eilersad5293a2019-07-08 09:57:55 +0100291 const arm_compute::TensorInfo aclOutputGateBiasInfo
Francis Murtaghbb590b42019-08-14 09:51:36 +0100292 = BuildArmComputeTensorInfo(paramsInfo.GetOutputGateBias());
Les Bellde9011b2018-10-03 10:37:52 +0100293
294 arm_compute::TensorInfo aclInputToInputWeightsInfo;
295 arm_compute::TensorInfo aclRecurrentToInputWeightsInfo;
296 arm_compute::TensorInfo aclCellToInputWeightsInfo;
297 arm_compute::TensorInfo aclInputGateBiasInfo;
298 arm_compute::TensorInfo aclProjectionWeightsInfo;
299 arm_compute::TensorInfo aclProjectionBiasInfo;
300 arm_compute::TensorInfo aclCellToForgetWeightsInfo;
301 arm_compute::TensorInfo aclCellToOutputWeightsInfo;
302
Jan Eilersad5293a2019-07-08 09:57:55 +0100303 arm_compute::TensorInfo aclInputLayerNormWeightsInfo;
304 arm_compute::TensorInfo aclForgetLayerNormWeightsInfo;
305 arm_compute::TensorInfo aclCellLayerNormWeightsInfo;
306 arm_compute::TensorInfo aclOutputLayerNormWeightsInfo;
307
308
Les Bellde9011b2018-10-03 10:37:52 +0100309 if (!descriptor.m_CifgEnabled)
310 {
Jan Eilersad5293a2019-07-08 09:57:55 +0100311 if (descriptor.m_PeepholeEnabled)
Les Bellde9011b2018-10-03 10:37:52 +0100312 {
Francis Murtaghbb590b42019-08-14 09:51:36 +0100313 aclCellToInputWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetCellToInputWeights());
Les Bellde9011b2018-10-03 10:37:52 +0100314 }
Francis Murtaghbb590b42019-08-14 09:51:36 +0100315 aclInputToInputWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetInputToInputWeights());
316 aclRecurrentToInputWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetRecurrentToInputWeights());
317 aclInputGateBiasInfo = BuildArmComputeTensorInfo(paramsInfo.GetInputGateBias());
Jan Eilersad5293a2019-07-08 09:57:55 +0100318
Les Bellde9011b2018-10-03 10:37:52 +0100319 lstm_params_info.set_cifg_params(&aclInputToInputWeightsInfo, &aclRecurrentToInputWeightsInfo,
Jan Eilersad5293a2019-07-08 09:57:55 +0100320 descriptor.m_PeepholeEnabled ? &aclCellToInputWeightsInfo : nullptr,
Les Bellde9011b2018-10-03 10:37:52 +0100321 &aclInputGateBiasInfo);
322 }
323
324 if (descriptor.m_ProjectionEnabled)
325 {
Jan Eilersad5293a2019-07-08 09:57:55 +0100326 if (paramsInfo.m_ProjectionBias != nullptr)
Les Bellde9011b2018-10-03 10:37:52 +0100327 {
Francis Murtaghbb590b42019-08-14 09:51:36 +0100328 aclProjectionBiasInfo = BuildArmComputeTensorInfo(paramsInfo.GetProjectionBias());
Les Bellde9011b2018-10-03 10:37:52 +0100329 }
Francis Murtaghbb590b42019-08-14 09:51:36 +0100330 aclProjectionWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetProjectionWeights());
Jan Eilersad5293a2019-07-08 09:57:55 +0100331
Les Bellde9011b2018-10-03 10:37:52 +0100332 lstm_params_info.set_projection_params(&aclProjectionWeightsInfo,
Jan Eilersad5293a2019-07-08 09:57:55 +0100333 paramsInfo.m_ProjectionBias != nullptr ?
334 &aclProjectionBiasInfo : nullptr);
Les Bellde9011b2018-10-03 10:37:52 +0100335 }
336
337 if (descriptor.m_PeepholeEnabled)
338 {
Francis Murtaghbb590b42019-08-14 09:51:36 +0100339 aclCellToForgetWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetCellToForgetWeights());
340 aclCellToOutputWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetCellToOutputWeights());
Jan Eilersad5293a2019-07-08 09:57:55 +0100341
Les Bellde9011b2018-10-03 10:37:52 +0100342 lstm_params_info.set_peephole_params(&aclCellToForgetWeightsInfo, &aclCellToOutputWeightsInfo);
343 }
344
Jan Eilersad5293a2019-07-08 09:57:55 +0100345 if (descriptor.m_LayerNormEnabled)
346 {
347 if (!descriptor.m_CifgEnabled)
348 {
Francis Murtaghbb590b42019-08-14 09:51:36 +0100349 aclInputLayerNormWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetInputLayerNormWeights());
Jan Eilersad5293a2019-07-08 09:57:55 +0100350 }
Francis Murtaghbb590b42019-08-14 09:51:36 +0100351 aclForgetLayerNormWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetForgetLayerNormWeights());
352 aclCellLayerNormWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetCellLayerNormWeights());
353 aclOutputLayerNormWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetOutputLayerNormWeights());
Jan Eilersad5293a2019-07-08 09:57:55 +0100354
355 lstm_params_info.set_layer_normalization_params(descriptor.m_CifgEnabled ?
356 nullptr : &aclInputLayerNormWeightsInfo,
357 &aclForgetLayerNormWeightsInfo,
358 &aclCellLayerNormWeightsInfo,
359 &aclOutputLayerNormWeightsInfo);
360 }
361
Les Bellde9011b2018-10-03 10:37:52 +0100362 float cell_threshold = descriptor.m_ClippingThresCell;
363 float projection_threshold = descriptor.m_ClippingThresProj;
364
365 // for preparing the object for the class ActivationLayerInfo, we need to consider 5 situations
Cathal Corbettfd5bec42022-03-03 15:13:23 +0000366 arm_compute::ActivationLayerInfo activationLayerInfo =
367 ConvertLstmActivationFuncToAclLayerInfo(descriptor.m_ActivationFunc);
Les Bellde9011b2018-10-03 10:37:52 +0100368
369 return arm_compute::NELSTMLayer::validate(&aclInputInfo,
370 &aclInputToForgetWeightsInfo,
371 &aclInputToCellWeightsInfo,
372 &aclInputToOutputWeightsInfo,
373 &aclRecurrentToForgetWeightsInfo,
374 &aclRecurrentToCellWeightsInfo,
375 &aclRecurrentToOutputWeightsInfo,
376 &aclForgetGateBiasInfo,
377 &aclCellBiasInfo,
378 &aclOutputGateBiasInfo,
379 &aclOutputStateInInfo,
380 &aclCellStateInInfo,
381 &aclScratchBufferInfo,
382 &aclOutputStateOutInfo,
383 &aclCellStateOutInfo,
384 &aclOutputInfo,
385 lstm_params_info,
386 activationLayerInfo,
387 cell_threshold,
388 projection_threshold);
389}
390
391void NeonLstmFloatWorkload::FreeUnusedTensors()
392{
393 FreeTensorIfUnused(m_InputToInputWeightsTensor);
394 FreeTensorIfUnused(m_InputToForgetWeightsTensor);
395 FreeTensorIfUnused(m_InputToCellWeightsTensor);
396 FreeTensorIfUnused(m_InputToOutputWeightsTensor);
397 FreeTensorIfUnused(m_RecurrentToInputWeightsTensor);
398 FreeTensorIfUnused(m_RecurrentToForgetWeightsTensor);
399 FreeTensorIfUnused(m_RecurrentToCellWeightsTensor);
400 FreeTensorIfUnused(m_RecurrentToOutputWeightsTensor);
401 FreeTensorIfUnused(m_CellToInputWeightsTensor);
402 FreeTensorIfUnused(m_CellToForgetWeightsTensor);
403 FreeTensorIfUnused(m_CellToOutputWeightsTensor);
404 FreeTensorIfUnused(m_InputGateBiasTensor);
405 FreeTensorIfUnused(m_ForgetGateBiasTensor);
406 FreeTensorIfUnused(m_CellBiasTensor);
407 FreeTensorIfUnused(m_OutputGateBiasTensor);
408 FreeTensorIfUnused(m_ProjectionWeightsTensor);
409 FreeTensorIfUnused(m_ProjectionBiasTensor);
410 FreeTensorIfUnused(m_ScratchBuffer);
Jan Eilersad5293a2019-07-08 09:57:55 +0100411 FreeTensorIfUnused(m_InputLayerNormWeightsTensor);
412 FreeTensorIfUnused(m_ForgetLayerNormWeightsTensor);
413 FreeTensorIfUnused(m_CellLayerNormWeightsTensor);
414 FreeTensorIfUnused(m_OutputLayerNormWeightsTensor);
Les Bellde9011b2018-10-03 10:37:52 +0100415}
416
David Monahanec819992022-02-10 14:47:13 +0000417void NeonLstmFloatWorkload::ReplaceInputTensorHandle(ITensorHandle* tensorHandle, unsigned int slot)
418{
419 ITensorHandle* backupHandle = this->m_Data.m_Inputs[slot];
420 this->m_Data.m_Inputs[slot] = tensorHandle;
421 try
422 {
423 Reconfigure();
424 }
425 catch(armnn::UnimplementedException& e)
426 {
427 // Cannot reconfigure, revert the slot back and throw the exception.
428 this->m_Data.m_Inputs[slot] = backupHandle;
429 throw e;
430 }
431}
432
433// Replace output tensor handle with the given TensorHandle
434void NeonLstmFloatWorkload::ReplaceOutputTensorHandle(ITensorHandle* tensorHandle, unsigned int slot)
435{
436 ITensorHandle* backupHandle = this->m_Data.m_Inputs[slot];
437 this->m_Data.m_Inputs[slot] = tensorHandle;
438 try
439 {
440 Reconfigure();
441 }
442 catch(armnn::UnimplementedException& e)
443 {
444 // Cannot reconfigure, revert the slot back and throw the exception.
445 this->m_Data.m_Inputs[slot] = backupHandle;
446 throw e;
447 }
448}
449
450void NeonLstmFloatWorkload::Reconfigure()
451{
452 throw armnn::UnimplementedException("Reconfigure not implemented for this workload");
453}
454
Les Bellde9011b2018-10-03 10:37:52 +0100455} //namespace armnn