1*c217d954SCole Faust /*
2*c217d954SCole Faust * Copyright (c) 2019-2021 Arm Limited.
3*c217d954SCole Faust *
4*c217d954SCole Faust * SPDX-License-Identifier: MIT
5*c217d954SCole Faust *
6*c217d954SCole Faust * Permission is hereby granted, free of charge, to any person obtaining a copy
7*c217d954SCole Faust * of this software and associated documentation files (the "Software"), to
8*c217d954SCole Faust * deal in the Software without restriction, including without limitation the
9*c217d954SCole Faust * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10*c217d954SCole Faust * sell copies of the Software, and to permit persons to whom the Software is
11*c217d954SCole Faust * furnished to do so, subject to the following conditions:
12*c217d954SCole Faust *
13*c217d954SCole Faust * The above copyright notice and this permission notice shall be included in all
14*c217d954SCole Faust * copies or substantial portions of the Software.
15*c217d954SCole Faust *
16*c217d954SCole Faust * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17*c217d954SCole Faust * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18*c217d954SCole Faust * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19*c217d954SCole Faust * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20*c217d954SCole Faust * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21*c217d954SCole Faust * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22*c217d954SCole Faust * SOFTWARE.
23*c217d954SCole Faust */
24*c217d954SCole Faust #include "arm_compute/runtime/NEON/functions/NELSTMLayerQuantized.h"
25*c217d954SCole Faust
26*c217d954SCole Faust #include "arm_compute/core/Utils.h"
27*c217d954SCole Faust #include "arm_compute/core/Validate.h"
28*c217d954SCole Faust #include "arm_compute/core/utils/quantization/AsymmHelpers.h"
29*c217d954SCole Faust #include "src/common/utils/Log.h"
30*c217d954SCole Faust #include "src/core/helpers/AutoConfiguration.h"
31*c217d954SCole Faust
32*c217d954SCole Faust #include <cmath>
33*c217d954SCole Faust #include <memory>
34*c217d954SCole Faust #include <tuple>
35*c217d954SCole Faust
36*c217d954SCole Faust namespace arm_compute
37*c217d954SCole Faust {
38*c217d954SCole Faust namespace
39*c217d954SCole Faust {
40*c217d954SCole Faust // Quantization info structures used in the LSTMQuantize layer
41*c217d954SCole Faust const QuantizationInfo qasymm(1.f / 128.f, 128);
42*c217d954SCole Faust const QuantizationInfo qsymm_3(8.f / 32768.f, 0); // qsymm16 with 3 integer bit
43*c217d954SCole Faust const QuantizationInfo qsymm_4(16.f / 32768.f, 0); // qsymm16 with 4 integer bit
44*c217d954SCole Faust const QuantizationInfo qsymm_0(1.f / 32768.f, 0); // qsymm16 with 0 integer bit
45*c217d954SCole Faust } // namespace
46*c217d954SCole Faust NELSTMLayerQuantized::~NELSTMLayerQuantized() = default;
47*c217d954SCole Faust
NELSTMLayerQuantized(std::shared_ptr<IMemoryManager> memory_manager)48*c217d954SCole Faust NELSTMLayerQuantized::NELSTMLayerQuantized(std::shared_ptr<IMemoryManager> memory_manager)
49*c217d954SCole Faust : _memory_group(std::move(memory_manager)), _gemmlowp(), _output_stage(), _transpose_weights(), _concat_input_weights(), _concat_recurrent_weights(), _concat_weights(), _concat_inputs(),
50*c217d954SCole Faust _concat_bias(), _sigmoid_forget_gate(), _sigmoid_input_gate(), _sigmoid_output_gate(), _tanh_modulation_gate(), _tanh_output_state(), _add1(), _add2(), _mul1(), _mul2(), _mul3(),
51*c217d954SCole Faust _slice_input_tensor(), _slice_forget_tensor(), _slice_cell_tensor(), _slice_output_tensor(), _dequantize(), _quantize(), _input_to_input_weights(nullptr), _input_to_forget_weights(nullptr),
52*c217d954SCole Faust _input_to_cell_weights(nullptr), _input_to_output_weights(nullptr), _recurrent_to_input_weights(nullptr), _recurrent_to_forget_weights(nullptr), _recurrent_to_cell_weights(nullptr),
53*c217d954SCole Faust _recurrent_to_output_weights(nullptr), _input_gate_bias(nullptr), _forget_gate_bias(nullptr), _cell_bias(nullptr), _output_gate_bias(nullptr), _recurrent_weights(), _input_weights(), _weights(),
54*c217d954SCole Faust _input(), _weights_transposed(), _output_highp(), _output_lowp(), _bias(), _forget_gate_input(), _input_gate_input(), _output_gate_input(), _input_modulation_gate_input(), _forget_gate_output(),
55*c217d954SCole Faust _input_gate_output(), _output_gate_output(), _input_modulation_gate_output(), _cell_state1(), _cell_state2(), _output_state_tmp(), _output_state_out_symm(), _output_state_out_f32(),
56*c217d954SCole Faust _is_prepared(false)
57*c217d954SCole Faust {
58*c217d954SCole Faust }
59*c217d954SCole Faust
configure(const ITensor * input,const ITensor * input_to_input_weights,const ITensor * input_to_forget_weights,const ITensor * input_to_cell_weights,const ITensor * input_to_output_weights,const ITensor * recurrent_to_input_weights,const ITensor * recurrent_to_forget_weights,const ITensor * recurrent_to_cell_weights,const ITensor * recurrent_to_output_weights,const ITensor * input_gate_bias,const ITensor * forget_gate_bias,const ITensor * cell_bias,const ITensor * output_gate_bias,ITensor * cell_state_in,const ITensor * output_state_in,ITensor * cell_state_out,ITensor * output_state_out)60*c217d954SCole Faust void NELSTMLayerQuantized::configure(const ITensor *input,
61*c217d954SCole Faust const ITensor *input_to_input_weights, const ITensor *input_to_forget_weights, const ITensor *input_to_cell_weights, const ITensor *input_to_output_weights,
62*c217d954SCole Faust const ITensor *recurrent_to_input_weights, const ITensor *recurrent_to_forget_weights, const ITensor *recurrent_to_cell_weights, const ITensor *recurrent_to_output_weights,
63*c217d954SCole Faust const ITensor *input_gate_bias, const ITensor *forget_gate_bias, const ITensor *cell_bias, const ITensor *output_gate_bias,
64*c217d954SCole Faust ITensor *cell_state_in, const ITensor *output_state_in,
65*c217d954SCole Faust ITensor *cell_state_out, ITensor *output_state_out)
66*c217d954SCole Faust {
67*c217d954SCole Faust ARM_COMPUTE_ERROR_ON_NULLPTR(input, input_to_input_weights, input_to_forget_weights, input_to_cell_weights, input_to_output_weights,
68*c217d954SCole Faust recurrent_to_input_weights, recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights,
69*c217d954SCole Faust input_gate_bias, forget_gate_bias, cell_bias, output_gate_bias, cell_state_in, output_state_in, cell_state_out, output_state_out);
70*c217d954SCole Faust
71*c217d954SCole Faust ARM_COMPUTE_ERROR_THROW_ON(NELSTMLayerQuantized::validate(input->info(), input_to_input_weights->info(), input_to_forget_weights->info(), input_to_cell_weights->info(),
72*c217d954SCole Faust input_to_output_weights->info(),
73*c217d954SCole Faust recurrent_to_input_weights->info(), recurrent_to_forget_weights->info(), recurrent_to_cell_weights->info(), recurrent_to_output_weights->info(),
74*c217d954SCole Faust input_gate_bias->info(), forget_gate_bias->info(), cell_bias->info(), output_gate_bias->info(), cell_state_in->info(), output_state_in->info(), cell_state_out->info(), output_state_out->info()));
75*c217d954SCole Faust
76*c217d954SCole Faust ARM_COMPUTE_LOG_PARAMS(input, input_to_input_weights, input_to_forget_weights, input_to_cell_weights, input_to_output_weights,
77*c217d954SCole Faust recurrent_to_input_weights, recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights,
78*c217d954SCole Faust input_gate_bias, forget_gate_bias, cell_bias, output_gate_bias, cell_state_in, output_state_in, cell_state_out, output_state_out);
79*c217d954SCole Faust
80*c217d954SCole Faust const int input_size = input->info()->dimension(0);
81*c217d954SCole Faust const int batch_size = input->info()->dimension(1);
82*c217d954SCole Faust const int output_size = input_to_input_weights->info()->dimension(1);
83*c217d954SCole Faust
84*c217d954SCole Faust const QuantizationInfo qweights = input_to_input_weights->info()->quantization_info(); // Weights quantization
85*c217d954SCole Faust
86*c217d954SCole Faust auto_init_if_empty(*cell_state_out->info(), TensorInfo(TensorShape(batch_size, output_size), 1, DataType::QSYMM16, qsymm_4));
87*c217d954SCole Faust auto_init_if_empty(*output_state_out->info(), TensorInfo(TensorShape(batch_size, output_size), 1, DataType::QASYMM8, qasymm));
88*c217d954SCole Faust
89*c217d954SCole Faust _input_to_input_weights = input_to_input_weights;
90*c217d954SCole Faust _input_to_forget_weights = input_to_forget_weights;
91*c217d954SCole Faust _input_to_cell_weights = input_to_cell_weights;
92*c217d954SCole Faust _input_to_output_weights = input_to_output_weights;
93*c217d954SCole Faust _recurrent_to_input_weights = recurrent_to_input_weights;
94*c217d954SCole Faust _recurrent_to_forget_weights = recurrent_to_forget_weights;
95*c217d954SCole Faust _recurrent_to_cell_weights = recurrent_to_cell_weights;
96*c217d954SCole Faust _recurrent_to_output_weights = recurrent_to_output_weights;
97*c217d954SCole Faust _input_gate_bias = input_gate_bias;
98*c217d954SCole Faust _forget_gate_bias = forget_gate_bias;
99*c217d954SCole Faust _cell_bias = cell_bias;
100*c217d954SCole Faust _output_gate_bias = output_gate_bias;
101*c217d954SCole Faust
102*c217d954SCole Faust // Weights concatenation
103*c217d954SCole Faust std::vector<const ITensor *> inputs_weights_vector{ input_to_input_weights, input_to_forget_weights, input_to_cell_weights, input_to_output_weights };
104*c217d954SCole Faust std::vector<const ITensor *> recurrent_weights_vector{ recurrent_to_input_weights, recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights };
105*c217d954SCole Faust
106*c217d954SCole Faust _input_weights.allocator()->init(TensorInfo(TensorShape(input_size, 4 * output_size), 1, DataType::QASYMM8, qweights));
107*c217d954SCole Faust _concat_input_weights.configure(inputs_weights_vector, &_input_weights, Window::DimY);
108*c217d954SCole Faust
109*c217d954SCole Faust _recurrent_weights.allocator()->init(TensorInfo(TensorShape(output_size, 4 * output_size), 1, DataType::QASYMM8, qweights));
110*c217d954SCole Faust _concat_recurrent_weights.configure(recurrent_weights_vector, &_recurrent_weights, Window::DimY);
111*c217d954SCole Faust
112*c217d954SCole Faust std::vector<const ITensor *> weights_vector{ &_recurrent_weights, &_input_weights };
113*c217d954SCole Faust _weights.allocator()->init(TensorInfo(TensorShape(output_size + input_size, 4 * output_size), 1, DataType::QASYMM8, qweights));
114*c217d954SCole Faust _concat_weights.configure(weights_vector, &_weights, Window::DimX);
115*c217d954SCole Faust _transpose_weights.configure(&_weights, &_weights_transposed);
116*c217d954SCole Faust
117*c217d954SCole Faust // Input concatenation
118*c217d954SCole Faust std::vector<const ITensor *> input_vector{ input, output_state_in };
119*c217d954SCole Faust _memory_group.manage(&_input);
120*c217d954SCole Faust _input.allocator()->init(TensorInfo(TensorShape(output_size + input_size, batch_size), 1, DataType::QASYMM8, qasymm));
121*c217d954SCole Faust _concat_inputs.configure(input_vector, &_input, Window::DimX);
122*c217d954SCole Faust
123*c217d954SCole Faust // Bias concatenation
124*c217d954SCole Faust std::vector<const ITensor *> bias_vector{ input_gate_bias, forget_gate_bias, cell_bias, output_gate_bias };
125*c217d954SCole Faust _bias.allocator()->init(TensorInfo(TensorShape(4 * output_size), 1, DataType::S32));
126*c217d954SCole Faust _concat_bias.configure(bias_vector, &_bias, Window::DimX);
127*c217d954SCole Faust
128*c217d954SCole Faust // Invert the offset for gemmlowp
129*c217d954SCole Faust _input.info()->set_quantization_info(QuantizationInfo(qasymm.uniform().scale, -qasymm.uniform().offset));
130*c217d954SCole Faust _weights_transposed.info()->set_quantization_info(QuantizationInfo(qweights.uniform().scale, -qweights.uniform().offset));
131*c217d954SCole Faust
132*c217d954SCole Faust // Run gemmlowp
133*c217d954SCole Faust _memory_group.manage(&_output_highp);
134*c217d954SCole Faust _output_highp.allocator()->init(TensorInfo(TensorShape(4 * output_size, batch_size), 1, DataType::S32));
135*c217d954SCole Faust _gemmlowp.configure(&_input, &_weights_transposed, nullptr, &_output_highp);
136*c217d954SCole Faust _input.allocator()->allocate();
137*c217d954SCole Faust
138*c217d954SCole Faust // Set the offset back
139*c217d954SCole Faust _input.info()->set_quantization_info(QuantizationInfo(qasymm.uniform().scale, qasymm.uniform().offset));
140*c217d954SCole Faust _weights_transposed.info()->set_quantization_info(QuantizationInfo(qweights.uniform().scale, qweights.uniform().offset));
141*c217d954SCole Faust
142*c217d954SCole Faust // multiplier = (input_scale * weights_scale) / output_scale (2 ^ (-12))
143*c217d954SCole Faust _output_lowp.allocator()->init(TensorInfo(_output_highp.info()->tensor_shape(), 1, DataType::QSYMM16, qsymm_3));
144*c217d954SCole Faust
145*c217d954SCole Faust const float multiplier = 4096.f * qasymm.uniform().scale * qweights.uniform().scale;
146*c217d954SCole Faust int32_t output_multiplier = 0;
147*c217d954SCole Faust int32_t output_shift = 0;
148*c217d954SCole Faust quantization::calculate_quantized_multiplier(multiplier, &output_multiplier, &output_shift);
149*c217d954SCole Faust
150*c217d954SCole Faust _memory_group.manage(&_output_lowp);
151*c217d954SCole Faust
152*c217d954SCole Faust GEMMLowpOutputStageInfo info;
153*c217d954SCole Faust info.type = GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT;
154*c217d954SCole Faust info.gemmlowp_multiplier = output_multiplier;
155*c217d954SCole Faust info.gemmlowp_shift = output_shift;
156*c217d954SCole Faust info.output_data_type = DataType::QSYMM16;
157*c217d954SCole Faust _output_stage.configure(&_output_highp, &_bias, &_output_lowp, info);
158*c217d954SCole Faust _output_highp.allocator()->allocate();
159*c217d954SCole Faust _bias.allocator()->allocate();
160*c217d954SCole Faust
161*c217d954SCole Faust // Get the gate tensors
162*c217d954SCole Faust if(batch_size > 1)
163*c217d954SCole Faust {
164*c217d954SCole Faust _memory_group.manage(&_input_gate_input);
165*c217d954SCole Faust _slice_input_tensor.configure(&_output_lowp, &_input_gate_input, { 0, 0 }, { output_size, batch_size });
166*c217d954SCole Faust _memory_group.manage(&_forget_gate_input);
167*c217d954SCole Faust _slice_forget_tensor.configure(&_output_lowp, &_forget_gate_input, { output_size, 0 }, { 2 * output_size, batch_size });
168*c217d954SCole Faust _memory_group.manage(&_input_modulation_gate_input);
169*c217d954SCole Faust _slice_cell_tensor.configure(&_output_lowp, &_input_modulation_gate_input, { 2 * output_size, 0 }, { 3 * output_size, batch_size });
170*c217d954SCole Faust _memory_group.manage(&_output_gate_input);
171*c217d954SCole Faust _slice_output_tensor.configure(&_output_lowp, &_output_gate_input, { 3 * output_size, 0 }, { 4 * output_size, batch_size });
172*c217d954SCole Faust _output_lowp.allocator()->allocate();
173*c217d954SCole Faust }
174*c217d954SCole Faust else
175*c217d954SCole Faust {
176*c217d954SCole Faust _memory_group.manage(&_input_gate_input);
177*c217d954SCole Faust _slice_input_tensor.configure(&_output_lowp, &_input_gate_input, { 0 }, { output_size });
178*c217d954SCole Faust _memory_group.manage(&_forget_gate_input);
179*c217d954SCole Faust _slice_forget_tensor.configure(&_output_lowp, &_forget_gate_input, { output_size }, { 2 * output_size });
180*c217d954SCole Faust _memory_group.manage(&_input_modulation_gate_input);
181*c217d954SCole Faust _slice_cell_tensor.configure(&_output_lowp, &_input_modulation_gate_input, { 2 * output_size }, { 3 * output_size });
182*c217d954SCole Faust _memory_group.manage(&_output_gate_input);
183*c217d954SCole Faust _slice_output_tensor.configure(&_output_lowp, &_output_gate_input, { 3 * output_size }, { 4 * output_size });
184*c217d954SCole Faust _output_lowp.allocator()->allocate();
185*c217d954SCole Faust }
186*c217d954SCole Faust
187*c217d954SCole Faust // Forget gate
188*c217d954SCole Faust _memory_group.manage(&_forget_gate_output);
189*c217d954SCole Faust _forget_gate_output.allocator()->init(TensorInfo(_forget_gate_input.info()->tensor_shape(), 1, DataType::QSYMM16, qsymm_0));
190*c217d954SCole Faust _sigmoid_forget_gate.configure(&_forget_gate_input, &_forget_gate_output, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
191*c217d954SCole Faust _forget_gate_input.allocator()->allocate();
192*c217d954SCole Faust
193*c217d954SCole Faust // Input gate
194*c217d954SCole Faust _memory_group.manage(&_input_gate_output);
195*c217d954SCole Faust _input_gate_output.allocator()->init(TensorInfo(_input_gate_input.info()->tensor_shape(), 1, DataType::QSYMM16, qsymm_0));
196*c217d954SCole Faust _sigmoid_input_gate.configure(&_input_gate_input, &_input_gate_output, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
197*c217d954SCole Faust _input_gate_input.allocator()->allocate();
198*c217d954SCole Faust
199*c217d954SCole Faust // Input modulation gate equation
200*c217d954SCole Faust _memory_group.manage(&_input_modulation_gate_output);
201*c217d954SCole Faust _input_modulation_gate_output.allocator()->init(TensorInfo(_input_modulation_gate_input.info()->tensor_shape(), 1, DataType::QSYMM16, qsymm_0));
202*c217d954SCole Faust _tanh_modulation_gate.configure(&_input_modulation_gate_input, &_input_modulation_gate_output, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH, 1.0f, 1.0f));
203*c217d954SCole Faust _input_modulation_gate_input.allocator()->allocate();
204*c217d954SCole Faust
205*c217d954SCole Faust // Output gate
206*c217d954SCole Faust _memory_group.manage(&_output_gate_output);
207*c217d954SCole Faust _output_gate_output.allocator()->init(TensorInfo(_output_gate_input.info()->tensor_shape(), 1, DataType::QSYMM16, qsymm_0));
208*c217d954SCole Faust _sigmoid_output_gate.configure(&_output_gate_input, &_output_gate_output, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
209*c217d954SCole Faust _output_gate_input.allocator()->allocate();
210*c217d954SCole Faust
211*c217d954SCole Faust // Long term memory
212*c217d954SCole Faust _memory_group.manage(&_cell_state1);
213*c217d954SCole Faust _cell_state1.allocator()->init(TensorInfo(_forget_gate_output.info()->tensor_shape(), 1, DataType::QSYMM16, qsymm_4));
214*c217d954SCole Faust _mul1.configure(&_forget_gate_output, cell_state_in, &_cell_state1, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
215*c217d954SCole Faust _forget_gate_output.allocator()->allocate();
216*c217d954SCole Faust
217*c217d954SCole Faust _memory_group.manage(&_cell_state2);
218*c217d954SCole Faust _cell_state2.allocator()->init(TensorInfo(_input_gate_output.info()->tensor_shape(), 1, DataType::QSYMM16, qsymm_4));
219*c217d954SCole Faust _mul2.configure(&_input_gate_output, &_input_modulation_gate_output, &_cell_state2, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
220*c217d954SCole Faust _input_modulation_gate_output.allocator()->allocate();
221*c217d954SCole Faust _input_gate_output.allocator()->allocate();
222*c217d954SCole Faust
223*c217d954SCole Faust _add1.configure(&_cell_state1, &_cell_state2, cell_state_out, ConvertPolicy::SATURATE);
224*c217d954SCole Faust _cell_state1.allocator()->allocate();
225*c217d954SCole Faust _cell_state2.allocator()->allocate();
226*c217d954SCole Faust
227*c217d954SCole Faust // Short term memory
228*c217d954SCole Faust _memory_group.manage(&_output_state_tmp);
229*c217d954SCole Faust _output_state_tmp.allocator()->init(TensorInfo(cell_state_out->info()->tensor_shape(), 1, DataType::QSYMM16, qsymm_0));
230*c217d954SCole Faust _tanh_output_state.configure(cell_state_out, &_output_state_tmp, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH, 1.0f, 1.0f));
231*c217d954SCole Faust
232*c217d954SCole Faust _memory_group.manage(&_output_state_out_symm);
233*c217d954SCole Faust _output_state_out_symm.allocator()->init(TensorInfo(_output_gate_output.info()->tensor_shape(), 1, DataType::QSYMM16, qsymm_0));
234*c217d954SCole Faust _mul3.configure(&_output_state_tmp, &_output_gate_output, &_output_state_out_symm, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
235*c217d954SCole Faust _output_gate_output.allocator()->allocate();
236*c217d954SCole Faust _output_state_tmp.allocator()->allocate();
237*c217d954SCole Faust
238*c217d954SCole Faust // Requantize the output state from QSYMM16 to QASYMM8
239*c217d954SCole Faust _memory_group.manage(&_output_state_out_f32);
240*c217d954SCole Faust _output_state_out_f32.allocator()->init(TensorInfo(_output_state_out_symm.info()->tensor_shape(), 1, DataType::F32));
241*c217d954SCole Faust _dequantize.configure(&_output_state_out_symm, &_output_state_out_f32);
242*c217d954SCole Faust _output_state_out_symm.allocator()->allocate();
243*c217d954SCole Faust
244*c217d954SCole Faust _quantize.configure(&_output_state_out_f32, output_state_out);
245*c217d954SCole Faust _output_state_out_f32.allocator()->allocate();
246*c217d954SCole Faust }
247*c217d954SCole Faust
validate(const ITensorInfo * input,const ITensorInfo * input_to_input_weights,const ITensorInfo * input_to_forget_weights,const ITensorInfo * input_to_cell_weights,const ITensorInfo * input_to_output_weights,const ITensorInfo * recurrent_to_input_weights,const ITensorInfo * recurrent_to_forget_weights,const ITensorInfo * recurrent_to_cell_weights,const ITensorInfo * recurrent_to_output_weights,const ITensorInfo * input_gate_bias,const ITensorInfo * forget_gate_bias,const ITensorInfo * cell_bias,const ITensorInfo * output_gate_bias,const ITensorInfo * cell_state_in,const ITensorInfo * output_state_in,const ITensorInfo * cell_state_out,const ITensorInfo * output_state_out)248*c217d954SCole Faust Status NELSTMLayerQuantized::validate(const ITensorInfo *input,
249*c217d954SCole Faust const ITensorInfo *input_to_input_weights, const ITensorInfo *input_to_forget_weights, const ITensorInfo *input_to_cell_weights, const ITensorInfo *input_to_output_weights,
250*c217d954SCole Faust const ITensorInfo *recurrent_to_input_weights, const ITensorInfo *recurrent_to_forget_weights, const ITensorInfo *recurrent_to_cell_weights, const ITensorInfo *recurrent_to_output_weights,
251*c217d954SCole Faust const ITensorInfo *input_gate_bias, const ITensorInfo *forget_gate_bias, const ITensorInfo *cell_bias, const ITensorInfo *output_gate_bias,
252*c217d954SCole Faust const ITensorInfo *cell_state_in, const ITensorInfo *output_state_in,
253*c217d954SCole Faust const ITensorInfo *cell_state_out, const ITensorInfo *output_state_out)
254*c217d954SCole Faust {
255*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, input_to_input_weights, input_to_forget_weights, input_to_cell_weights, input_to_output_weights, recurrent_to_input_weights,
256*c217d954SCole Faust recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights, input_gate_bias, forget_gate_bias, cell_bias, output_gate_bias, cell_state_in,
257*c217d954SCole Faust output_state_in, cell_state_out, output_state_out);
258*c217d954SCole Faust
259*c217d954SCole Faust const int input_size = input->dimension(0);
260*c217d954SCole Faust const int batch_size = input->dimension(1);
261*c217d954SCole Faust const int output_size = input_to_input_weights->dimension(1);
262*c217d954SCole Faust
263*c217d954SCole Faust // Dimensionality checks
264*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 2);
265*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON(input_to_input_weights->num_dimensions() > 2);
266*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON(input_gate_bias->num_dimensions() > 1);
267*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON(output_state_in->num_dimensions() > 2);
268*c217d954SCole Faust
269*c217d954SCole Faust TensorInfo input_weights_info(input_to_input_weights->clone()->set_tensor_shape(TensorShape(input_size, output_size)).set_data_type(DataType::QASYMM8));
270*c217d954SCole Faust TensorInfo recurrent_weights_info(input_to_input_weights->clone()->set_tensor_shape(TensorShape(output_size, output_size)).set_data_type(DataType::QASYMM8));
271*c217d954SCole Faust TensorInfo bias_info(input_gate_bias->clone()->set_tensor_shape(TensorShape(output_size)).set_data_type(DataType::S32));
272*c217d954SCole Faust TensorInfo output_state_info(cell_state_in->clone()->set_tensor_shape(TensorShape(output_size, batch_size)).set_data_type(DataType::QASYMM8).set_quantization_info(qasymm));
273*c217d954SCole Faust TensorInfo cell_state_info(cell_state_in->clone()->set_tensor_shape(TensorShape(output_size, batch_size)).set_data_type(DataType::QSYMM16).set_quantization_info(qsymm_4));
274*c217d954SCole Faust
275*c217d954SCole Faust // Shape checks
276*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&input_weights_info, input_to_input_weights, input_to_forget_weights, input_to_cell_weights, input_to_output_weights);
277*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&recurrent_weights_info, recurrent_to_input_weights, recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights);
278*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&bias_info, input_gate_bias, forget_gate_bias, cell_bias, output_gate_bias);
279*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&cell_state_info, cell_state_in);
280*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&output_state_info, output_state_in);
281*c217d954SCole Faust
282*c217d954SCole Faust // Data type checks
283*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&input_weights_info, input, input_to_input_weights, input_to_forget_weights, input_to_cell_weights, input_to_output_weights);
284*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(recurrent_to_input_weights, recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights);
285*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&bias_info, input_gate_bias, forget_gate_bias, cell_bias, output_gate_bias);
286*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&cell_state_info, cell_state_in);
287*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&output_state_info, output_state_in);
288*c217d954SCole Faust
289*c217d954SCole Faust // Quantization checks
290*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(&input_weights_info, input_to_input_weights, input_to_forget_weights, input_to_cell_weights, input_to_output_weights);
291*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(recurrent_to_input_weights, recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights);
292*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(&cell_state_info, cell_state_in);
293*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(&output_state_info, output_state_in);
294*c217d954SCole Faust
295*c217d954SCole Faust // Validate internal functions
296*c217d954SCole Faust // _concat_input_weights
297*c217d954SCole Faust std::vector<const ITensorInfo *> inputs_weights_vector;
298*c217d954SCole Faust inputs_weights_vector.emplace_back(input_to_input_weights);
299*c217d954SCole Faust inputs_weights_vector.emplace_back(input_to_forget_weights);
300*c217d954SCole Faust inputs_weights_vector.emplace_back(input_to_cell_weights);
301*c217d954SCole Faust inputs_weights_vector.emplace_back(input_to_output_weights);
302*c217d954SCole Faust const QuantizationInfo qweights = input_to_input_weights->quantization_info(); // Weights quantization
303*c217d954SCole Faust const TensorInfo input_weights(TensorShape(input_size, 4 * output_size), 1, DataType::QASYMM8, qweights);
304*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEConcatenateLayer::validate(inputs_weights_vector, &input_weights, Window::DimY));
305*c217d954SCole Faust
306*c217d954SCole Faust // _concat_recurrent_weights
307*c217d954SCole Faust std::vector<const ITensorInfo *> recurrent_weights_vector;
308*c217d954SCole Faust recurrent_weights_vector.emplace_back(recurrent_to_input_weights);
309*c217d954SCole Faust recurrent_weights_vector.emplace_back(recurrent_to_forget_weights);
310*c217d954SCole Faust recurrent_weights_vector.emplace_back(recurrent_to_cell_weights);
311*c217d954SCole Faust recurrent_weights_vector.emplace_back(recurrent_to_output_weights);
312*c217d954SCole Faust const TensorInfo recurrent_weights(TensorShape(output_size, 4 * output_size), 1, DataType::QASYMM8, qweights);
313*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEConcatenateLayer::validate(recurrent_weights_vector, &recurrent_weights, Window::DimY));
314*c217d954SCole Faust
315*c217d954SCole Faust // _concat_weights
316*c217d954SCole Faust std::vector<const ITensorInfo *> weights_vector;
317*c217d954SCole Faust weights_vector.emplace_back(&recurrent_weights);
318*c217d954SCole Faust weights_vector.emplace_back(&input_weights);
319*c217d954SCole Faust const TensorInfo weights(TensorShape(input_size + output_size, 4 * output_size), 1, DataType::QASYMM8, qweights);
320*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEConcatenateLayer::validate(weights_vector, &weights, Window::DimX));
321*c217d954SCole Faust // _transpose_weights
322*c217d954SCole Faust const TensorShape weights_transposed_shape(weights.tensor_shape()[1], weights.tensor_shape()[0]);
323*c217d954SCole Faust TensorInfo weights_transposed = weights.clone()->set_is_resizable(true).set_tensor_shape(weights_transposed_shape);
324*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NETranspose::validate(&weights, &weights_transposed));
325*c217d954SCole Faust
326*c217d954SCole Faust // _concat_inputs
327*c217d954SCole Faust std::vector<const ITensorInfo *> input_vector;
328*c217d954SCole Faust input_vector.emplace_back(input);
329*c217d954SCole Faust input_vector.emplace_back(output_state_in);
330*c217d954SCole Faust TensorInfo input_concatenated(TensorShape(output_size + input_size, batch_size), 1, DataType::QASYMM8, qasymm);
331*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEConcatenateLayer::validate(input_vector, &input_concatenated, Window::DimX));
332*c217d954SCole Faust
333*c217d954SCole Faust // _concat_bias
334*c217d954SCole Faust std::vector<const ITensorInfo *> bias_vector;
335*c217d954SCole Faust bias_vector.emplace_back(input_gate_bias);
336*c217d954SCole Faust bias_vector.emplace_back(forget_gate_bias);
337*c217d954SCole Faust bias_vector.emplace_back(cell_bias);
338*c217d954SCole Faust bias_vector.emplace_back(output_gate_bias);
339*c217d954SCole Faust
340*c217d954SCole Faust const TensorInfo bias_concatenated(TensorShape(4 * output_size), 1, DataType::S32);
341*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEConcatenateLayer::validate(bias_vector, &bias_concatenated, Window::DimX));
342*c217d954SCole Faust
343*c217d954SCole Faust // Invert the offset for gemmlowp
344*c217d954SCole Faust input_concatenated.set_quantization_info(QuantizationInfo(qasymm.uniform().scale, -qasymm.uniform().offset));
345*c217d954SCole Faust weights_transposed.set_quantization_info(QuantizationInfo(qweights.uniform().scale, -qweights.uniform().offset));
346*c217d954SCole Faust
347*c217d954SCole Faust // _gemmlowp
348*c217d954SCole Faust const TensorInfo output_highp(TensorShape(4 * output_size, batch_size), 1, DataType::S32);
349*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixMultiplyCore::validate(&input_concatenated, &weights_transposed, nullptr, &output_highp));
350*c217d954SCole Faust
351*c217d954SCole Faust // Set the offset back
352*c217d954SCole Faust input_concatenated.set_quantization_info(QuantizationInfo(qasymm.uniform().scale, qasymm.uniform().offset));
353*c217d954SCole Faust weights_transposed.set_quantization_info(QuantizationInfo(qweights.uniform().scale, qweights.uniform().offset));
354*c217d954SCole Faust
355*c217d954SCole Faust const TensorInfo output_lowp(output_highp.tensor_shape(), 1, DataType::QSYMM16, qsymm_3);
356*c217d954SCole Faust
357*c217d954SCole Faust const float multiplier = 4096.f * qasymm.uniform().scale * qweights.uniform().scale;
358*c217d954SCole Faust int32_t output_multiplier = 0;
359*c217d954SCole Faust int32_t output_shift = 0;
360*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(quantization::calculate_quantized_multiplier(multiplier, &output_multiplier, &output_shift));
361*c217d954SCole Faust
362*c217d954SCole Faust // _output_stage
363*c217d954SCole Faust GEMMLowpOutputStageInfo info;
364*c217d954SCole Faust info.type = GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT;
365*c217d954SCole Faust info.gemmlowp_multiplier = output_multiplier;
366*c217d954SCole Faust info.gemmlowp_shift = output_shift;
367*c217d954SCole Faust info.output_data_type = DataType::QSYMM16;
368*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpOutputStage::validate(&output_highp, &bias_concatenated, &output_lowp, info));
369*c217d954SCole Faust
370*c217d954SCole Faust TensorInfo input_gate_input;
371*c217d954SCole Faust TensorInfo forget_gate_input;
372*c217d954SCole Faust TensorInfo input_modulation_gate_input;
373*c217d954SCole Faust TensorInfo output_gate_input;
374*c217d954SCole Faust
375*c217d954SCole Faust if(batch_size > 1)
376*c217d954SCole Faust {
377*c217d954SCole Faust // _slice_input_tensor
378*c217d954SCole Faust input_gate_input = TensorInfo(TensorShape(output_size, batch_size), 1, DataType::QSYMM16, qsymm_3);
379*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NESlice::validate(&output_lowp, &input_gate_input, { 0, 0 }, { output_size, batch_size }));
380*c217d954SCole Faust // _slice_forget_tensor
381*c217d954SCole Faust forget_gate_input = TensorInfo(TensorShape(output_size, batch_size), 1, DataType::QSYMM16, qsymm_3);
382*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NESlice::validate(&output_lowp, &forget_gate_input, { output_size, 0 }, { 2 * output_size, batch_size }));
383*c217d954SCole Faust // _slice_cell_tensor
384*c217d954SCole Faust input_modulation_gate_input = TensorInfo(TensorShape(output_size, batch_size), 1, DataType::QSYMM16, qsymm_3);
385*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NESlice::validate(&output_lowp, &input_modulation_gate_input, { 2 * output_size, 0 }, { 3 * output_size, batch_size }));
386*c217d954SCole Faust // _slice_output_tensor
387*c217d954SCole Faust output_gate_input = TensorInfo(TensorShape(output_size, batch_size), 1, DataType::QSYMM16, qsymm_3);
388*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NESlice::validate(&output_lowp, &output_gate_input, { 3 * output_size, 0 }, { 4 * output_size, batch_size }));
389*c217d954SCole Faust }
390*c217d954SCole Faust else
391*c217d954SCole Faust {
392*c217d954SCole Faust // _slice_input_tensor
393*c217d954SCole Faust input_gate_input = TensorInfo(TensorShape(output_size), 1, DataType::QSYMM16, qsymm_3);
394*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NESlice::validate(&output_lowp, &input_gate_input, { 0 }, { output_size }));
395*c217d954SCole Faust // _slice_forget_tensor
396*c217d954SCole Faust forget_gate_input = TensorInfo(TensorShape(output_size), 1, DataType::QSYMM16, qsymm_3);
397*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NESlice::validate(&output_lowp, &forget_gate_input, { output_size }, { 2 * output_size }));
398*c217d954SCole Faust // _slice_cell_tensor
399*c217d954SCole Faust input_modulation_gate_input = TensorInfo(TensorShape(output_size), 1, DataType::QSYMM16, qsymm_3);
400*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NESlice::validate(&output_lowp, &input_modulation_gate_input, { 2 * output_size }, { 3 * output_size }));
401*c217d954SCole Faust // _slice_output_tensor
402*c217d954SCole Faust output_gate_input = TensorInfo(TensorShape(output_size), 1, DataType::QSYMM16, qsymm_3);
403*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NESlice::validate(&output_lowp, &output_gate_input, { 3 * output_size }, { 4 * output_size }));
404*c217d954SCole Faust }
405*c217d954SCole Faust
406*c217d954SCole Faust // _sigmoid_forget_gate
407*c217d954SCole Faust const TensorInfo forget_gate_output(forget_gate_input.tensor_shape(), 1, DataType::QSYMM16, qsymm_0);
408*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&forget_gate_input, &forget_gate_output, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC)));
409*c217d954SCole Faust // _sigmoid_input_gate
410*c217d954SCole Faust const TensorInfo input_gate_output(input_gate_input.tensor_shape(), 1, DataType::QSYMM16, qsymm_0);
411*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&input_gate_input, &input_gate_output, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC)));
412*c217d954SCole Faust // _tanh_modulation_gate
413*c217d954SCole Faust const TensorInfo input_modulation_gate_output(input_modulation_gate_input.tensor_shape(), 1, DataType::QSYMM16, qsymm_0);
414*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&input_modulation_gate_input, &input_modulation_gate_output, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH, 1.0f, 1.0f)));
415*c217d954SCole Faust // _sigmoid_output_gate
416*c217d954SCole Faust const TensorInfo output_gate_output(output_gate_input.tensor_shape(), 1, DataType::QSYMM16, qsymm_0);
417*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&output_gate_input, &output_gate_output, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC)));
418*c217d954SCole Faust
419*c217d954SCole Faust // _mul_forget_gate_cell_state
420*c217d954SCole Faust const TensorInfo cell_state_tmp1(forget_gate_output.tensor_shape(), 1, DataType::QSYMM16, qsymm_4);
421*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&forget_gate_output, cell_state_in, &cell_state_tmp1, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO));
422*c217d954SCole Faust
423*c217d954SCole Faust // _mul_input_gate_input_mod_gate
424*c217d954SCole Faust const TensorInfo cell_state_tmp2(input_gate_output.tensor_shape(), 1, DataType::QSYMM16, qsymm_4);
425*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&input_gate_output, &input_modulation_gate_output, &cell_state_tmp2, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO));
426*c217d954SCole Faust
427*c217d954SCole Faust // _add_cell_state_tmps
428*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&cell_state_tmp1, &cell_state_tmp2, cell_state_out, ConvertPolicy::SATURATE));
429*c217d954SCole Faust
430*c217d954SCole Faust // _tanh_modulation_gate
431*c217d954SCole Faust const TensorInfo output_state_tmp(cell_state_out->tensor_shape(), 1, DataType::QSYMM16, qsymm_0);
432*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(cell_state_out, &output_state_tmp, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH, 1.0f, 1.0f)));
433*c217d954SCole Faust
434*c217d954SCole Faust // _mul_output_state_tmp_output_gate
435*c217d954SCole Faust const TensorInfo output_state_out_symm(output_gate_output.tensor_shape(), 1, DataType::QSYMM16, qsymm_0);
436*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&output_state_tmp, &output_gate_output, &output_state_out_symm, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO));
437*c217d954SCole Faust
438*c217d954SCole Faust // _dequantize
439*c217d954SCole Faust const TensorInfo output_state_out_f32(output_state_out_symm.tensor_shape(), 1, DataType::F32);
440*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEDequantizationLayer::validate(&output_state_out_symm, &output_state_out_f32));
441*c217d954SCole Faust
442*c217d954SCole Faust // _quantize
443*c217d954SCole Faust ARM_COMPUTE_RETURN_ON_ERROR(NEQuantizationLayer::validate(&output_state_out_f32, output_state_out));
444*c217d954SCole Faust
445*c217d954SCole Faust if(cell_state_out->total_size() != 0)
446*c217d954SCole Faust {
447*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&cell_state_info, cell_state_out);
448*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&cell_state_info, cell_state_out);
449*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(&cell_state_info, cell_state_out);
450*c217d954SCole Faust }
451*c217d954SCole Faust
452*c217d954SCole Faust if(output_state_out->total_size() != 0)
453*c217d954SCole Faust {
454*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&output_state_info, output_state_out);
455*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&output_state_info, output_state_out);
456*c217d954SCole Faust ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(&output_state_info, output_state_out);
457*c217d954SCole Faust }
458*c217d954SCole Faust
459*c217d954SCole Faust return Status{};
460*c217d954SCole Faust }
461*c217d954SCole Faust
run()462*c217d954SCole Faust void NELSTMLayerQuantized::run()
463*c217d954SCole Faust {
464*c217d954SCole Faust prepare();
465*c217d954SCole Faust
466*c217d954SCole Faust // Acquire all the temporaries
467*c217d954SCole Faust MemoryGroupResourceScope scope_mg(_memory_group);
468*c217d954SCole Faust
469*c217d954SCole Faust // Concat and transpose the input
470*c217d954SCole Faust _concat_inputs.run();
471*c217d954SCole Faust
472*c217d954SCole Faust // Run gemmlowp
473*c217d954SCole Faust _gemmlowp.run();
474*c217d954SCole Faust _output_stage.run();
475*c217d954SCole Faust
476*c217d954SCole Faust // Slice the results
477*c217d954SCole Faust _slice_input_tensor.run();
478*c217d954SCole Faust _slice_forget_tensor.run();
479*c217d954SCole Faust _slice_cell_tensor.run();
480*c217d954SCole Faust _slice_output_tensor.run();
481*c217d954SCole Faust
482*c217d954SCole Faust // Gates
483*c217d954SCole Faust // Forget gate
484*c217d954SCole Faust _sigmoid_forget_gate.run();
485*c217d954SCole Faust
486*c217d954SCole Faust // Input gate
487*c217d954SCole Faust _sigmoid_input_gate.run();
488*c217d954SCole Faust
489*c217d954SCole Faust // Input modulation gate
490*c217d954SCole Faust _tanh_modulation_gate.run();
491*c217d954SCole Faust
492*c217d954SCole Faust // Output gate
493*c217d954SCole Faust _sigmoid_output_gate.run();
494*c217d954SCole Faust
495*c217d954SCole Faust // Cell state (long term memory)
496*c217d954SCole Faust _mul1.run();
497*c217d954SCole Faust _mul2.run();
498*c217d954SCole Faust _add1.run();
499*c217d954SCole Faust
500*c217d954SCole Faust // Output state (short term memory)
501*c217d954SCole Faust _tanh_output_state.run();
502*c217d954SCole Faust _mul3.run();
503*c217d954SCole Faust
504*c217d954SCole Faust // Requantize output state from QSYMM16 to QASYMM8
505*c217d954SCole Faust _dequantize.run();
506*c217d954SCole Faust _quantize.run();
507*c217d954SCole Faust }
508*c217d954SCole Faust
prepare()509*c217d954SCole Faust void NELSTMLayerQuantized::prepare()
510*c217d954SCole Faust {
511*c217d954SCole Faust if(!_is_prepared)
512*c217d954SCole Faust {
513*c217d954SCole Faust _input_weights.allocator()->allocate();
514*c217d954SCole Faust _concat_input_weights.run();
515*c217d954SCole Faust
516*c217d954SCole Faust _input_to_input_weights->mark_as_unused();
517*c217d954SCole Faust _input_to_forget_weights->mark_as_unused();
518*c217d954SCole Faust _input_to_cell_weights->mark_as_unused();
519*c217d954SCole Faust _input_to_output_weights->mark_as_unused();
520*c217d954SCole Faust
521*c217d954SCole Faust _recurrent_weights.allocator()->allocate();
522*c217d954SCole Faust _concat_recurrent_weights.run();
523*c217d954SCole Faust _recurrent_to_input_weights->mark_as_unused();
524*c217d954SCole Faust _recurrent_to_forget_weights->mark_as_unused();
525*c217d954SCole Faust _recurrent_to_cell_weights->mark_as_unused();
526*c217d954SCole Faust _recurrent_to_output_weights->mark_as_unused();
527*c217d954SCole Faust
528*c217d954SCole Faust _weights.allocator()->allocate();
529*c217d954SCole Faust _concat_weights.run();
530*c217d954SCole Faust
531*c217d954SCole Faust _input_weights.mark_as_unused();
532*c217d954SCole Faust _input_weights.allocator()->free();
533*c217d954SCole Faust _recurrent_weights.mark_as_unused();
534*c217d954SCole Faust _recurrent_weights.allocator()->free();
535*c217d954SCole Faust
536*c217d954SCole Faust _weights_transposed.allocator()->allocate();
537*c217d954SCole Faust _transpose_weights.run();
538*c217d954SCole Faust
539*c217d954SCole Faust _weights.mark_as_unused();
540*c217d954SCole Faust _weights.allocator()->free();
541*c217d954SCole Faust
542*c217d954SCole Faust _bias.allocator()->allocate();
543*c217d954SCole Faust _concat_bias.run();
544*c217d954SCole Faust _input_gate_bias->mark_as_unused();
545*c217d954SCole Faust _forget_gate_bias->mark_as_unused();
546*c217d954SCole Faust _cell_bias->mark_as_unused();
547*c217d954SCole Faust _output_gate_bias->mark_as_unused();
548*c217d954SCole Faust
549*c217d954SCole Faust _is_prepared = true;
550*c217d954SCole Faust }
551*c217d954SCole Faust }
552*c217d954SCole Faust
553*c217d954SCole Faust } // namespace arm_compute
554