ArmNN
 21.08
ClQLstmWorkload.cpp
Go to the documentation of this file.
1 //
2 // Copyright © 2020 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include "ClQLstmWorkload.hpp"
7 #include "ClWorkloadUtils.hpp"
8 
10 
11 #include "cl/ClTensorHandle.hpp"
12 
13 namespace armnn
14 {
15 using namespace armcomputetensorutils;
16 
18  const WorkloadInfo& info,
19  const arm_compute::CLCompileContext& clCompileContext)
20  : BaseWorkload<QLstmQueueDescriptor>(descriptor, info)
21 {
22  // Report Profiling Details
23  ARMNN_REPORT_PROFILING_WORKLOAD_DESC("ClQLstmWorkload_Construct",
24  descriptor.m_Parameters,
25  info,
26  this->GetGuid());
27 
28  arm_compute::LSTMParams<arm_compute::ICLTensor> qLstmParams;
29 
30  // Mandatory params
31  m_InputToForgetWeightsTensor = std::make_unique<arm_compute::CLTensor>();
32  BuildArmComputeTensor(*m_InputToForgetWeightsTensor, m_Data.m_InputToForgetWeights->GetTensorInfo());
33 
34  m_InputToCellWeightsTensor = std::make_unique<arm_compute::CLTensor>();
35  BuildArmComputeTensor(*m_InputToCellWeightsTensor, m_Data.m_InputToCellWeights->GetTensorInfo());
36 
37  m_InputToOutputWeightsTensor = std::make_unique<arm_compute::CLTensor>();
38  BuildArmComputeTensor(*m_InputToOutputWeightsTensor, m_Data.m_InputToOutputWeights->GetTensorInfo());
39 
40  m_RecurrentToForgetWeightsTensor = std::make_unique<arm_compute::CLTensor>();
41  BuildArmComputeTensor(*m_RecurrentToForgetWeightsTensor, m_Data.m_RecurrentToForgetWeights->GetTensorInfo());
42 
43  m_RecurrentToCellWeightsTensor = std::make_unique<arm_compute::CLTensor>();
44  BuildArmComputeTensor(*m_RecurrentToCellWeightsTensor, m_Data.m_RecurrentToCellWeights->GetTensorInfo());
45 
46  m_RecurrentToOutputWeightsTensor = std::make_unique<arm_compute::CLTensor>();
47  BuildArmComputeTensor(*m_RecurrentToOutputWeightsTensor, m_Data.m_RecurrentToOutputWeights->GetTensorInfo());
48 
49  m_ForgetGateBiasTensor = std::make_unique<arm_compute::CLTensor>();
50  BuildArmComputeTensor(*m_ForgetGateBiasTensor, m_Data.m_ForgetGateBias->GetTensorInfo());
51 
52  m_CellBiasTensor = std::make_unique<arm_compute::CLTensor>();
53  BuildArmComputeTensor(*m_CellBiasTensor, m_Data.m_CellBias->GetTensorInfo());
54 
55  m_OutputGateBiasTensor = std::make_unique<arm_compute::CLTensor>();
56  BuildArmComputeTensor(*m_OutputGateBiasTensor, m_Data.m_OutputGateBias->GetTensorInfo());
57 
58  // Create tensors for optional params if they are enabled
60  {
61  m_CellToInputWeightsTensor = std::make_unique<arm_compute::CLTensor>();
62 
64  {
65  // In ACL this is categorised as a CIFG param and not a Peephole param
66  BuildArmComputeTensor(*m_CellToInputWeightsTensor, m_Data.m_CellToInputWeights->GetTensorInfo());
67  }
68 
69  m_CellToForgetWeightsTensor = std::make_unique<arm_compute::CLTensor>();
70  BuildArmComputeTensor(*m_CellToForgetWeightsTensor, m_Data.m_CellToForgetWeights->GetTensorInfo());
71 
72  m_CellToOutputWeightsTensor = std::make_unique<arm_compute::CLTensor>();
73  BuildArmComputeTensor(*m_CellToOutputWeightsTensor, m_Data.m_CellToOutputWeights->GetTensorInfo());
74 
75  // Set Peephole params
76  qLstmParams.set_peephole_params(m_CellToForgetWeightsTensor.get(),
77  m_CellToOutputWeightsTensor.get());
78  }
79 
81  {
82  m_ProjectionWeightsTensor = std::make_unique<arm_compute::CLTensor>();
83  BuildArmComputeTensor(*m_ProjectionWeightsTensor, m_Data.m_ProjectionWeights->GetTensorInfo());
84 
85  m_ProjectionBiasTensor = std::make_unique<arm_compute::CLTensor>();
86  if (m_Data.m_ProjectionBias != nullptr)
87  {
88  BuildArmComputeTensor(*m_ProjectionBiasTensor, m_Data.m_ProjectionBias->GetTensorInfo());
89  }
90 
91  // Set projection params
92  qLstmParams.set_projection_params(
93  m_ProjectionWeightsTensor.get(),
94  m_Data.m_ProjectionBias != nullptr ? m_ProjectionBiasTensor.get() : nullptr);
95  }
96 
98  {
99  m_InputLayerNormWeightsTensor = std::make_unique<arm_compute::CLTensor>();
100 
102  {
103  BuildArmComputeTensor(*m_InputLayerNormWeightsTensor, m_Data.m_InputLayerNormWeights->GetTensorInfo());
104  }
105 
106  m_ForgetLayerNormWeightsTensor = std::make_unique<arm_compute::CLTensor>();
107  BuildArmComputeTensor(*m_ForgetLayerNormWeightsTensor, m_Data.m_ForgetLayerNormWeights->GetTensorInfo());
108 
109  m_CellLayerNormWeightsTensor = std::make_unique<arm_compute::CLTensor>();
110  BuildArmComputeTensor(*m_CellLayerNormWeightsTensor, m_Data.m_CellLayerNormWeights->GetTensorInfo());
111 
112  m_OutputLayerNormWeightsTensor = std::make_unique<arm_compute::CLTensor>();
113  BuildArmComputeTensor(*m_OutputLayerNormWeightsTensor, m_Data.m_OutputLayerNormWeights->GetTensorInfo());
114 
115  // Set layer norm params
116  qLstmParams.set_layer_normalization_params(
117  m_Data.m_InputLayerNormWeights != nullptr ? m_InputLayerNormWeightsTensor.get() : nullptr,
118  m_ForgetLayerNormWeightsTensor.get(),
119  m_CellLayerNormWeightsTensor.get(),
120  m_OutputLayerNormWeightsTensor.get());
121  }
122 
124  {
125  m_InputToInputWeightsTensor = std::make_unique<arm_compute::CLTensor>();
126  BuildArmComputeTensor(*m_InputToInputWeightsTensor, m_Data.m_InputToInputWeights->GetTensorInfo());
127 
128  m_RecurrentToInputWeightsTensor = std::make_unique<arm_compute::CLTensor>();
129  BuildArmComputeTensor(*m_RecurrentToInputWeightsTensor, m_Data.m_RecurrentToInputWeights->GetTensorInfo());
130 
131  m_InputGateBiasTensor = std::make_unique<arm_compute::CLTensor>();
132  BuildArmComputeTensor(*m_InputGateBiasTensor, m_Data.m_InputGateBias->GetTensorInfo());
133 
134  // Set CIFG params
135  qLstmParams.set_cifg_params(
136  m_InputToInputWeightsTensor.get(),
137  m_RecurrentToInputWeightsTensor.get(),
138  m_Data.m_CellToInputWeights != nullptr ? m_CellToInputWeightsTensor.get() : nullptr,
139  m_InputGateBiasTensor.get());
140  }
141 
142  // Input/Output tensors
143  const arm_compute::ICLTensor& input = static_cast<IClTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
144  arm_compute::ICLTensor& outputStateIn = static_cast<IClTensorHandle*>(m_Data.m_Inputs[1])->GetTensor();
145  arm_compute::ICLTensor& cellStateIn = static_cast<IClTensorHandle*>(m_Data.m_Inputs[2])->GetTensor();
146 
147  arm_compute::ICLTensor& outputStateOut = static_cast<IClTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
148  arm_compute::ICLTensor& cellStateOut = static_cast<IClTensorHandle*>(m_Data.m_Outputs[1])->GetTensor();
149  arm_compute::ICLTensor& output = static_cast<IClTensorHandle*>(m_Data.m_Outputs[2])->GetTensor();
150 
151  // Set scalar descriptor params
152  qLstmParams.set_cell_clip_params(m_Data.m_Parameters.m_CellClip);
153  qLstmParams.set_projection_clip_params(m_Data.m_Parameters.m_ProjectionClip);
154  qLstmParams.set_hidden_state_params(m_Data.m_Parameters.m_HiddenStateZeroPoint,
156  qLstmParams.set_matmul_scale_params(m_Data.m_Parameters.m_InputIntermediateScale,
160 
161  // QLSTM CL configure
162  m_QLstmLayer.configure(clCompileContext,
163  &input,
164  m_InputToForgetWeightsTensor.get(),
165  m_InputToCellWeightsTensor.get(),
166  m_InputToOutputWeightsTensor.get(),
167  m_RecurrentToForgetWeightsTensor.get(),
168  m_RecurrentToCellWeightsTensor.get(),
169  m_RecurrentToOutputWeightsTensor.get(),
170  m_ForgetGateBiasTensor.get(),
171  m_CellBiasTensor.get(),
172  m_OutputGateBiasTensor.get(),
173  &cellStateIn,
174  &outputStateIn,
175  &cellStateOut,
176  &outputStateOut,
177  &output,
178  qLstmParams);
179 
180  // Initialise ACL tensor data for mandatory params
181  InitializeArmComputeClTensorData(*m_InputToForgetWeightsTensor, m_Data.m_InputToForgetWeights);
182  InitializeArmComputeClTensorData(*m_InputToCellWeightsTensor, m_Data.m_InputToCellWeights);
183  InitializeArmComputeClTensorData(*m_InputToOutputWeightsTensor, m_Data.m_InputToOutputWeights);
184 
185  InitializeArmComputeClTensorData(*m_RecurrentToForgetWeightsTensor, m_Data.m_RecurrentToForgetWeights);
186  InitializeArmComputeClTensorData(*m_RecurrentToCellWeightsTensor, m_Data.m_RecurrentToCellWeights);
187  InitializeArmComputeClTensorData(*m_RecurrentToOutputWeightsTensor, m_Data.m_RecurrentToOutputWeights);
188 
189  InitializeArmComputeClTensorData(*m_ForgetGateBiasTensor, m_Data.m_ForgetGateBias);
191  InitializeArmComputeClTensorData(*m_OutputGateBiasTensor, m_Data.m_OutputGateBias);
192 
193  // Initialise ACL tensor data for optional params
195  {
196  InitializeArmComputeClTensorData(*m_InputToInputWeightsTensor, m_Data.m_InputToInputWeights);
197  InitializeArmComputeClTensorData(*m_RecurrentToInputWeightsTensor, m_Data.m_RecurrentToInputWeights);
199  }
200 
202  {
203  InitializeArmComputeClTensorData(*m_ProjectionWeightsTensor, m_Data.m_ProjectionWeights);
204 
205  if (m_Data.m_ProjectionBias != nullptr)
206  {
207  InitializeArmComputeClTensorData(*m_ProjectionBiasTensor, m_Data.m_ProjectionBias);
208  }
209  }
210 
212  {
214  {
215  InitializeArmComputeClTensorData(*m_CellToInputWeightsTensor, m_Data.m_CellToInputWeights);
216  }
217 
218  InitializeArmComputeClTensorData(*m_CellToForgetWeightsTensor, m_Data.m_CellToForgetWeights);
219  InitializeArmComputeClTensorData(*m_CellToOutputWeightsTensor, m_Data.m_CellToOutputWeights);
220  }
221 
223  {
225  {
226  InitializeArmComputeClTensorData(*m_InputLayerNormWeightsTensor, m_Data.m_InputLayerNormWeights);
227  }
228  InitializeArmComputeClTensorData(*m_ForgetLayerNormWeightsTensor, m_Data.m_ForgetLayerNormWeights);
229  InitializeArmComputeClTensorData(*m_CellLayerNormWeightsTensor, m_Data.m_CellLayerNormWeights);
230  InitializeArmComputeClTensorData(*m_OutputLayerNormWeightsTensor, m_Data.m_OutputLayerNormWeights);
231  }
232 
233  m_QLstmLayer.prepare();
234 
235  FreeUnusedTensors();
236 }
237 
239 {
240  ARMNN_SCOPED_PROFILING_EVENT_CL_GUID("ClQuantizedLstmWorkload_Execute", this->GetGuid());
241  m_QLstmLayer.run();
242 }
243 
245  const TensorInfo& cellStateIn,
246  const TensorInfo& outputStateIn,
247  const TensorInfo& cellStateOut,
248  const TensorInfo& outputStateOut,
249  const TensorInfo& output,
250  const QLstmDescriptor& descriptor,
251  const LstmInputParamsInfo& paramsInfo)
252 {
253  arm_compute::LSTMParams<arm_compute::ITensorInfo> aclParamsInfo;
254 
255  // Input/Output tensor info
256  const arm_compute::TensorInfo aclInputInfo = BuildArmComputeTensorInfo(input);
257  const arm_compute::TensorInfo aclOutputStateInInfo = BuildArmComputeTensorInfo(outputStateIn);
258  const arm_compute::TensorInfo aclCellStateInInfo = BuildArmComputeTensorInfo(cellStateIn);
259 
260  const arm_compute::TensorInfo aclOutputStateOutInfo = BuildArmComputeTensorInfo(outputStateOut);
261  const arm_compute::TensorInfo aclCellStateOutInfo = BuildArmComputeTensorInfo(cellStateOut);
262  const arm_compute::TensorInfo aclOutputInfo = BuildArmComputeTensorInfo(output);
263 
264  // Mandatory tensor info
265  const arm_compute::TensorInfo aclInputToForgetWeightsInfo
266  = BuildArmComputeTensorInfo(paramsInfo.GetInputToForgetWeights());
267  const arm_compute::TensorInfo aclInputToCellWeightsInfo
268  = BuildArmComputeTensorInfo(paramsInfo.GetInputToCellWeights());
269  const arm_compute::TensorInfo aclInputToOutputWeightsInfo
270  = BuildArmComputeTensorInfo(paramsInfo.GetInputToOutputWeights());
271  const arm_compute::TensorInfo aclRecurrentToForgetWeightsInfo
272  = BuildArmComputeTensorInfo(paramsInfo.GetRecurrentToForgetWeights());
273  const arm_compute::TensorInfo aclRecurrentToCellWeightsInfo
274  = BuildArmComputeTensorInfo(paramsInfo.GetRecurrentToCellWeights());
275  const arm_compute::TensorInfo aclRecurrentToOutputWeightsInfo
276  = BuildArmComputeTensorInfo(paramsInfo.GetRecurrentToOutputWeights());
277  const arm_compute::TensorInfo aclForgetGateBiasInfo
278  = BuildArmComputeTensorInfo(paramsInfo.GetForgetGateBias());
279  const arm_compute::TensorInfo aclCellBiasInfo
280  = BuildArmComputeTensorInfo(paramsInfo.GetCellBias());
281  const arm_compute::TensorInfo aclOutputGateBiasInfo
282  = BuildArmComputeTensorInfo(paramsInfo.GetOutputGateBias());
283 
284  // Optional tensor info
285  arm_compute::TensorInfo aclInputToInputWeightsInfo;
286  arm_compute::TensorInfo aclRecurrentToInputWeightsInfo;
287 
288  arm_compute::TensorInfo aclCellToInputWeightsInfo;
289  arm_compute::TensorInfo aclCellToForgetWeightsInfo;
290  arm_compute::TensorInfo aclCellToOutputWeightsInfo;
291 
292  arm_compute::TensorInfo aclInputGateBiasInfo;
293 
294  arm_compute::TensorInfo aclProjectionWeightsInfo;
295  arm_compute::TensorInfo aclProjectionBiasInfo;
296 
297  arm_compute::TensorInfo aclInputLayerNormWeightsInfo;
298  arm_compute::TensorInfo aclForgetLayerNormWeightsInfo;
299  arm_compute::TensorInfo aclCellLayerNormWeightsInfo;
300  arm_compute::TensorInfo aclOutputLayerNormWeightsInfo;
301 
302  // Create tensor info for optional params if they are enabled
303  if (descriptor.m_PeepholeEnabled)
304  {
305  if (!descriptor.m_CifgEnabled)
306  {
307  aclCellToInputWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetCellToInputWeights());
308  }
309 
310  aclCellToForgetWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetCellToForgetWeights());
311  aclCellToOutputWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetCellToOutputWeights());
312 
313  // Set peephole params info
314  aclParamsInfo.set_peephole_params(&aclCellToForgetWeightsInfo,
315  &aclCellToOutputWeightsInfo);
316  }
317 
318  if (descriptor.m_ProjectionEnabled)
319  {
320  aclProjectionWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetProjectionWeights());
321 
322  if (paramsInfo.m_ProjectionBias != nullptr)
323  {
324  aclProjectionBiasInfo = BuildArmComputeTensorInfo(paramsInfo.GetProjectionBias());
325  }
326 
327  // Set projection params info
328  aclParamsInfo.set_projection_params(
329  &aclProjectionWeightsInfo,
330  paramsInfo.m_ProjectionBias != nullptr ? &aclProjectionBiasInfo : nullptr);
331  }
332 
333  if (descriptor.m_LayerNormEnabled)
334  {
335  if (!descriptor.m_CifgEnabled)
336  {
337  aclInputLayerNormWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetInputLayerNormWeights());
338  }
339 
340  aclForgetLayerNormWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetForgetLayerNormWeights());
341  aclCellLayerNormWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetCellLayerNormWeights());
342  aclOutputLayerNormWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetOutputLayerNormWeights());
343 
344  // Set layer norm params info
345  aclParamsInfo.set_layer_normalization_params(
346  paramsInfo.m_InputLayerNormWeights != nullptr ? &aclInputLayerNormWeightsInfo : nullptr,
347  &aclForgetLayerNormWeightsInfo,
348  &aclCellLayerNormWeightsInfo,
349  &aclOutputLayerNormWeightsInfo);
350  }
351 
352  if (!descriptor.m_CifgEnabled)
353  {
354  aclInputToInputWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetInputToInputWeights());
355  aclRecurrentToInputWeightsInfo = BuildArmComputeTensorInfo(paramsInfo.GetRecurrentToInputWeights());
356  aclInputGateBiasInfo = BuildArmComputeTensorInfo(paramsInfo.GetInputGateBias());
357 
358  // Set CIFG params info
359  aclParamsInfo.set_cifg_params(
360  &aclInputToInputWeightsInfo,
361  &aclRecurrentToInputWeightsInfo,
362  paramsInfo.m_CellToInputWeights != nullptr ? &aclCellToInputWeightsInfo : nullptr,
363  &aclInputGateBiasInfo);
364  }
365 
366  // Set scalar descriptor params
367  aclParamsInfo.set_cell_clip_params(descriptor.m_CellClip);
368  aclParamsInfo.set_projection_clip_params(descriptor.m_ProjectionClip);
369  aclParamsInfo.set_hidden_state_params(descriptor.m_HiddenStateZeroPoint, descriptor.m_HiddenStateScale);
370  aclParamsInfo.set_matmul_scale_params(descriptor.m_InputIntermediateScale,
371  descriptor.m_ForgetIntermediateScale,
372  descriptor.m_CellIntermediateScale,
373  descriptor.m_OutputIntermediateScale);
374 
375  // QLSTM CL validate
376  return arm_compute::CLQLSTMLayer::validate(&aclInputInfo,
377  &aclInputToForgetWeightsInfo,
378  &aclInputToCellWeightsInfo,
379  &aclInputToOutputWeightsInfo,
380  &aclRecurrentToForgetWeightsInfo,
381  &aclRecurrentToCellWeightsInfo,
382  &aclRecurrentToOutputWeightsInfo,
383  &aclForgetGateBiasInfo,
384  &aclCellBiasInfo,
385  &aclOutputGateBiasInfo,
386  &aclCellStateInInfo,
387  &aclOutputStateInInfo,
388  &aclCellStateOutInfo,
389  &aclOutputStateOutInfo,
390  &aclOutputInfo,
391  aclParamsInfo);
392 }
393 
394 void ClQLstmWorkload::FreeUnusedTensors()
395 {
396  FreeTensorIfUnused(m_InputToInputWeightsTensor);
397  FreeTensorIfUnused(m_InputToForgetWeightsTensor);
398  FreeTensorIfUnused(m_InputToCellWeightsTensor);
399  FreeTensorIfUnused(m_InputToOutputWeightsTensor);
400 
401  FreeTensorIfUnused(m_RecurrentToInputWeightsTensor);
402  FreeTensorIfUnused(m_RecurrentToForgetWeightsTensor);
403  FreeTensorIfUnused(m_RecurrentToCellWeightsTensor);
404  FreeTensorIfUnused(m_RecurrentToOutputWeightsTensor);
405 
406  FreeTensorIfUnused(m_CellToInputWeightsTensor);
407  FreeTensorIfUnused(m_CellToForgetWeightsTensor);
408  FreeTensorIfUnused(m_CellToOutputWeightsTensor);
409 
410  FreeTensorIfUnused(m_InputGateBiasTensor);
411  FreeTensorIfUnused(m_ForgetGateBiasTensor);
412  FreeTensorIfUnused(m_CellBiasTensor);
413  FreeTensorIfUnused(m_OutputGateBiasTensor);
414 
415  FreeTensorIfUnused(m_ProjectionWeightsTensor);
416  FreeTensorIfUnused(m_ProjectionBiasTensor);
417 
418  FreeTensorIfUnused(m_InputLayerNormWeightsTensor);
419  FreeTensorIfUnused(m_ForgetLayerNormWeightsTensor);
420  FreeTensorIfUnused(m_CellLayerNormWeightsTensor);
421  FreeTensorIfUnused(m_OutputLayerNormWeightsTensor);
422 }
423 
424 } //namespace armnn
const ConstTensorHandle * m_CellLayerNormWeights
const ConstTensorHandle * m_ProjectionWeights
const TensorInfo * m_InputLayerNormWeights
Definition: LstmParams.hpp:106
#define ARMNN_SCOPED_PROFILING_EVENT_CL_GUID(name, guid)
const TensorInfo & GetRecurrentToCellWeights() const
Definition: LstmParams.hpp:145
const ConstTensorHandle * m_ForgetGateBias
const ConstTensorHandle * m_InputToOutputWeights
const TensorInfo & GetCellBias() const
Definition: LstmParams.hpp:173
const TensorInfo & GetRecurrentToInputWeights() const
Definition: LstmParams.hpp:137
const TensorInfo & GetCellLayerNormWeights() const
Definition: LstmParams.hpp:197
const TensorInfo & GetRecurrentToOutputWeights() const
Definition: LstmParams.hpp:149
bool m_PeepholeEnabled
Enable/disable peephole.
virtual void Execute() const override
float m_HiddenStateScale
Hidden State quantization scale.
const ConstTensorHandle * m_InputToInputWeights
const ConstTensorHandle * m_CellToOutputWeights
float m_OutputIntermediateScale
Output intermediate quantization scale.
const TensorInfo & GetCellToInputWeights() const
Definition: LstmParams.hpp:153
const ConstTensorHandle * m_CellToInputWeights
Copyright (c) 2021 ARM Limited and Contributors.
const TensorInfo & GetCellToForgetWeights() const
Definition: LstmParams.hpp:157
const TensorInfo & GetForgetLayerNormWeights() const
Definition: LstmParams.hpp:193
const TensorInfo & GetCellToOutputWeights() const
Definition: LstmParams.hpp:161
const ConstTensorHandle * m_ForgetLayerNormWeights
const TensorInfo & GetInputToCellWeights() const
Definition: LstmParams.hpp:129
const TensorInfo & GetTensorInfo() const
bool m_LayerNormEnabled
Enable/disable layer normalization.
const TensorInfo & GetInputToOutputWeights() const
Definition: LstmParams.hpp:133
float m_ProjectionClip
Clipping threshold value for the projection.
const ConstTensorHandle * m_InputToForgetWeights
float m_InputIntermediateScale
Input intermediate quantization scale.
const TensorInfo * m_ProjectionBias
Definition: LstmParams.hpp:105
Status
enumeration
Definition: Types.hpp:29
const ConstTensorHandle * m_CellBias
A QLstmDescriptor for the QLstmLayer.
const ConstTensorHandle * m_InputLayerNormWeights
const TensorInfo * m_CellToInputWeights
Definition: LstmParams.hpp:97
const TensorInfo & GetRecurrentToForgetWeights() const
Definition: LstmParams.hpp:141
profiling::ProfilingGuid GetGuid() const final
Definition: Workload.hpp:55
float m_ForgetIntermediateScale
Forget intermediate quantization scale.
const ConstTensorHandle * m_InputToCellWeights
const TensorInfo & GetInputToInputWeights() const
Definition: LstmParams.hpp:121
const TensorInfo & GetOutputLayerNormWeights() const
Definition: LstmParams.hpp:201
float m_CellClip
Clipping threshold value for the cell state.
const ConstTensorHandle * m_CellToForgetWeights
ClQLstmWorkload(const QLstmQueueDescriptor &descriptor, const WorkloadInfo &info, const arm_compute::CLCompileContext &clCompileContext)
const ConstTensorHandle * m_ProjectionBias
const TensorInfo & GetForgetGateBias() const
Definition: LstmParams.hpp:169
std::vector< ITensorHandle * > m_Outputs
const ConstTensorHandle * m_RecurrentToCellWeights
bool m_ProjectionEnabled
Enable/disable the projection layer.
const ConstTensorHandle * m_InputGateBias
#define ARMNN_REPORT_PROFILING_WORKLOAD_DESC(name, desc, infos, guid)
Definition: Profiling.hpp:226
const TensorInfo & GetInputGateBias() const
Definition: LstmParams.hpp:165
const TensorInfo & GetProjectionWeights() const
Definition: LstmParams.hpp:181
const TensorInfo & GetInputToForgetWeights() const
Definition: LstmParams.hpp:125
Contains information about TensorInfos of a layer.
arm_compute::Status ClQLstmWorkloadValidate(const TensorInfo &input, const TensorInfo &cellStateIn, const TensorInfo &outputStateIn, const TensorInfo &cellStateOut, const TensorInfo &outputStateOut, const TensorInfo &output, const QLstmDescriptor &descriptor, const LstmInputParamsInfo &paramsInfo)
const ConstTensorHandle * m_OutputGateBias
void InitializeArmComputeClTensorData(arm_compute::CLTensor &clTensor, const ConstTensorHandle *handle)
const TensorInfo & GetInputLayerNormWeights() const
Definition: LstmParams.hpp:189
std::vector< ITensorHandle * > m_Inputs
const TensorInfo & GetOutputGateBias() const
Definition: LstmParams.hpp:177
const ConstTensorHandle * m_OutputLayerNormWeights
const TensorInfo & GetProjectionBias() const
Definition: LstmParams.hpp:185
float m_CellIntermediateScale
Cell intermediate quantization scale.
const ConstTensorHandle * m_RecurrentToOutputWeights
const ConstTensorHandle * m_RecurrentToInputWeights
bool m_CifgEnabled
Enable/disable CIFG (coupled input & forget gate).
const ConstTensorHandle * m_RecurrentToForgetWeights
int32_t m_HiddenStateZeroPoint
Hidden State zero point.