21 : FloatWorkload<LstmQueueDescriptor>(descriptor,
info)
22{
23
25 descriptor.m_Parameters,
28
29 arm_compute::LSTMParams<arm_compute::ITensor> lstm_param;
30
31
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
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
109 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
133 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();
136
137 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();
140
141
142 const TensorInfo& inputTensorInfo =
info.m_InputTensorInfos[2];
143 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]);
145
146 m_ScratchBuffer = std::make_unique<arm_compute::Tensor>();
147 if (
m_Data.m_Parameters.m_CifgEnabled)
148 {
149
151 BuildArmComputeTensor(*m_ScratchBuffer, scratchBuffer1);
152 }
153 else
154 {
155
157 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
164 arm_compute::ActivationLayerInfo activationLayerInfo =
166
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
178 m_Data.m_InputToForgetWeights);
180 m_Data.m_InputToCellWeights);
182 m_Data.m_InputToOutputWeights);
184 m_Data.m_RecurrentToForgetWeights);
186 m_Data.m_RecurrentToCellWeights);
188 m_Data.m_RecurrentToOutputWeights);
195
196 if (!
m_Data.m_Parameters.m_CifgEnabled)
197 {
199 m_Data.m_InputToInputWeights);
201 m_Data.m_RecurrentToInputWeights);
202 if (
m_Data.m_CellToInputWeights !=
nullptr)
203 {
205 m_Data.m_CellToInputWeights);
206 }
209 }
210
211 if (
m_Data.m_Parameters.m_ProjectionEnabled)
212 {
214 m_Data.m_ProjectionWeights);
215 if (
m_Data.m_ProjectionBias !=
nullptr)
216 {
219 }
220 }
221
222 if (
m_Data.m_Parameters.m_PeepholeEnabled)
223 {
225 m_Data.m_CellToForgetWeights);
227 m_Data.m_CellToOutputWeights);
228 }
229
230 if (
m_Data.m_Parameters.m_LayerNormEnabled)
231 {
232 if (!
m_Data.m_Parameters.m_CifgEnabled)
233 {
235 }
239 }
240
241
242
243 m_LstmLayer.prepare();
244 FreeUnusedTensors();
245}
#define ARMNN_REPORT_PROFILING_WORKLOAD_DESC(name, desc, infos, guid)
arm::pipe::ProfilingGuid GetGuid() const final
arm_compute::ActivationLayerInfo ConvertLstmActivationFuncToAclLayerInfo(uint32_t activationFunction)
void InitializeArmComputeTensorData(arm_compute::Tensor &tensor, TensorInfo tensorInfo, const ITensorHandle *handle)
std::vector< ITensorHandle * > m_Inputs
std::vector< ITensorHandle * > m_Outputs