blob: fdfe95fb64ffaa4a060d2d4458bb9e4356bc5693 [file] [log] [blame]
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001/*
Michele Di Giorgio93b75e02021-06-21 12:00:43 +01002 * Copyright (c) 2020-2021 Arm Limited.
Michele Di Giorgio47a89902020-03-09 19:32:33 +00003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#include "arm_compute/runtime/NEON/functions/NEQLSTMLayer.h"
25
Manuel Bottinicfac51c2021-06-18 15:47:28 +010026#include "arm_compute/core/ITensorPack.h"
Michele Di Giorgio47a89902020-03-09 19:32:33 +000027#include "arm_compute/core/KernelDescriptors.h"
28#include "arm_compute/core/QuantizationInfo.h"
29#include "arm_compute/core/Utils.h"
30#include "arm_compute/core/Validate.h"
31#include "arm_compute/core/utils/misc/InfoHelpers.h"
32#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
33#include "arm_compute/runtime/NEON/NEScheduler.h"
ramelg01cbbb0382021-09-17 17:36:57 +010034#include "src/common/utils/Log.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010035#include "src/core/NEON/kernels/NEQLSTMLayerNormalizationKernel.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010036#include "src/core/helpers/WindowHelpers.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010037#include "src/cpu/kernels/CpuGemmLowpMatrixReductionKernel.h"
Michele Di Giorgio47a89902020-03-09 19:32:33 +000038
39namespace arm_compute
40{
41using namespace arm_compute::utils::info_helpers;
42namespace
43{
44Status validate_mm(GEMMLowpOutputStageInfo &gemmlowp_info, const ITensorInfo *mm_input, const ITensorInfo *mm_weights, const ITensorInfo *bias,
45 float gemmlowp_scale, const TensorInfo *mm_res_info, const TensorInfo *outstage_tensor_info)
46{
47 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpMatrixMultiplyCore::validate(mm_input, mm_weights, nullptr, mm_res_info));
48 ARM_COMPUTE_RETURN_ON_ERROR(quantization::calculate_quantized_multiplier(gemmlowp_scale, &gemmlowp_info.gemmlowp_multiplier, &gemmlowp_info.gemmlowp_shift));
49 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpOutputStage::validate(mm_res_info, bias, outstage_tensor_info, gemmlowp_info));
50 return Status{};
51}
52} // namespace
53
Michalis Spyrouebcebf12020-10-21 00:04:14 +010054Status NEQLSTMLayer::validate_layer_norm(const ITensorInfo &in, const ITensorInfo &weight, const ITensorInfo &bias)
55{
56 // Output quantization scale will be different, but ignored here
57 // since it will be configured at configure() stage.
58 const TensorInfo out
59 {
60 in
61 };
62 return NEQLSTMLayerNormalizationKernel::validate(&in, &out, &weight, &bias);
63}
64
65void NEQLSTMLayer::configure_layer_norm(NEQLSTMLayer::LayerNormGate g, const ITensor *in)
66{
67 ARM_COMPUTE_ERROR_ON(!_has_layer_norm);
68
69 Tensor &out = get_layer_norm_output(g);
70 _memory_group.manage(&out);
71 out.allocator()->init(*(in->info()));
72
Georgios Pinitas40f51a62020-11-21 03:04:18 +000073 get_layer_norm(g) = std::make_unique<NEQLSTMLayerNormalizationKernel>();
Michalis Spyrouebcebf12020-10-21 00:04:14 +010074 get_layer_norm(g)->configure(in, &out, get_layer_norm_weight(g), get_layer_norm_bias(g));
75}
76
77NEQLSTMLayer::TensorCopyKernel::~TensorCopyKernel() = default;
78
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +010079Status NEQLSTMLayer::TensorCopyKernel::validate(const ITensorInfo &src, const ITensorInfo &dst)
80{
81 ARM_COMPUTE_RETURN_ERROR_ON(src.tensor_shape().num_dimensions() > max_dimension_supported);
82 ARM_COMPUTE_RETURN_ERROR_ON(dst.tensor_shape().num_dimensions() > max_dimension_supported);
83 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(&src, &dst);
84 ARM_COMPUTE_RETURN_ERROR_ON(dst.tensor_shape().y() != src.tensor_shape().y());
85 return Status{};
86}
87
88void NEQLSTMLayer::TensorCopyKernel::configure(ITensor &src, ITensor &dst)
89{
90 ARM_COMPUTE_ERROR_THROW_ON(NEQLSTMLayer::TensorCopyKernel::validate(*src.info(), *dst.info()));
ramelg01cbbb0382021-09-17 17:36:57 +010091 ARM_COMPUTE_LOG_PARAMS(src, dst);
92
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +010093 _src = &src;
94 _dst = &dst;
95 _row_size = std::min(_src->info()->tensor_shape().x(), _dst->info()->tensor_shape().x());
96 _window = calculate_max_window(*_src->info(), Steps());
97}
98
99void NEQLSTMLayer::TensorCopyKernel::run()
100{
101 Iterator input_iter{ _src, _window };
102 Iterator output_iter{ _dst, _window };
103
104 execute_window_loop(_window, [&](const Coordinates &)
105 {
106 memcpy(output_iter.ptr(), input_iter.ptr(), _row_size);
107 },
108 input_iter, output_iter);
109}
110
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100111NEQLSTMLayer::~NEQLSTMLayer() = default;
112
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000113NEQLSTMLayer::NEQLSTMLayer(std::shared_ptr<IMemoryManager> memory_manager)
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100114 : _memory_group(), _transpose_input_to_forget_weights(), _transpose_input_to_cell_weights(), _transpose_input_to_output_weights(), _transpose_input_to_input_weights(),
115 _transpose_recurrent_to_forget_weights(), _transpose_recurrent_to_cell_weights(), _transpose_recurrent_to_output_weights(), _transpose_recurrent_to_input_weights(), _transpose_projection_weights(),
116 _input_to_input_reduction(), _recurrent_to_input_reduction(), _input_to_forget_reduction(), _recurrent_to_forget_reduction(), _input_to_cell_reduction(), _recurrent_to_cell_reduction(),
117 _input_to_output_reduction(), _recurrent_to_output_reduction(), _projection_reduction(), _projection_bias_add(), _mm_input_to_forget(), _mm_recurrent_to_forget(), _pixelwise_mul_cell_to_forget(),
118 _input_to_forget_outstage(), _recurrent_to_forget_outstage(), _cell_to_forget_outstage(), _accumulate_input_recurrent_forget(), _accumulate_cell_forget(), _forget_gate_sigmoid(), _mm_input_to_cell(),
119 _input_to_cell_outstage(), _mm_recurrent_to_cell(), _recurrent_to_cell_outstage(), _accumulate_input_recurrent_modulation(), _cell_gate_tanh(), _input_gate_sub(), _mm_input_to_input(),
120 _input_to_input_outstage(), _mm_recurrent_to_input(), _recurrent_to_input_outstage(), _accumulate_input_recurrent_input(), _pixelwise_mul_cell_to_input(), _cell_to_input_outstage(),
121 _accumulate_cell_input(), _input_gate_sigmoid(), _pixelwise_mul_forget_cell(), _pixelwise_mul_input_cell(), _add_forget_cell(), _cell_clip(), _mm_input_to_output(), _input_to_output_outstage(),
122 _mm_recurrent_to_output(), _recurrent_to_output_outstage(), _accumulate_input_recurrent_output(), _pixelwise_mul_cell_to_output(), _cell_to_output_outstage(), _accumulate_cell_to_output(),
123 _output_gate_sigmoid(), _hidden_tanh(), _pixelwise_mul_hidden(), _hidden_outstage(), _mm_projection(), _projection_outstage(), _accumulate_projection(), _projection_clip(), _projection_bias_copy(),
124 _projection_output_to_accumulate_copy(), _projection_accumulate_to_output_copy(), _hidden_to_output_copy(), _layer_norms(), _copy_output(), _layer_norm_weights(), _layer_norm_bias(),
125 _layer_norm_output()
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000126{
127 _memory_group = MemoryGroup(std::move(memory_manager));
128}
129
130void NEQLSTMLayer::configure_mm(NEGEMMLowpMatrixMultiplyCore &mm, NEGEMMLowpOutputStage &outstage, GEMMLowpOutputStageInfo &gemmlowp_info,
131 const ITensor *mm_input, const ITensor *mm_weights, const ITensor *bias,
132 Tensor *mm_res, Tensor *outstage_res, float gemmlowp_scale,
133 const TensorInfo &mm_res_info, const TensorInfo &outstage_tensor_info)
134{
135 _memory_group.manage(mm_res);
136 _memory_group.manage(outstage_res);
137
138 mm_res->allocator()->init(mm_res_info);
139 outstage_res->allocator()->init(outstage_tensor_info);
140
141 // Configure matrix-multiplication
142 mm.configure(mm_input, mm_weights, nullptr, mm_res);
143
144 // Configure output stage
145 quantization::calculate_quantized_multiplier(gemmlowp_scale, &gemmlowp_info.gemmlowp_multiplier, &gemmlowp_info.gemmlowp_shift);
146 outstage.configure(mm_res, bias, outstage_res, gemmlowp_info);
147 mm_res->allocator()->allocate();
148}
149
150void NEQLSTMLayer::configure(const ITensor *input,
151 const ITensor *input_to_forget_weights, const ITensor *input_to_cell_weights, const ITensor *input_to_output_weights,
152 const ITensor *recurrent_to_forget_weights, const ITensor *recurrent_to_cell_weights, const ITensor *recurrent_to_output_weights,
153 const ITensor *forget_gate_bias, const ITensor *cell_bias, const ITensor *output_gate_bias,
Sang-Hoon Park840a72c2020-09-23 13:24:13 +0100154 const ITensor *cell_state_in, ITensor *output_state_in,
Michele Di Giorgiobeb2d452020-05-11 16:17:51 +0100155 ITensor *cell_state_out, ITensor *output_state_out, ITensor *output,
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000156 const LSTMParams<ITensor> &lstm_params)
157{
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000158 ARM_COMPUTE_ERROR_ON_NULLPTR(input, input_to_forget_weights, input_to_cell_weights, input_to_output_weights,
159 recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights,
160 forget_gate_bias, cell_bias, output_gate_bias, cell_state_in, output_state_in, cell_state_out, output_state_out);
161
ramelg01cbbb0382021-09-17 17:36:57 +0100162 ARM_COMPUTE_LOG_PARAMS(input, input_to_forget_weights, input_to_cell_weights, input_to_output_weights,
163 recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights,
164 forget_gate_bias, cell_bias, output_gate_bias, cell_state_in, output_state_in, cell_state_out, output_state_out);
165
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000166 // Set lstm parameters
167 LSTMParams<ITensorInfo> lstm_params_info{};
168 build_lstm_params_tensor_info(lstm_params, &lstm_params_info);
169
170 // Validate
171 ARM_COMPUTE_ERROR_THROW_ON(NEQLSTMLayer::validate(input->info(), input_to_forget_weights->info(), input_to_cell_weights->info(), input_to_output_weights->info(),
172 recurrent_to_forget_weights->info(), recurrent_to_cell_weights->info(), recurrent_to_output_weights->info(),
173 forget_gate_bias->info(), cell_bias->info(), output_gate_bias->info(),
Michele Di Giorgiobeb2d452020-05-11 16:17:51 +0100174 cell_state_in->info(), output_state_in->info(), cell_state_out->info(), output_state_out->info(), output->info(),
175 lstm_params_info));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000176
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100177 const int batch_size = input->info()->dimension(1);
178 const int num_units = input_to_output_weights->info()->dimension(1);
179 const int output_size = output_state_out->info()->dimension(_out_state_output_size_dimension_idx);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000180
181 const UniformQuantizationInfo qinput = input->info()->quantization_info().uniform();
182 const UniformQuantizationInfo qcell_state_in = cell_state_in->info()->quantization_info().uniform();
183 const UniformQuantizationInfo qoutput_state_in = output_state_in->info()->quantization_info().uniform();
184
185 _projection_bias = lstm_params.projection_bias();
186 _input_to_forget_weights = input_to_forget_weights;
187 _input_to_cell_weights = input_to_cell_weights;
188 _input_to_output_weights = input_to_output_weights;
189 _recurrent_to_forget_weights = recurrent_to_forget_weights;
190 _recurrent_to_cell_weights = recurrent_to_cell_weights;
191 _recurrent_to_output_weights = recurrent_to_output_weights;
192 _projection_weights = lstm_params.projection_weights();
193
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100194 // Layer normalization
195 _has_layer_norm = lstm_params.use_layer_norm();
196 if(_has_layer_norm)
197 {
198 set_layer_norm_weight(lstm_params.forget_layer_norm_weights(), LayerNormGate::Forget);
199 set_layer_norm_weight(lstm_params.cell_layer_norm_weights(), LayerNormGate::Cell);
200 set_layer_norm_weight(lstm_params.input_layer_norm_weights(), LayerNormGate::Input);
201 set_layer_norm_weight(lstm_params.output_layer_norm_weights(), LayerNormGate::Output);
202
203 set_layer_norm_bias(forget_gate_bias, LayerNormGate::Forget);
204 set_layer_norm_bias(cell_bias, LayerNormGate::Cell);
205 set_layer_norm_bias(lstm_params.input_gate_bias(), LayerNormGate::Input);
206 set_layer_norm_bias(output_gate_bias, LayerNormGate::Output);
207 }
208
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000209 _has_cifg = lstm_params.has_cifg_opt();
210 _has_projection = lstm_params.has_projection();
211 _has_peephole = lstm_params.has_peephole_opt();
212
213 // Calculate and decompose effective scales for optimizing matmul calculation
214 const int32_t cell_shift = log2(qcell_state_in.scale);
215
216 // Calculate quantized parameters for clipping.
217 int16_t quantized_cell_clip = 0;
218 if(lstm_params.cell_clip() > 0.0f)
219 {
220 quantized_cell_clip = quantize_qsymm16(lstm_params.cell_clip(), qcell_state_in);
221 }
222 _has_cell_clipping = quantized_cell_clip > 0;
223
224 // Precompute effective bias for optimizing the matmul computations.
225 if(!_has_cifg)
226 {
227 _input_to_input_weights = lstm_params.input_to_input_weights();
228 _recurrent_to_input_weights = lstm_params.recurrent_to_input_weights();
229
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100230 _input_to_input_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>();
231 _recurrent_to_input_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>();
232 _input_to_input_reduction->configure(_input_to_input_weights->info(), _input_to_input_eff_bias.info(), GEMMLowpReductionKernelInfo(num_units, false, -qinput.offset, true));
233 _recurrent_to_input_reduction->configure(_recurrent_to_input_weights->info(), _recurrent_to_input_eff_bias.info(), GEMMLowpReductionKernelInfo(num_units, false, -qoutput_state_in.offset, true));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000234 }
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100235
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100236 _input_to_forget_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>();
237 _recurrent_to_forget_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>();
238 _input_to_cell_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>();
239 _recurrent_to_cell_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>();
240 _input_to_output_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>();
241 _recurrent_to_output_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>();
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100242
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100243 _input_to_forget_reduction->configure(input_to_forget_weights->info(), _input_to_forget_eff_bias.info(), GEMMLowpReductionKernelInfo(num_units, false, -qinput.offset, true));
244 _recurrent_to_forget_reduction->configure(recurrent_to_forget_weights->info(), _recurrent_to_forget_eff_bias.info(), GEMMLowpReductionKernelInfo(num_units, false, -qoutput_state_in.offset, true));
245 _input_to_cell_reduction->configure(input_to_cell_weights->info(), _input_to_cell_eff_bias.info(), GEMMLowpReductionKernelInfo(num_units, false, -qinput.offset, true));
246 _recurrent_to_cell_reduction->configure(recurrent_to_cell_weights->info(), _recurrent_to_cell_eff_bias.info(), GEMMLowpReductionKernelInfo(num_units, false, -qoutput_state_in.offset, true));
247 _input_to_output_reduction->configure(input_to_output_weights->info(), _input_to_output_eff_bias.info(), GEMMLowpReductionKernelInfo(num_units, false, -qinput.offset, true));
248 _recurrent_to_output_reduction->configure(recurrent_to_output_weights->info(), _recurrent_to_output_eff_bias.info(), GEMMLowpReductionKernelInfo(num_units, false, -qoutput_state_in.offset, true));
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100249 if(_has_projection)
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000250 {
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100251 _projection_reduction = std::make_unique<cpu::kernels::CpuGemmLowpMatrixAReductionKernel>();
252 _projection_reduction->configure(_projection_weights->info(), _projection_eff_bias.info(), GEMMLowpReductionKernelInfo(output_size, false, lstm_params.hidden_state_zero(), true));
Michele Di Giorgio11c562c2020-06-10 16:34:50 +0100253 if(_projection_bias != nullptr)
254 {
Michele Di Giorgio19023832020-06-17 16:08:10 +0000255 _projection_bias_add.configure(_projection_bias, &_projection_eff_bias, &_projection_eff_bias, ConvertPolicy::SATURATE);
Michele Di Giorgio11c562c2020-06-10 16:34:50 +0100256 }
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000257 }
258
259 // Pre-transpose weights to be used in GEMM.
260 _transpose_input_to_forget_weights.configure(input_to_forget_weights, &_input_to_forget_weights_transposed);
261 _transpose_input_to_cell_weights.configure(input_to_cell_weights, &_input_to_cell_weights_transposed);
262 _transpose_input_to_output_weights.configure(input_to_output_weights, &_input_to_output_weights_transposed);
263 _transpose_recurrent_to_forget_weights.configure(recurrent_to_forget_weights, &_recurrent_to_forget_weights_transposed);
264 _transpose_recurrent_to_cell_weights.configure(recurrent_to_cell_weights, &_recurrent_to_cell_weights_transposed);
265 _transpose_recurrent_to_output_weights.configure(recurrent_to_output_weights, &_recurrent_to_output_weights_transposed);
266 if(!_has_cifg)
267 {
268 _transpose_input_to_input_weights.configure(lstm_params.input_to_input_weights(), &_input_to_input_weights_transposed);
269 _transpose_recurrent_to_input_weights.configure(lstm_params.recurrent_to_input_weights(), &_recurrent_to_input_weights_transposed);
270 }
271 if(_has_projection)
272 {
273 _transpose_projection_weights.configure(_projection_weights, &_projection_weights_transposed);
274 }
275
276 GEMMLowpOutputStageInfo gemmlowp_info;
277 gemmlowp_info.type = GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT;
278 gemmlowp_info.gemmlowp_min_bound = std::numeric_limits<int16_t>::lowest();
279 gemmlowp_info.gemmlowp_max_bound = std::numeric_limits<int16_t>::max();
280 gemmlowp_info.output_data_type = DataType::QSYMM16;
281
282 const TensorInfo mm_out_info(TensorShape(num_units, batch_size), 1, DataType::S32);
283 // Forget gate.
284 const TensorInfo forget_gate_outstage_info(mm_out_info.tensor_shape(), 1, DataType::QSYMM16, QuantizationInfo(lstm_params.forget_intermediate_scale(), 0));
285 const float input_to_forget_scale = input_to_forget_weights->info()->quantization_info().uniform().scale * qinput.scale / lstm_params.forget_intermediate_scale();
286 configure_mm(_mm_input_to_forget, _input_to_forget_outstage, gemmlowp_info,
287 input, &_input_to_forget_weights_transposed, &_input_to_forget_eff_bias,
288 &_mm_input_to_forget_res, &_input_to_forget_outstage_res, input_to_forget_scale,
289 mm_out_info, forget_gate_outstage_info);
290
291 const float recurrent_to_forget_scale = recurrent_to_forget_weights->info()->quantization_info().uniform().scale * qoutput_state_in.scale / lstm_params.forget_intermediate_scale();
292 configure_mm(_mm_recurrent_to_forget, _recurrent_to_forget_outstage, gemmlowp_info,
293 output_state_in, &_recurrent_to_forget_weights_transposed, &_recurrent_to_forget_eff_bias,
294 &_mm_recurrent_to_forget_res, &_recurrent_to_forget_outstage_res, recurrent_to_forget_scale,
295 mm_out_info, forget_gate_outstage_info);
296
297 _accumulate_input_recurrent_forget.configure(&_input_to_forget_outstage_res, &_recurrent_to_forget_outstage_res, &_recurrent_to_forget_outstage_res, ConvertPolicy::SATURATE);
298 _input_to_forget_outstage_res.allocator()->allocate();
299
300 if(_has_peephole)
301 {
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100302 _mul_cell_to_forget_res.allocator()->init(TensorInfo(cell_state_in->info()->tensor_shape(), 1, DataType::S32));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000303 _memory_group.manage(&_mul_cell_to_forget_res);
304 _pixelwise_mul_cell_to_forget.configure(cell_state_in, lstm_params.cell_to_forget_weights(), &_mul_cell_to_forget_res, 1.f, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
305 _cell_to_forget_outstage_res.allocator()->init(TensorInfo(_mul_cell_to_forget_res.info()->tensor_shape(), 1, DataType::QSYMM16, QuantizationInfo(lstm_params.forget_intermediate_scale(), 0)));
306 _memory_group.manage(&_cell_to_forget_outstage_res);
307 const float cell_to_forget_scale = std::pow(2, cell_shift) * lstm_params.cell_to_forget_weights()->info()->quantization_info().uniform().scale / lstm_params.forget_intermediate_scale();
308 quantization::calculate_quantized_multiplier(cell_to_forget_scale, &gemmlowp_info.gemmlowp_multiplier, &gemmlowp_info.gemmlowp_shift);
309 _cell_to_forget_outstage.configure(&_mul_cell_to_forget_res, nullptr, &_cell_to_forget_outstage_res, gemmlowp_info);
310 _mul_cell_to_forget_res.allocator()->allocate();
311 _accumulate_cell_forget.configure(&_recurrent_to_forget_outstage_res, &_cell_to_forget_outstage_res, &_recurrent_to_forget_outstage_res, ConvertPolicy::SATURATE);
312 _cell_to_forget_outstage_res.allocator()->allocate();
313 }
314
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100315 Tensor *forget_activation_input = &_recurrent_to_forget_outstage_res;
316
317 if(_has_layer_norm)
318 {
319 configure_layer_norm(LayerNormGate::Forget, forget_activation_input);
320 forget_activation_input->allocator()->allocate();
321 forget_activation_input = &get_layer_norm_output(LayerNormGate::Forget);
322 }
323
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000324 // Output quantization info of Sigmoid and Tanh activations
325 const QuantizationInfo sigmoid_tanh_outqinfo(1.f / 32768.f, 0);
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100326 const TensorInfo forget_gate_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, sigmoid_tanh_outqinfo);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000327
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000328 _memory_group.manage(&_forget_gate);
329 _forget_gate.allocator()->init(forget_gate_info);
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100330 _forget_gate_sigmoid.configure(forget_activation_input, &_forget_gate, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
331 forget_activation_input->allocator()->allocate();
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000332
333 // Modulation gate.
334 const TensorInfo cell_outstage_info(mm_out_info.tensor_shape(), 1, DataType::QSYMM16, QuantizationInfo(lstm_params.cell_intermediate_scale(), 0));
335 const float input_to_cell_scale = input_to_cell_weights->info()->quantization_info().uniform().scale * qinput.scale / lstm_params.cell_intermediate_scale();
336 configure_mm(_mm_input_to_cell, _input_to_cell_outstage, gemmlowp_info,
337 input, &_input_to_cell_weights_transposed, &_input_to_cell_eff_bias,
338 &_mm_input_to_cell_res, &_input_to_cell_outstage_res, input_to_cell_scale,
339 mm_out_info, cell_outstage_info);
340
341 const float recurrent_to_cell_scale = recurrent_to_cell_weights->info()->quantization_info().uniform().scale * qoutput_state_in.scale / lstm_params.cell_intermediate_scale();
342 configure_mm(_mm_recurrent_to_cell, _recurrent_to_cell_outstage, gemmlowp_info,
343 output_state_in, &_recurrent_to_cell_weights_transposed, &_recurrent_to_cell_eff_bias,
344 &_mm_recurrent_to_cell_res, &_recurrent_to_cell_outstage_res, recurrent_to_cell_scale,
345 mm_out_info, cell_outstage_info);
346
347 _accumulate_input_recurrent_modulation.configure(&_input_to_cell_outstage_res, &_recurrent_to_cell_outstage_res, &_recurrent_to_cell_outstage_res, ConvertPolicy::SATURATE);
348 _input_to_cell_outstage_res.allocator()->allocate();
349
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100350 Tensor *cell_activation_input = &_recurrent_to_cell_outstage_res;
351
352 if(_has_layer_norm)
353 {
354 configure_layer_norm(LayerNormGate::Cell, cell_activation_input);
355 cell_activation_input->allocator()->allocate();
356 cell_activation_input = &get_layer_norm_output(LayerNormGate::Cell);
357 }
358
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000359 const TensorInfo cell_gate_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, sigmoid_tanh_outqinfo);
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100360
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000361 _memory_group.manage(&_cell_gate);
362 _cell_gate.allocator()->init(cell_gate_info);
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100363 _cell_gate_tanh.configure(cell_activation_input, &_cell_gate, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH, 1.f, 1.f));
364 cell_activation_input->allocator()->allocate();
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000365
366 // Input gate.
367 const TensorInfo input_gate_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, sigmoid_tanh_outqinfo);
368 _input_gate.allocator()->init(input_gate_info);
369 _memory_group.manage(&_input_gate);
370 if(_has_cifg)
371 {
372 _ones.allocator()->init(*_forget_gate.info());
373 _input_gate_sub.configure(&_ones, &_forget_gate, &_input_gate, ConvertPolicy::SATURATE);
374 _ones.allocator()->allocate();
375 }
376 else
377 {
378 const TensorInfo input_outstage_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, QuantizationInfo(lstm_params.input_intermediate_scale(), 0));
379 const float input_to_input_scale = _input_to_input_weights->info()->quantization_info().uniform().scale * qinput.scale / lstm_params.input_intermediate_scale();
380 configure_mm(_mm_input_to_input, _input_to_input_outstage, gemmlowp_info,
381 input, &_input_to_input_weights_transposed, &_input_to_input_eff_bias,
382 &_mm_input_to_input_res, &_input_to_input_outstage_res, input_to_input_scale,
383 mm_out_info, input_outstage_info);
384
385 const float recurrent_to_input_scale = _recurrent_to_input_weights->info()->quantization_info().uniform().scale * qoutput_state_in.scale / lstm_params.input_intermediate_scale();
386 configure_mm(_mm_recurrent_to_input, _recurrent_to_input_outstage, gemmlowp_info,
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100387 output_state_in, &_recurrent_to_input_weights_transposed, &_recurrent_to_input_eff_bias,
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000388 &_mm_recurrent_to_input_res, &_recurrent_to_input_outstage_res, recurrent_to_input_scale,
389 mm_out_info, input_outstage_info);
390 _accumulate_input_recurrent_input.configure(&_input_to_input_outstage_res, &_recurrent_to_input_outstage_res, &_recurrent_to_input_outstage_res, ConvertPolicy::SATURATE);
391 _input_to_input_outstage_res.allocator()->allocate();
392
393 if(_has_peephole)
394 {
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100395 _mul_cell_to_input_res.allocator()->init(TensorInfo(cell_state_in->info()->tensor_shape(), 1, DataType::S32));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000396 _memory_group.manage(&_mul_cell_to_input_res);
397 _pixelwise_mul_cell_to_input.configure(cell_state_in, lstm_params.cell_to_input_weights(), &_mul_cell_to_input_res, 1.f, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
398 const float cell_to_input_scale = std::pow(2, cell_shift) * lstm_params.cell_to_input_weights()->info()->quantization_info().uniform().scale / lstm_params.input_intermediate_scale();
399 quantization::calculate_quantized_multiplier(cell_to_input_scale, &gemmlowp_info.gemmlowp_multiplier, &gemmlowp_info.gemmlowp_shift);
400 _cell_to_input_outstage_res.allocator()->init(TensorInfo(_mul_cell_to_input_res.info()->tensor_shape(), 1, DataType::QSYMM16, QuantizationInfo(lstm_params.input_intermediate_scale(), 0)));
401 _memory_group.manage(&_cell_to_input_outstage_res);
402 _cell_to_input_outstage.configure(&_mul_cell_to_input_res, nullptr, &_cell_to_input_outstage_res, gemmlowp_info);
403 _mul_cell_to_input_res.allocator()->allocate();
404 _accumulate_cell_input.configure(&_recurrent_to_input_outstage_res, &_cell_to_input_outstage_res, &_recurrent_to_input_outstage_res, ConvertPolicy::SATURATE);
405 _cell_to_input_outstage_res.allocator()->allocate();
406 }
407
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100408 Tensor *input_activation_input = &_recurrent_to_input_outstage_res;
409
410 if(_has_layer_norm)
411 {
412 configure_layer_norm(LayerNormGate::Input, input_activation_input);
413 input_activation_input->allocator()->allocate();
414 input_activation_input = &get_layer_norm_output(LayerNormGate::Input);
415 }
416
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100417 _input_gate_sigmoid.configure(input_activation_input, &_input_gate, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100418 input_activation_input->allocator()->allocate();
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000419 }
420 // Cell.
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100421 // TODO(COMPMID-3395): Perform multiplication in the quantized domain in NEPixelWiseMultiplication
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000422 _pixelwise_mul_forget_cell.configure(&_forget_gate, cell_state_in, &_forget_gate, 1.f, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
423 const float cell_gate_scale = _cell_gate.info()->quantization_info().uniform().scale;
424 const float mul_input_cell_scale = cell_gate_scale * std::pow(2, 15 + cell_shift);
425 const TensorInfo mul_input_cell_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, QuantizationInfo(mul_input_cell_scale, 0));
426 _memory_group.manage(&_mul_input_cell_res);
427 _mul_input_cell_res.allocator()->init(mul_input_cell_info);
428 _pixelwise_mul_input_cell.configure(&_input_gate, &_cell_gate, &_mul_input_cell_res, 1.f, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
429 _cell_gate.allocator()->allocate();
430 _add_forget_cell.configure(&_forget_gate, &_mul_input_cell_res, cell_state_out, ConvertPolicy::SATURATE);
431 _mul_input_cell_res.allocator()->allocate();
432 _forget_gate.allocator()->allocate();
433 if(_has_cell_clipping)
434 {
435 _cell_clip.configure(cell_state_out, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -quantized_cell_clip, quantized_cell_clip));
436 }
437 // Output gate.
438 const TensorInfo output_outstage_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, QuantizationInfo(lstm_params.output_intermediate_scale(), 0));
439 const float input_to_output_scale = input_to_output_weights->info()->quantization_info().uniform().scale * qinput.scale / lstm_params.output_intermediate_scale();
440 configure_mm(_mm_input_to_output, _input_to_output_outstage, gemmlowp_info,
441 input, &_input_to_output_weights_transposed, &_input_to_output_eff_bias,
442 &_mm_input_to_output_res, &_input_to_output_outstage_res, input_to_output_scale,
443 mm_out_info, output_outstage_info);
444
445 const float recurrent_to_output_scale = recurrent_to_output_weights->info()->quantization_info().uniform().scale * qoutput_state_in.scale / lstm_params.output_intermediate_scale();
446 configure_mm(_mm_recurrent_to_output, _recurrent_to_output_outstage, gemmlowp_info,
447 output_state_in, &_recurrent_to_output_weights_transposed, &_recurrent_to_output_eff_bias,
448 &_mm_recurrent_to_output_res, &_recurrent_to_output_outstage_res, recurrent_to_output_scale,
449 mm_out_info, output_outstage_info);
450
451 _accumulate_input_recurrent_output.configure(&_recurrent_to_output_outstage_res, &_input_to_output_outstage_res, &_recurrent_to_output_outstage_res, ConvertPolicy::SATURATE);
452 _input_to_output_outstage_res.allocator()->allocate();
453
454 if(_has_peephole)
455 {
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100456 // TODO(COMPMID-3395): Perform multiplication in the quantized domain in NEPixelWiseMultiplication
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000457 // Here we are not using the output stage because all operations are done in float
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100458 _mul_cell_to_output_res.allocator()->init(TensorInfo(cell_state_out->info()->tensor_shape(), 1, DataType::S32));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000459 _memory_group.manage(&_mul_cell_to_output_res);
460 _pixelwise_mul_cell_to_output.configure(cell_state_out, lstm_params.cell_to_output_weights(), &_mul_cell_to_output_res, 1.f, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100461
462 const float cell_to_output_scale = std::pow(2, cell_shift) * lstm_params.cell_to_output_weights()->info()->quantization_info().uniform().scale / lstm_params.output_intermediate_scale();
463 quantization::calculate_quantized_multiplier(cell_to_output_scale, &gemmlowp_info.gemmlowp_multiplier, &gemmlowp_info.gemmlowp_shift);
464 _cell_to_output_outstage_res.allocator()->init(TensorInfo(_mul_cell_to_output_res.info()->tensor_shape(), 1, DataType::QSYMM16, QuantizationInfo(lstm_params.output_intermediate_scale(), 0)));
465 _memory_group.manage(&_cell_to_output_outstage_res);
466 _cell_to_output_outstage.configure(&_mul_cell_to_output_res, nullptr, &_cell_to_output_outstage_res, gemmlowp_info);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000467 _mul_cell_to_output_res.allocator()->allocate();
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100468
469 _accumulate_cell_to_output.configure(&_recurrent_to_output_outstage_res, &_cell_to_output_outstage_res, &_recurrent_to_output_outstage_res, ConvertPolicy::SATURATE);
470 _cell_to_output_outstage_res.allocator()->allocate();
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000471 }
472
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100473 Tensor *output_activation_input = &_recurrent_to_output_outstage_res;
474
475 if(_has_layer_norm)
476 {
477 configure_layer_norm(LayerNormGate::Output, output_activation_input);
478 output_activation_input->allocator()->allocate();
479 output_activation_input = &get_layer_norm_output(LayerNormGate::Output);
480 }
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000481 const TensorInfo output_gate_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, sigmoid_tanh_outqinfo);
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100482
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000483 _memory_group.manage(&_output_gate);
484 _output_gate.allocator()->init(output_gate_info);
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100485 _output_gate_sigmoid.configure(output_activation_input, &_output_gate, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
486 output_activation_input->allocator()->allocate();
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000487
488 // Hidden.
489 _hidden_tanh.configure(cell_state_out, &_input_gate, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH, 1.f, 1.f));
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100490 // TODO(COMPMID-3395): Perform multiplication in the quantized domain in NEPixelWiseMultiplication
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000491 _memory_group.manage(&_hidden_mul_res);
492 const TensorInfo hidden_mul_res(_input_gate.info()->tensor_shape(), 1, DataType::S32);
493 _hidden_mul_res.allocator()->init(hidden_mul_res);
494 _pixelwise_mul_hidden.configure(&_output_gate, &_input_gate, &_hidden_mul_res, 1.f, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
495 _output_gate.allocator()->allocate();
496 _input_gate.allocator()->allocate();
497 const float hidden_state_scale = std::pow(2, -15) / lstm_params.hidden_state_scale() * std::pow(2, -15);
Sang-Hoon Park30b46a62020-04-18 01:40:57 +0100498 quantization::calculate_quantized_multiplier(hidden_state_scale, &gemmlowp_info.gemmlowp_multiplier, &gemmlowp_info.gemmlowp_shift, /* ignore_epsilon */ true);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000499 gemmlowp_info.gemmlowp_offset = lstm_params.hidden_state_zero();
500 gemmlowp_info.output_data_type = output_state_in->info()->data_type();
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100501
502 _projection_tensor_copy_required = (num_units != output_size);
503 ITensor *hidden_gate_result = output_state_out;
504
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100505 _memory_group.manage(&_hidden_gate);
506
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100507 if(_projection_tensor_copy_required)
508 {
509 _hidden_gate.allocator()->init(*output_state_out->info());
510 _hidden_gate.info()->set_tensor_shape(_hidden_mul_res.info()->tensor_shape());
511 hidden_gate_result = &_hidden_gate;
512 }
513
514 _hidden_outstage.configure(&_hidden_mul_res, nullptr, hidden_gate_result, gemmlowp_info);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000515 _hidden_mul_res.allocator()->allocate();
516
517 // Projection.
518 if(_has_projection)
519 {
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100520 const TensorInfo projection_outstage_info(*output_state_out->info());
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000521 const UniformQuantizationInfo qprojection = _projection_weights->info()->quantization_info().uniform();
522 const float projection_scale = qprojection.scale * lstm_params.hidden_state_scale() / qoutput_state_in.scale;
523 gemmlowp_info.gemmlowp_offset = qoutput_state_in.offset;
524 gemmlowp_info.gemmlowp_min_bound = std::numeric_limits<int8_t>::lowest();
525 gemmlowp_info.gemmlowp_max_bound = std::numeric_limits<int8_t>::max();
526 gemmlowp_info.output_data_type = DataType::QASYMM8_SIGNED;
527
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100528 TensorInfo projection_mm_out_info{ mm_out_info };
529 projection_mm_out_info.set_tensor_shape(TensorShape(output_size, batch_size));
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100530
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000531 configure_mm(_mm_projection, _projection_outstage, gemmlowp_info,
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100532 hidden_gate_result, &_projection_weights_transposed, &_projection_eff_bias,
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000533 &_mm_projection_res, &_projection_outstage_res, projection_scale,
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100534 projection_mm_out_info, projection_outstage_info);
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100535
536 ITensor *accumulate_destination = output_state_out;
537
538 if(_projection_tensor_copy_required)
539 {
540 _hidden_gate.allocator()->allocate();
Sang-Hoon Park840a72c2020-09-23 13:24:13 +0100541 _projection_accumulate_res.allocator()->init(*output_state_in->info());
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100542 _projection_accumulate_res.info()->set_tensor_shape(_projection_outstage_res.info()->tensor_shape());
Sang-Hoon Park840a72c2020-09-23 13:24:13 +0100543 _projection_output_to_accumulate_copy.configure(*output_state_in, _projection_accumulate_res);
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100544 accumulate_destination = &_projection_accumulate_res;
545 }
546
547 _accumulate_projection.configure(&_projection_outstage_res, accumulate_destination, accumulate_destination, ConvertPolicy::SATURATE);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000548 _projection_outstage_res.allocator()->allocate();
549
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100550 if(_projection_tensor_copy_required)
551 {
552 _projection_accumulate_to_output_copy.configure(_projection_accumulate_res, *output_state_out);
553 _projection_accumulate_res.allocator()->allocate();
554 }
555
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000556 int8_t quantized_projection_clip{ 0 };
557 if(lstm_params.projection_clip() > 0.0f)
558 {
559 quantized_projection_clip = utility::clamp<int8_t>(lstm_params.projection_clip() / qprojection.scale, -128, 127);
560 }
561
562 if(quantized_projection_clip > 0)
563 {
564 _projection_clip.configure(output_state_out, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -quantized_projection_clip, quantized_projection_clip));
565 _has_projection_clipping = true;
566 }
567 }
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100568 else
569 {
570 if(_projection_tensor_copy_required)
571 {
572 _hidden_to_output_copy.configure(_hidden_gate, *output_state_out);
573 _hidden_gate.allocator()->allocate();
574 }
575 }
Michele Di Giorgiobeb2d452020-05-11 16:17:51 +0100576
577 // Copy output_state_out to output
578 _copy_output.configure(output_state_out, output);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000579}
580
581Status NEQLSTMLayer::validate(const ITensorInfo *input,
582 const ITensorInfo *input_to_forget_weights, const ITensorInfo *input_to_cell_weights, const ITensorInfo *input_to_output_weights,
583 const ITensorInfo *recurrent_to_forget_weights, const ITensorInfo *recurrent_to_cell_weights, const ITensorInfo *recurrent_to_output_weights,
584 const ITensorInfo *forget_gate_bias, const ITensorInfo *cell_bias, const ITensorInfo *output_gate_bias,
585 const ITensorInfo *cell_state_in, const ITensorInfo *output_state_in,
Michele Di Giorgiobeb2d452020-05-11 16:17:51 +0100586 const ITensorInfo *cell_state_out, const ITensorInfo *output_state_out, const ITensorInfo *output,
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000587 const LSTMParams<ITensorInfo> &lstm_params)
588{
589 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, input_to_forget_weights, input_to_cell_weights, input_to_output_weights, recurrent_to_forget_weights, recurrent_to_cell_weights,
Michele Di Giorgiobeb2d452020-05-11 16:17:51 +0100590 recurrent_to_output_weights, forget_gate_bias, cell_bias, output_gate_bias, cell_state_in, output_state_in,
591 cell_state_out, output_state_out, output);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000592
593 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8_SIGNED);
594 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->num_dimensions() != 2, "Input must have exactly 2 dimensions");
595
596 const unsigned int input_size = input->dimension(0);
597 const unsigned int batch_size = input->dimension(1);
598 const unsigned int num_units = input_to_output_weights->dimension(1);
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100599 const unsigned int output_size = output_state_out->dimension(_out_state_output_size_dimension_idx);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000600
601 ARM_COMPUTE_RETURN_ERROR_ON(input_to_output_weights->num_dimensions() != 2);
602 ARM_COMPUTE_RETURN_ERROR_ON(input_to_output_weights->dimension(0) != input_size);
603 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input_to_output_weights, input_to_forget_weights, input_to_cell_weights);
604 ARM_COMPUTE_RETURN_ERROR_ON(recurrent_to_output_weights->num_dimensions() != 2);
605 ARM_COMPUTE_RETURN_ERROR_ON(recurrent_to_output_weights->dimension(1) != num_units);
606 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(recurrent_to_output_weights, recurrent_to_forget_weights, recurrent_to_cell_weights);
607 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input_to_forget_weights, 1, DataType::QSYMM8);
608 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input_to_forget_weights, input_to_cell_weights, input_to_output_weights,
609 recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights);
610
611 ARM_COMPUTE_RETURN_ERROR_ON(forget_gate_bias->num_dimensions() != 1);
612 ARM_COMPUTE_RETURN_ERROR_ON(forget_gate_bias->dimension(0) != num_units);
613 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(forget_gate_bias, cell_bias, output_gate_bias);
614 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(forget_gate_bias, 1, DataType::S32);
615 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(forget_gate_bias, cell_bias, output_gate_bias);
616
617 ARM_COMPUTE_RETURN_ERROR_ON(cell_state_in->num_dimensions() != 2);
618 ARM_COMPUTE_RETURN_ERROR_ON(cell_state_in->dimension(0) != num_units);
619 ARM_COMPUTE_RETURN_ERROR_ON(cell_state_in->dimension(1) != batch_size);
620 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(cell_state_in, 1, DataType::QSYMM16);
621
622 ARM_COMPUTE_RETURN_ERROR_ON(output_state_in->num_dimensions() != 2);
623 ARM_COMPUTE_RETURN_ERROR_ON(output_state_in->dimension(0) != output_size);
624 ARM_COMPUTE_RETURN_ERROR_ON(output_state_in->dimension(1) != batch_size);
625 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output_state_in);
626
627 // Check whether peephole weights are all there or none
628 if(lstm_params.has_peephole_opt())
629 {
630 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(lstm_params.cell_to_forget_weights(), lstm_params.cell_to_output_weights());
631 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(lstm_params.cell_to_forget_weights(), 1, DataType::QSYMM16);
632 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.cell_to_forget_weights()->num_dimensions() != 1);
633 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.cell_to_forget_weights()->dimension(0) != num_units);
634 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(lstm_params.cell_to_forget_weights(), lstm_params.cell_to_output_weights());
635 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(lstm_params.cell_to_forget_weights(), lstm_params.cell_to_output_weights());
636
637 if(!lstm_params.has_cifg_opt())
638 {
639 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(lstm_params.cell_to_input_weights());
640 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(lstm_params.cell_to_forget_weights(), lstm_params.cell_to_input_weights());
641 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(lstm_params.cell_to_forget_weights(), lstm_params.cell_to_input_weights());
642 }
643 }
644
645 const UniformQuantizationInfo qinput = input->quantization_info().uniform();
646 const UniformQuantizationInfo qcell_state_in = cell_state_in->quantization_info().uniform();
647 const UniformQuantizationInfo qoutput_state_in = output_state_in->quantization_info().uniform();
648
649 // Calculate and decompose effective scales for optimizing matmul calculation
650 const int32_t cell_shift = log2(qcell_state_in.scale);
651 ARM_COMPUTE_RETURN_ERROR_ON(cell_shift > -9);
652
653 // Calculate quantized parameters for clipping.
654 int16_t quantized_cell_clip = 0;
655 if(lstm_params.cell_clip() > 0.0f)
656 {
657 quantized_cell_clip = quantize_qsymm16(lstm_params.cell_clip(), qcell_state_in);
658 }
659
660 // Precompute effective bias for optimizing the matmul computations.
661 const TensorInfo eff_bias_info(TensorShape(num_units), 1, DataType::S32);
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100662 const TensorInfo projection_eff_bias_info(TensorShape(output_size), 1, DataType::S32);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000663 if(!lstm_params.has_cifg_opt())
664 {
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100665 ARM_COMPUTE_RETURN_ON_ERROR(cpu::kernels::CpuGemmLowpMatrixAReductionKernel::validate(lstm_params.input_to_input_weights(), &eff_bias_info, GEMMLowpReductionKernelInfo(num_units, false,
666 -qinput.offset, true)));
667 ARM_COMPUTE_RETURN_ON_ERROR(cpu::kernels::CpuGemmLowpMatrixAReductionKernel::validate(lstm_params.recurrent_to_input_weights(), &eff_bias_info, GEMMLowpReductionKernelInfo(num_units, false,
668 -qoutput_state_in.offset,
669 true)));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000670 }
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100671 ARM_COMPUTE_RETURN_ON_ERROR(cpu::kernels::CpuGemmLowpMatrixAReductionKernel::validate(input_to_forget_weights, &eff_bias_info, GEMMLowpReductionKernelInfo(num_units, false, -qinput.offset, true)));
672 ARM_COMPUTE_RETURN_ON_ERROR(cpu::kernels::CpuGemmLowpMatrixAReductionKernel::validate(recurrent_to_forget_weights, &eff_bias_info, GEMMLowpReductionKernelInfo(num_units, false,
673 -qoutput_state_in.offset, true)));
674 ARM_COMPUTE_RETURN_ON_ERROR(cpu::kernels::CpuGemmLowpMatrixAReductionKernel::validate(input_to_cell_weights, &eff_bias_info, GEMMLowpReductionKernelInfo(num_units, false, -qinput.offset, true)));
675 ARM_COMPUTE_RETURN_ON_ERROR(cpu::kernels::CpuGemmLowpMatrixAReductionKernel::validate(recurrent_to_cell_weights, &eff_bias_info, GEMMLowpReductionKernelInfo(num_units, false, -qoutput_state_in.offset,
676 true)));
677 ARM_COMPUTE_RETURN_ON_ERROR(cpu::kernels::CpuGemmLowpMatrixAReductionKernel::validate(input_to_output_weights, &eff_bias_info, GEMMLowpReductionKernelInfo(num_units, false, -qinput.offset, true)));
678 ARM_COMPUTE_RETURN_ON_ERROR(cpu::kernels::CpuGemmLowpMatrixAReductionKernel::validate(recurrent_to_output_weights, &eff_bias_info, GEMMLowpReductionKernelInfo(num_units, false,
679 -qoutput_state_in.offset, true)));
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100680 if(lstm_params.has_projection())
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000681 {
Manuel Bottinicfac51c2021-06-18 15:47:28 +0100682 ARM_COMPUTE_RETURN_ON_ERROR(cpu::kernels::CpuGemmLowpMatrixAReductionKernel::validate(lstm_params.projection_weights(), &projection_eff_bias_info, GEMMLowpReductionKernelInfo(output_size, false,
683 lstm_params.hidden_state_zero(),
684 true)));
Michele Di Giorgio11c562c2020-06-10 16:34:50 +0100685 if(lstm_params.projection_bias() != nullptr)
686 {
687 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(lstm_params.projection_bias(), 1, DataType::S32);
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100688 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(lstm_params.projection_bias(), &projection_eff_bias_info, &projection_eff_bias_info, ConvertPolicy::SATURATE));
Michele Di Giorgio11c562c2020-06-10 16:34:50 +0100689 }
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000690 }
691
692 const TensorInfo input_weights_transposed(TensorShape(num_units, input_size), 1, input_to_forget_weights->data_type(), input_to_forget_weights->quantization_info());
693 const TensorInfo recurrent_weights_transposed(TensorShape(num_units, output_size), 1, recurrent_to_forget_weights->data_type(), recurrent_to_forget_weights->quantization_info());
694
695 // Validate weights transpose
696 ARM_COMPUTE_RETURN_ON_ERROR(NETranspose::validate(input_to_forget_weights, &input_weights_transposed));
697 ARM_COMPUTE_RETURN_ON_ERROR(NETranspose::validate(input_to_cell_weights, &input_weights_transposed));
698 ARM_COMPUTE_RETURN_ON_ERROR(NETranspose::validate(input_to_output_weights, &input_weights_transposed));
699 ARM_COMPUTE_RETURN_ON_ERROR(NETranspose::validate(recurrent_to_forget_weights, &recurrent_weights_transposed));
700 ARM_COMPUTE_RETURN_ON_ERROR(NETranspose::validate(recurrent_to_cell_weights, &recurrent_weights_transposed));
701 ARM_COMPUTE_RETURN_ON_ERROR(NETranspose::validate(recurrent_to_output_weights, &recurrent_weights_transposed));
702 if(!lstm_params.has_cifg_opt())
703 {
704 ARM_COMPUTE_RETURN_ON_ERROR(NETranspose::validate(lstm_params.input_to_input_weights(), &input_weights_transposed));
705 ARM_COMPUTE_RETURN_ON_ERROR(NETranspose::validate(lstm_params.recurrent_to_input_weights(), &recurrent_weights_transposed));
706 }
707 if(lstm_params.has_projection())
708 {
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100709 const TensorInfo projection_weights_transposed(TensorShape(output_size, num_units), 1, lstm_params.projection_weights()->data_type(), lstm_params.projection_weights()->quantization_info());
710 ARM_COMPUTE_RETURN_ON_ERROR(NETranspose::validate(lstm_params.projection_weights(), &projection_weights_transposed));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000711 }
712
713 GEMMLowpOutputStageInfo gemmlowp_info;
714 gemmlowp_info.type = GEMMLowpOutputStageType::QUANTIZE_DOWN_FIXEDPOINT;
715 gemmlowp_info.gemmlowp_min_bound = std::numeric_limits<int16_t>::lowest();
716 gemmlowp_info.gemmlowp_max_bound = std::numeric_limits<int16_t>::max();
717 gemmlowp_info.output_data_type = DataType::QSYMM16;
718
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100719 const bool has_layer_norm = lstm_params.use_layer_norm();
720
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000721 // Forget gate.
Sang-Hoon Parkee4833d2020-05-20 09:13:32 +0100722 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.forget_intermediate_scale() == 0);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000723 const TensorInfo forget_outstage_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, QuantizationInfo(lstm_params.forget_intermediate_scale(), 0));
724 const TensorInfo mm_out_info(TensorShape(num_units, batch_size), 1, DataType::S32);
725 const float input_to_forget_scale = input_to_forget_weights->quantization_info().uniform().scale * qinput.scale / lstm_params.forget_intermediate_scale();
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100726 ARM_COMPUTE_RETURN_ON_ERROR(validate_mm(gemmlowp_info, input, &input_weights_transposed, &eff_bias_info, input_to_forget_scale, &mm_out_info, &forget_outstage_info));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000727
728 const float recurrent_to_forget_scale = recurrent_to_forget_weights->quantization_info().uniform().scale * qoutput_state_in.scale / lstm_params.forget_intermediate_scale();
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100729 ARM_COMPUTE_RETURN_ON_ERROR(validate_mm(gemmlowp_info, output_state_in, &recurrent_weights_transposed, &eff_bias_info, recurrent_to_forget_scale, &mm_out_info, &forget_outstage_info));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000730
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100731 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&forget_outstage_info, &forget_outstage_info, &forget_outstage_info, ConvertPolicy::SATURATE));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000732
733 if(lstm_params.has_peephole_opt())
734 {
735 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(lstm_params.cell_to_forget_weights(), 1, DataType::QSYMM16);
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100736 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(cell_state_in, lstm_params.cell_to_forget_weights(), &mm_out_info, 1.f, ConvertPolicy::SATURATE,
737 RoundingPolicy::TO_ZERO));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000738 const float cell_to_forget_scale = std::pow(2, cell_shift) * lstm_params.cell_to_forget_weights()->quantization_info().uniform().scale / lstm_params.forget_intermediate_scale();
739 ARM_COMPUTE_RETURN_ON_ERROR(quantization::calculate_quantized_multiplier(cell_to_forget_scale, &gemmlowp_info.gemmlowp_multiplier, &gemmlowp_info.gemmlowp_shift));
740 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpOutputStage::validate(&mm_out_info, nullptr, &forget_outstage_info, gemmlowp_info));
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100741 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&forget_outstage_info, &forget_outstage_info, &forget_outstage_info, ConvertPolicy::SATURATE));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000742 }
743
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100744 if(has_layer_norm)
745 {
746 const ITensorInfo *w_info = lstm_params.forget_layer_norm_weights();
747 const ITensorInfo *b_info = forget_gate_bias;
748 ARM_COMPUTE_RETURN_ON_ERROR(validate_layer_norm(forget_outstage_info, *w_info, *b_info));
749 }
750
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000751 // Output quantization info of Sigmoid and Tanh activations
752 const QuantizationInfo sigmoid_tanh_outqinfo(1.f / 32768.f, 0);
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100753 const TensorInfo forget_gate_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, sigmoid_tanh_outqinfo);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000754
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000755 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&forget_outstage_info, &forget_gate_info, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC)));
756
757 // Modulation gate.
Sang-Hoon Parkee4833d2020-05-20 09:13:32 +0100758 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.cell_intermediate_scale() == 0);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000759 const TensorInfo cell_outstage_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, QuantizationInfo(lstm_params.cell_intermediate_scale(), 0));
760 const float input_to_cell_scale = input_to_cell_weights->quantization_info().uniform().scale * qinput.scale / lstm_params.cell_intermediate_scale();
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100761 ARM_COMPUTE_RETURN_ON_ERROR(validate_mm(gemmlowp_info, input, &input_weights_transposed, &eff_bias_info, input_to_cell_scale, &mm_out_info, &cell_outstage_info));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000762
763 const float recurrent_to_cell_scale = recurrent_to_cell_weights->quantization_info().uniform().scale * qoutput_state_in.scale / lstm_params.cell_intermediate_scale();
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100764 ARM_COMPUTE_RETURN_ON_ERROR(validate_mm(gemmlowp_info, output_state_in, &recurrent_weights_transposed, &eff_bias_info, recurrent_to_cell_scale, &mm_out_info, &cell_outstage_info));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000765
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100766 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&cell_outstage_info, &cell_outstage_info, &cell_outstage_info, ConvertPolicy::SATURATE));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000767
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100768 if(has_layer_norm)
769 {
770 const ITensorInfo *w_info = lstm_params.cell_layer_norm_weights();
771 const ITensorInfo *b_info = cell_bias;
772 ARM_COMPUTE_RETURN_ON_ERROR(validate_layer_norm(cell_outstage_info, *w_info, *b_info));
773 }
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000774 const TensorInfo cell_gate_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, sigmoid_tanh_outqinfo);
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100775
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000776 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&cell_outstage_info, &cell_gate_info, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH, 1.f, 1.f)));
777
778 // Input gate.
779 const TensorInfo input_gate_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, sigmoid_tanh_outqinfo);
780 if(lstm_params.has_cifg_opt())
781 {
782 ARM_COMPUTE_RETURN_ERROR_ON_MSG(lstm_params.input_gate_bias() != nullptr, "Input gate bias must not be present when CIFG is used");
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100783 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticSubtraction::validate(&input_gate_info, &forget_gate_info, &forget_gate_info, ConvertPolicy::SATURATE));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000784 }
785 else
786 {
787 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(lstm_params.input_to_input_weights(), lstm_params.recurrent_to_input_weights(), lstm_params.input_gate_bias());
788 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input_to_forget_weights, lstm_params.input_to_input_weights(), lstm_params.recurrent_to_input_weights());
789 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input_to_forget_weights, lstm_params.input_to_input_weights());
790 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(recurrent_to_forget_weights, lstm_params.recurrent_to_input_weights());
791 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(forget_gate_bias, lstm_params.input_gate_bias());
792 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(forget_gate_bias, lstm_params.input_gate_bias());
793
Sang-Hoon Parkee4833d2020-05-20 09:13:32 +0100794 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.input_intermediate_scale() == 0);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000795 const TensorInfo input_outstage_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, QuantizationInfo(lstm_params.input_intermediate_scale(), 0));
796 const float input_to_input_scale = lstm_params.input_to_input_weights()->quantization_info().uniform().scale * qinput.scale / lstm_params.input_intermediate_scale();
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100797 ARM_COMPUTE_RETURN_ON_ERROR(validate_mm(gemmlowp_info, input, &input_weights_transposed, &eff_bias_info, input_to_input_scale, &mm_out_info, &input_outstage_info));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000798
799 const float recurrent_to_input_scale = lstm_params.recurrent_to_input_weights()->quantization_info().uniform().scale * qoutput_state_in.scale / lstm_params.input_intermediate_scale();
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100800 ARM_COMPUTE_RETURN_ON_ERROR(validate_mm(gemmlowp_info, output_state_in, &recurrent_weights_transposed, &eff_bias_info, recurrent_to_input_scale, &mm_out_info, &input_outstage_info));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000801
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100802 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&input_outstage_info, &input_outstage_info, &input_outstage_info, ConvertPolicy::SATURATE));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000803
804 if(lstm_params.has_peephole_opt())
805 {
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100806 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(cell_state_in, lstm_params.cell_to_input_weights(), &mm_out_info, 1.f, ConvertPolicy::SATURATE,
807 RoundingPolicy::TO_ZERO));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000808 const float cell_to_input_scale = std::pow(2, cell_shift) * lstm_params.cell_to_input_weights()->quantization_info().uniform().scale / lstm_params.input_intermediate_scale();
809 ARM_COMPUTE_RETURN_ON_ERROR(quantization::calculate_quantized_multiplier(cell_to_input_scale, &gemmlowp_info.gemmlowp_multiplier, &gemmlowp_info.gemmlowp_shift));
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100810 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpOutputStage::validate(&mm_out_info, &eff_bias_info, &input_outstage_info, gemmlowp_info));
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100811 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&input_outstage_info, &input_outstage_info, &input_outstage_info, ConvertPolicy::SATURATE));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000812 }
813
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100814 if(has_layer_norm)
815 {
816 const ITensorInfo *w_info = lstm_params.input_layer_norm_weights();
817 const ITensorInfo *b_info = lstm_params.input_gate_bias();
818 ARM_COMPUTE_RETURN_ON_ERROR(validate_layer_norm(input_outstage_info, *w_info, *b_info));
819 }
820
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100821 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&input_outstage_info, &input_gate_info, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH, 1.f, 1.f)));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000822 }
823 // Cell.
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100824 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&forget_gate_info, cell_state_in, &forget_gate_info, 1.f, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO));
825 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&input_gate_info, cell_state_in, &cell_gate_info, 1.f, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO));
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100826 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&forget_gate_info, &cell_gate_info, cell_state_out, ConvertPolicy::SATURATE));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000827 if(quantized_cell_clip > 0)
828 {
829 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(cell_state_out, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -quantized_cell_clip,
830 quantized_cell_clip)));
831 }
832 // Output gate.
Sang-Hoon Parkee4833d2020-05-20 09:13:32 +0100833 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.output_intermediate_scale() == 0);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000834 const TensorInfo output_outstage_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, QuantizationInfo(lstm_params.output_intermediate_scale(), 0));
835 const float input_to_output_scale = input_to_output_weights->quantization_info().uniform().scale * qinput.scale / lstm_params.output_intermediate_scale();
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100836 ARM_COMPUTE_RETURN_ON_ERROR(validate_mm(gemmlowp_info, input, &input_weights_transposed, &eff_bias_info, input_to_output_scale, &mm_out_info, &output_outstage_info));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000837
838 const float recurrent_to_output_scale = recurrent_to_output_weights->quantization_info().uniform().scale * qoutput_state_in.scale / lstm_params.output_intermediate_scale();
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100839 ARM_COMPUTE_RETURN_ON_ERROR(validate_mm(gemmlowp_info, output_state_in, &recurrent_weights_transposed, &eff_bias_info, recurrent_to_output_scale, &mm_out_info, &output_outstage_info));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000840
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100841 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&output_outstage_info, &output_outstage_info, &output_outstage_info, ConvertPolicy::SATURATE));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000842 if(lstm_params.has_peephole_opt())
843 {
844 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(lstm_params.cell_to_output_weights(), 1, DataType::QSYMM16);
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100845 // TODO(COMPMID-3395): Perform multiplication in the quantized domain in NEPixelWiseMultiplication
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000846 // Here we are not using the output stage because all operations are done in float
847 // const float cell_to_output_scale = std::pow(2, cell_shift) * lstm_params.cell_to_output_weights()->quantization_info().uniform().scale / lstm_params.output_intermediate_scale();
848 // ARM_COMPUTE_RETURN_ON_ERROR(quantization::calculate_quantized_multiplier(cell_to_output_scale, &gemmlowp_info.gemmlowp_multiplier, &gemmlowp_info.gemmlowp_shift));
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100849 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(cell_state_out, lstm_params.cell_to_output_weights(), &output_outstage_info, 1.f, ConvertPolicy::SATURATE,
850 RoundingPolicy::TO_ZERO));
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100851 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&output_outstage_info, &output_outstage_info, &output_outstage_info, ConvertPolicy::SATURATE));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000852 }
853
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100854 if(has_layer_norm)
855 {
856 const ITensorInfo *w_info = lstm_params.output_layer_norm_weights();
857 const ITensorInfo *b_info = output_gate_bias;
858 ARM_COMPUTE_RETURN_ON_ERROR(validate_layer_norm(output_outstage_info, *w_info, *b_info));
859 }
860
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000861 const TensorInfo output_gate_info(TensorShape(num_units, batch_size), 1, DataType::QSYMM16, sigmoid_tanh_outqinfo);
862 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&output_outstage_info, &output_gate_info, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC)));
863
864 // Hidden.
865 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(cell_state_out, &input_gate_info, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::TANH, 1.f, 1.f)));
866 const TensorInfo hidden_mul_res(TensorShape(num_units, batch_size), 1, DataType::S32);
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100867 const TensorInfo hidden_out_info(TensorShape(num_units, batch_size), 1, DataType::QASYMM8_SIGNED);
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100868 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&output_gate_info, &input_gate_info, &hidden_mul_res, 1.f, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO));
Sang-Hoon Parkee4833d2020-05-20 09:13:32 +0100869
870 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.hidden_state_scale() == 0);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000871 const float hidden_state_scale = std::pow(2, -15) / lstm_params.hidden_state_scale() * std::pow(2, -15);
Sang-Hoon Park30b46a62020-04-18 01:40:57 +0100872 ARM_COMPUTE_RETURN_ON_ERROR(quantization::calculate_quantized_multiplier(hidden_state_scale, &gemmlowp_info.gemmlowp_multiplier, &gemmlowp_info.gemmlowp_shift, /* ignore_epsilon */ true));
Sang-Hoon Park9f893752020-10-20 15:33:31 +0100873 gemmlowp_info.gemmlowp_offset = lstm_params.hidden_state_zero();
874 gemmlowp_info.output_data_type = hidden_out_info.data_type();
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100875 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpOutputStage::validate(&hidden_mul_res, nullptr, &hidden_out_info, gemmlowp_info));
876
877 const bool projection_tensor_copy_required = num_units != output_size;
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000878
879 // Projection.
880 if(lstm_params.has_projection())
881 {
882 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(recurrent_to_forget_weights, lstm_params.projection_weights());
Sang-Hoon Parkee4833d2020-05-20 09:13:32 +0100883 ARM_COMPUTE_RETURN_ERROR_ON(qoutput_state_in.scale == 0);
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000884
885 const UniformQuantizationInfo qprojection = lstm_params.projection_weights()->quantization_info().uniform();
886 const float projection_scale = qprojection.scale * lstm_params.hidden_state_scale() / qoutput_state_in.scale;
887 ARM_COMPUTE_RETURN_ON_ERROR(quantization::calculate_quantized_multiplier(projection_scale, &gemmlowp_info.gemmlowp_multiplier, &gemmlowp_info.gemmlowp_shift));
888 gemmlowp_info.gemmlowp_offset = qoutput_state_in.offset;
889 gemmlowp_info.gemmlowp_min_bound = std::numeric_limits<int8_t>::lowest();
890 gemmlowp_info.gemmlowp_max_bound = std::numeric_limits<int8_t>::max();
891 gemmlowp_info.output_data_type = DataType::QASYMM8_SIGNED;
892
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100893 const TensorInfo projection_outstage_info(*output_state_out);
894 const TensorInfo projection_weights_transposed(TensorShape(output_size, num_units), 1, lstm_params.projection_weights()->data_type(), lstm_params.projection_weights()->quantization_info());
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100895
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100896 TensorInfo projection_mm_out_info{ mm_out_info };
897 projection_mm_out_info.set_tensor_shape(TensorShape(output_size, batch_size));
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100898
Sang-Hoon Parka7431ae2020-05-12 11:13:30 +0100899 ARM_COMPUTE_RETURN_ON_ERROR(validate_mm(gemmlowp_info, &hidden_out_info, &projection_weights_transposed, &projection_eff_bias_info, projection_scale, &projection_mm_out_info,
900 &projection_outstage_info));
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100901
902 if(projection_tensor_copy_required)
903 {
Sang-Hoon Park840a72c2020-09-23 13:24:13 +0100904 ARM_COMPUTE_RETURN_ON_ERROR(NEQLSTMLayer::TensorCopyKernel::validate(*output_state_in, projection_outstage_info));
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100905 }
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000906
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100907 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(output_state_out, output_state_out, output_state_out, ConvertPolicy::SATURATE));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000908
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100909 if(projection_tensor_copy_required)
910 {
911 ARM_COMPUTE_RETURN_ON_ERROR(NEQLSTMLayer::TensorCopyKernel::validate(projection_outstage_info, *output_state_out));
912 }
913
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000914 int8_t quantized_projection_clip{ 0 };
915 if(lstm_params.projection_clip() > 0.0f)
916 {
917 quantized_projection_clip = quantize_qasymm8_signed(lstm_params.projection_clip(), qprojection);
918 }
919
920 if(quantized_projection_clip > 0)
921 {
922 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(output_state_out, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -quantized_projection_clip,
923 quantized_projection_clip)));
924 }
925 }
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100926 else
927 {
928 if(projection_tensor_copy_required)
929 {
930 ARM_COMPUTE_RETURN_ON_ERROR(NEQLSTMLayer::TensorCopyKernel::validate(hidden_out_info, *output_state_out));
931 }
932 }
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000933
934 if(cell_state_out->total_size() > 0)
935 {
936 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(cell_state_in, cell_state_out);
937 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(cell_state_in, cell_state_out);
938 }
939
940 if(output_state_out->total_size() > 0)
941 {
942 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output_state_out);
943 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output_state_in, output_state_out);
944 }
945
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100946 ARM_COMPUTE_RETURN_ON_ERROR(NECopy::validate(output_state_out, output));
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000947 return Status{};
948}
949
950void NEQLSTMLayer::run()
951{
952 prepare();
953
954 // Acquire all the temporaries
955 MemoryGroupResourceScope scope_mg(_memory_group);
956
957 // Forget gate.
958 _mm_input_to_forget.run();
959 _input_to_forget_outstage.run();
960
961 _mm_recurrent_to_forget.run();
962 _recurrent_to_forget_outstage.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100963 _accumulate_input_recurrent_forget.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000964
965 if(_has_peephole)
966 {
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100967 _pixelwise_mul_cell_to_forget.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000968 _cell_to_forget_outstage.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100969 _accumulate_cell_forget.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000970 }
971
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100972 if(_has_layer_norm)
973 {
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100974 NEScheduler::get().schedule(get_layer_norm(LayerNormGate::Forget).get(), Window::DimY);
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100975 }
976
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000977 _forget_gate_sigmoid.run();
978
979 // Modulation gate.
980 _mm_input_to_cell.run();
981 _input_to_cell_outstage.run();
982
983 _mm_recurrent_to_cell.run();
984 _recurrent_to_cell_outstage.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100985 _accumulate_input_recurrent_modulation.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000986
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100987 if(_has_layer_norm)
988 {
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100989 NEScheduler::get().schedule(get_layer_norm(LayerNormGate::Cell).get(), Window::DimY);
Sang-Hoon Park9230e272020-04-18 00:46:34 +0100990 }
991
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000992 _cell_gate_tanh.run();
993
994 // Input gate
995 if(_has_cifg)
996 {
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100997 _input_gate_sub.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000998 }
999 else
1000 {
1001 _mm_input_to_input.run();
1002 _input_to_input_outstage.run();
1003 _mm_recurrent_to_input.run();
1004 _recurrent_to_input_outstage.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +01001005 _accumulate_input_recurrent_input.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001006
1007 if(_has_peephole)
1008 {
Michalis Spyrou6eb73452020-07-02 17:39:25 +01001009 _pixelwise_mul_cell_to_input.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001010 _cell_to_input_outstage.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +01001011 _accumulate_cell_input.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001012 }
1013
Sang-Hoon Park9230e272020-04-18 00:46:34 +01001014 if(_has_layer_norm)
1015 {
Michalis Spyrouebcebf12020-10-21 00:04:14 +01001016 NEScheduler::get().schedule(get_layer_norm(LayerNormGate::Input).get(), Window::DimY);
Sang-Hoon Park9230e272020-04-18 00:46:34 +01001017 }
1018
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +01001019 _input_gate_sigmoid.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001020 }
1021
1022 // Cell.
Michalis Spyrou6eb73452020-07-02 17:39:25 +01001023 _pixelwise_mul_forget_cell.run();
1024 _pixelwise_mul_input_cell.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +01001025 _add_forget_cell.run();
1026
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001027 if(_has_cell_clipping)
1028 {
1029 _cell_clip.run();
1030 }
1031
1032 // Output gate.
1033 _mm_input_to_output.run();
1034 _input_to_output_outstage.run();
1035 _mm_recurrent_to_output.run();
1036 _recurrent_to_output_outstage.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +01001037 _accumulate_input_recurrent_output.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001038 if(_has_peephole)
1039 {
Michalis Spyrou6eb73452020-07-02 17:39:25 +01001040 _pixelwise_mul_cell_to_output.run();
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +01001041 _cell_to_output_outstage.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +01001042 _accumulate_cell_to_output.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001043 }
1044
Sang-Hoon Park9230e272020-04-18 00:46:34 +01001045 if(_has_layer_norm)
1046 {
Michalis Spyrouebcebf12020-10-21 00:04:14 +01001047 NEScheduler::get().schedule(get_layer_norm(LayerNormGate::Output).get(), Window::DimY);
Sang-Hoon Park9230e272020-04-18 00:46:34 +01001048 }
1049
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001050 _output_gate_sigmoid.run();
1051
1052 // Hidden.
1053 _hidden_tanh.run();
Michalis Spyrou6eb73452020-07-02 17:39:25 +01001054 _pixelwise_mul_hidden.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001055 _hidden_outstage.run();
1056
1057 // Projection.
1058 if(_has_projection)
1059 {
1060 _mm_projection.run();
1061 _projection_outstage.run();
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +01001062
1063 if(_projection_tensor_copy_required)
1064 {
1065 _projection_output_to_accumulate_copy.run();
1066 }
1067
Michalis Spyrou173ba9b2020-06-23 17:25:43 +01001068 _accumulate_projection.run();
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +01001069
1070 if(_projection_tensor_copy_required)
1071 {
1072 _projection_accumulate_to_output_copy.run();
1073 }
1074
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001075 if(_has_projection_clipping)
1076 {
1077 _projection_clip.run();
1078 }
1079 }
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +01001080 else
1081 {
1082 if(_projection_tensor_copy_required)
1083 {
1084 _hidden_to_output_copy.run();
1085 }
1086 }
Michele Di Giorgiobeb2d452020-05-11 16:17:51 +01001087
1088 // Copy output_state_out to output
Michalis Spyrouebcebf12020-10-21 00:04:14 +01001089 _copy_output.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001090}
1091
1092void NEQLSTMLayer::prepare()
1093{
1094 if(!_is_prepared)
1095 {
1096 // Pre-transpose weights to be used in GEMM.
1097 _input_to_forget_weights_transposed.allocator()->allocate();
1098 _input_to_cell_weights_transposed.allocator()->allocate();
1099 _input_to_output_weights_transposed.allocator()->allocate();
1100 _recurrent_to_forget_weights_transposed.allocator()->allocate();
1101 _recurrent_to_cell_weights_transposed.allocator()->allocate();
1102 _recurrent_to_output_weights_transposed.allocator()->allocate();
1103 _transpose_input_to_forget_weights.run();
1104 _transpose_input_to_cell_weights.run();
1105 _transpose_input_to_output_weights.run();
1106 _transpose_recurrent_to_forget_weights.run();
1107 _transpose_recurrent_to_cell_weights.run();
1108 _transpose_recurrent_to_output_weights.run();
1109
1110 // Precompute effective biases
1111 if(_has_cifg)
1112 {
1113 std::fill_n(reinterpret_cast<int16_t *>(_ones.buffer()), _ones.info()->total_size() / _ones.info()->element_size(), 32767);
1114 }
1115 else
1116 {
1117 _input_to_input_eff_bias.allocator()->allocate();
1118 _recurrent_to_input_eff_bias.allocator()->allocate();
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001119
1120 ITensorPack packII =
1121 {
1122 { TensorType::ACL_SRC, _input_to_input_weights },
1123 { TensorType::ACL_DST, &_input_to_input_eff_bias }
1124 };
1125 NEScheduler::get().schedule_op(_input_to_input_reduction.get(), Window::DimY, _input_to_input_reduction->window(), packII);
1126
1127 ITensorPack packRI =
1128 {
1129 { TensorType::ACL_SRC, _recurrent_to_input_weights },
1130 { TensorType::ACL_DST, &_recurrent_to_input_eff_bias }
1131 };
1132 NEScheduler::get().schedule_op(_recurrent_to_input_reduction.get(), Window::DimY, _recurrent_to_input_reduction->window(), packRI);
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001133
1134 _input_to_input_weights_transposed.allocator()->allocate();
1135 _recurrent_to_input_weights_transposed.allocator()->allocate();
1136 _transpose_input_to_input_weights.run();
1137 _transpose_recurrent_to_input_weights.run();
1138 _input_to_input_weights->mark_as_unused();
1139 _recurrent_to_input_weights->mark_as_unused();
1140 }
1141 _input_to_forget_eff_bias.allocator()->allocate();
1142 _recurrent_to_forget_eff_bias.allocator()->allocate();
1143 _input_to_cell_eff_bias.allocator()->allocate();
1144 _recurrent_to_cell_eff_bias.allocator()->allocate();
1145 _input_to_output_eff_bias.allocator()->allocate();
1146 _recurrent_to_output_eff_bias.allocator()->allocate();
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001147
1148 ITensorPack packIF =
1149 {
1150 { TensorType::ACL_SRC, _input_to_forget_weights },
1151 { TensorType::ACL_DST, &_input_to_forget_eff_bias }
1152 };
1153 NEScheduler::get().schedule_op(_input_to_forget_reduction.get(), Window::DimY, _input_to_forget_reduction->window(), packIF);
1154
1155 ITensorPack packRF =
1156 {
1157 { TensorType::ACL_SRC, _recurrent_to_forget_weights },
1158 { TensorType::ACL_DST, &_recurrent_to_forget_eff_bias }
1159 };
1160 NEScheduler::get().schedule_op(_recurrent_to_forget_reduction.get(), Window::DimY, _recurrent_to_forget_reduction->window(), packRF);
1161
1162 ITensorPack packIC =
1163 {
1164 { TensorType::ACL_SRC, _input_to_cell_weights },
1165 { TensorType::ACL_DST, &_input_to_cell_eff_bias }
1166 };
1167 NEScheduler::get().schedule_op(_input_to_cell_reduction.get(), Window::DimY, _input_to_cell_reduction->window(), packIC);
1168
1169 ITensorPack packRC =
1170 {
1171 { TensorType::ACL_SRC, _recurrent_to_cell_weights },
1172 { TensorType::ACL_DST, &_recurrent_to_cell_eff_bias }
1173 };
1174 NEScheduler::get().schedule_op(_recurrent_to_cell_reduction.get(), Window::DimY, _recurrent_to_cell_reduction->window(), packRC);
1175
1176 ITensorPack packIO =
1177 {
1178 { TensorType::ACL_SRC, _input_to_output_weights },
1179 { TensorType::ACL_DST, &_input_to_output_eff_bias }
1180 };
1181 NEScheduler::get().schedule_op(_input_to_output_reduction.get(), Window::DimY, _input_to_output_reduction->window(), packIO);
1182
1183 ITensorPack packRO =
1184 {
1185 { TensorType::ACL_SRC, _recurrent_to_output_weights },
1186 { TensorType::ACL_DST, &_recurrent_to_output_eff_bias }
1187 };
1188 NEScheduler::get().schedule_op(_recurrent_to_output_reduction.get(), Window::DimY, _recurrent_to_output_reduction->window(), packRO);
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001189
1190 if(_has_projection)
1191 {
Michele Di Giorgio11c562c2020-06-10 16:34:50 +01001192 _projection_eff_bias.allocator()->allocate();
Manuel Bottinicfac51c2021-06-18 15:47:28 +01001193 ITensorPack pack =
1194 {
1195 { TensorType::ACL_SRC, _projection_weights },
1196 { TensorType::ACL_DST, &_projection_eff_bias }
1197 };
1198 NEScheduler::get().schedule_op(_projection_reduction.get(), Window::DimY, _projection_reduction->window(), pack);
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001199 if(_projection_bias != nullptr)
1200 {
Michalis Spyrou173ba9b2020-06-23 17:25:43 +01001201 _projection_bias_add.run();
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001202 _projection_bias->mark_as_unused();
1203 }
1204
1205 _projection_weights_transposed.allocator()->allocate();
1206 _transpose_projection_weights.run();
1207 _projection_weights->mark_as_unused();
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +01001208
1209 if(!_projection_tensor_copy_required)
1210 {
1211 _hidden_gate.mark_as_unused();
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +01001212 _projection_accumulate_res.mark_as_unused();
1213 }
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001214 }
1215
1216 // Mark weights as unused
1217 _input_to_forget_weights->mark_as_unused();
1218 _input_to_cell_weights->mark_as_unused();
1219 _input_to_output_weights->mark_as_unused();
1220 _recurrent_to_forget_weights->mark_as_unused();
1221 _recurrent_to_cell_weights->mark_as_unused();
1222 _recurrent_to_output_weights->mark_as_unused();
1223
1224 _is_prepared = true;
1225 }
1226}
Michele Di Giorgio47a89902020-03-09 19:32:33 +00001227} // namespace arm_compute