blob: 48d69bd6fc42b78a3345833db4683f07c93ffdc0 [file] [log] [blame]
Michalis Spyrou25f45a42018-08-08 12:53:05 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Michalis Spyrou25f45a42018-08-08 12:53:05 +01003 *
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/NELSTMLayer.h"
25
Michalis Spyrou25f45a42018-08-08 12:53:05 +010026#include "arm_compute/core/Utils.h"
27#include "arm_compute/core/Validate.h"
Michele Di Giorgio47a89902020-03-09 19:32:33 +000028#include "arm_compute/core/utils/misc/InfoHelpers.h"
Michalis Spyrou25f45a42018-08-08 12:53:05 +010029#include "arm_compute/core/utils/misc/ShapeCalculator.h"
30#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
31#include "arm_compute/runtime/common/LSTMParams.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010032#include "src/core/NEON/kernels/NEConvertFullyConnectedWeightsKernel.h"
33#include "src/core/NEON/kernels/NEConvertQuantizedSignednessKernel.h"
34#include "src/core/NEON/kernels/NEGEMMInterleave4x4Kernel.h"
35#include "src/core/NEON/kernels/NEGEMMLowpMatrixMultiplyKernel.h"
36#include "src/core/NEON/kernels/NEGEMMLowpOffsetContributionKernel.h"
37#include "src/core/NEON/kernels/NEGEMMLowpOffsetContributionOutputStageKernel.h"
38#include "src/core/NEON/kernels/NEGEMMLowpReductionKernel.h"
39#include "src/core/NEON/kernels/NEGEMMMatrixAdditionKernel.h"
40#include "src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.h"
41#include "src/core/NEON/kernels/NEGEMMTranspose1xWKernel.h"
Michalis Spyrou25f45a42018-08-08 12:53:05 +010042
Michele Di Giorgio47a89902020-03-09 19:32:33 +000043namespace arm_compute
44{
Michalis Spyrou25f45a42018-08-08 12:53:05 +010045using namespace arm_compute::misc::shape_calculator;
Michele Di Giorgio47a89902020-03-09 19:32:33 +000046using namespace arm_compute::utils::info_helpers;
Michalis Spyrou25f45a42018-08-08 12:53:05 +010047
Michalis Spyrouebcebf12020-10-21 00:04:14 +010048NELSTMLayer::~NELSTMLayer() = default;
49
Michalis Spyrou25f45a42018-08-08 12:53:05 +010050NELSTMLayer::NELSTMLayer(std::shared_ptr<IMemoryManager> memory_manager)
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +010051 : _memory_group(std::move(memory_manager)), _fully_connected_input_gate(), _accum_input_gate1(), _subtract_input_gate(), _pixelwise_mul_input_gate(), _activation_input_gate(),
52 _fully_connected_forget_gate(), _accum_forget_gate1(), _pixelwise_mul_forget_gate(), _activation_forget_gate(), _fully_connected_cell_state(), _gemm_cell_state1(), _transpose_cell_state(),
53 _accum_cell_state1(), _accum_cell_state2(), _pixelwise_mul_cell_state1(), _activation_cell_state(), _cell_clip(), _pixelwise_mul_cell_state2(), _fully_connected_output(),
54 _pixelwise_mul_output_state1(), _accum_output1(), _activation_output(), _activation_output_state(), _pixelwise_mul_output_state2(), _fully_connected_output_state(), _projection_clip(),
55 _copy_cell_state(), _copy_output(), _concat_scratch_buffer(), _concat_inputs_forget_gate(), _concat_weights_forget_gate(), _concat_weights_input_gate(), _concat_weights_output(),
56 _mean_std_norm_input_gate(), _pixelwise_mul_input_gate_coeff(), _accum_input_gate_bias(), _mean_std_norm_forget_gate(), _pixelwise_mul_forget_gate_coeff(), _accum_forget_gate_bias(),
57 _mean_std_norm_cell_gate(), _pixelwise_mul_cell_gate_coeff(), _accum_cell_gate_bias(), _mean_std_norm_output_gate(), _pixelwise_mul_output_gate_coeff(), _accum_output_gate_bias(), _input_gate_out1(),
58 _input_gate_out2(), _input_gate_out3(), _input_gate_out4(), _forget_gate_out1(), _forget_gate_out2(), _forget_gate_out3(), _forget_gate_out4(), _forget_gate_out5(), _forget_gate_out6(),
59 _cell_state_out1(), _cell_state_out2(), _cell_state_out3(), _cell_state_out4(), _cell_state_out5(), _output1(), _output2(), _output3(), _output4(), _cell_state_activation(), _output_state1(), _ones(),
60 _input_layer_norm_out1(), _input_layer_norm_out2(), _forget_layer_norm_out1(), _forget_layer_norm_out2(), _cell_layer_norm_out1(), _cell_layer_norm_out2(), _output_layer_norm_out1(),
61 _output_layer_norm_out2(), _run_peephole_opt(false), _run_cifg_opt(false), _perform_cell_clipping(false), _has_projection_weights(false), _perform_projection_clipping(false), _is_prepared(false),
62 _is_layer_norm_lstm(false)
Michalis Spyrou25f45a42018-08-08 12:53:05 +010063{
64}
65
66void NELSTMLayer::configure(const ITensor *input,
67 const ITensor *input_to_forget_weights, const ITensor *input_to_cell_weights, const ITensor *input_to_output_weights,
68 const ITensor *recurrent_to_forget_weights, const ITensor *recurrent_to_cell_weights, const ITensor *recurrent_to_output_weights,
69 const ITensor *forget_gate_bias, const ITensor *cell_bias, const ITensor *output_gate_bias,
70 const ITensor *output_state_in, const ITensor *cell_state_in,
71 ITensor *scratch_buffer, ITensor *output_state_out, ITensor *cell_state_out, ITensor *output,
72 const LSTMParams<ITensor> &lstm_params, const ActivationLayerInfo &activation_info, float cell_threshold, float projection_threshold)
73{
74 ARM_COMPUTE_ERROR_ON_NULLPTR(input,
75 input_to_forget_weights, input_to_cell_weights, input_to_output_weights,
76 recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights,
77 forget_gate_bias, cell_bias, output_gate_bias,
78 output_state_in, cell_state_in,
79 scratch_buffer, output_state_out, cell_state_out, output);
80
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +010081 _is_layer_norm_lstm = lstm_params.use_layer_norm();
82
Michalis Spyrou25f45a42018-08-08 12:53:05 +010083 // Set lstm parameters
Michele Di Giorgio47a89902020-03-09 19:32:33 +000084 LSTMParams<ITensorInfo> lstm_params_info{};
85 build_lstm_params_tensor_info(lstm_params, &lstm_params_info);
Michalis Spyrou25f45a42018-08-08 12:53:05 +010086
87 // Validate
88 ARM_COMPUTE_ERROR_THROW_ON(NELSTMLayer::validate(input->info(), input_to_forget_weights->info(),
89 input_to_cell_weights->info(), input_to_output_weights->info(),
90 recurrent_to_forget_weights->info(), recurrent_to_cell_weights->info(), recurrent_to_output_weights->info(),
91 forget_gate_bias->info(), cell_bias->info(), output_gate_bias->info(),
92 output_state_in->info(), cell_state_in->info(),
93 scratch_buffer->info(), output_state_out->info(), cell_state_out->info(), output->info(),
94 lstm_params_info, activation_info, cell_threshold, projection_threshold));
95
Georgios Pinitasda953f22019-04-02 17:27:03 +010096 const TensorShape cell_state_shape = cell_state_in->info()->tensor_shape();
Michalis Spyrou25f45a42018-08-08 12:53:05 +010097
98 // Configure block that calculates the forget gate
99 // forget_gate = Activation(input * input_to_forget_weights + output_state_in * recurrent_to_forget_weights + PixelWiseMul(cell_state, cell_to_forget_weights) + forget_gate_bias)
John Kesapides917959c2019-02-04 12:37:29 +0000100 // We optimize this as follows:
101 // forget_gate = Activation( (input,output_state_in) * (input_to_forget_weights,recurrent_to_forget_weights) + PixelWiseMul(cell_state, cell_to_forget_weights) + forget_gate_bias)
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100102 _forget_gate_out1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100103 _forget_gate_out3.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
104 _forget_gate_out5.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
105
John Kesapides917959c2019-02-04 12:37:29 +0000106 std::vector<const ITensor *> inputs_vector;
107 inputs_vector.emplace_back(input);
108 inputs_vector.emplace_back(output_state_in);
109
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100110 _memory_group.manage(&_forget_gate_out2);
Georgios Pinitas09f24972019-05-17 18:14:40 +0100111 _concat_inputs_forget_gate.configure(inputs_vector, &_forget_gate_out2, Window::DimX);
John Kesapides917959c2019-02-04 12:37:29 +0000112
113 std::vector<const ITensor *> weights_vector;
114
115 weights_vector.emplace_back(input_to_forget_weights);
116 weights_vector.emplace_back(recurrent_to_forget_weights);
117
Georgios Pinitas09f24972019-05-17 18:14:40 +0100118 _concat_weights_forget_gate.configure(weights_vector, &_forget_gate_out6, Window::DimX);
John Kesapides917959c2019-02-04 12:37:29 +0000119
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100120 _memory_group.manage(&_forget_gate_out5);
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100121 _fully_connected_forget_gate.configure(&_forget_gate_out2, &_forget_gate_out6, (_is_layer_norm_lstm) ? nullptr : forget_gate_bias, &_forget_gate_out5);
John Kesapides917959c2019-02-04 12:37:29 +0000122 _memory_group.manage(&_forget_gate_out1);
123 _memory_group.manage(&_forget_gate_out3);
124 _forget_gate_out6.allocator()->allocate();
125
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100126 Tensor *forget_gate_out = &_forget_gate_out5;
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100127 if(lstm_params.has_peephole_opt())
128 {
129 _forget_gate_out4.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
130
131 _run_peephole_opt = true;
132 _memory_group.manage(&_forget_gate_out4);
133 _pixelwise_mul_forget_gate.configure(cell_state_in, lstm_params.cell_to_forget_weights(), &_forget_gate_out4, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100134 _accum_forget_gate1.configure(&_forget_gate_out5, &_forget_gate_out4, &_forget_gate_out3, ConvertPolicy::SATURATE);
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100135 _forget_gate_out4.allocator()->allocate();
136 _forget_gate_out5.allocator()->allocate();
137 forget_gate_out = &_forget_gate_out3;
138 }
139 else
140 {
141 _forget_gate_out3.allocator()->allocate();
142 }
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100143 if(_is_layer_norm_lstm)
144 {
145 _forget_layer_norm_out1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
146 _forget_layer_norm_out2.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
147 _memory_group.manage(&_forget_layer_norm_out1);
148 _memory_group.manage(&_forget_layer_norm_out2);
149 _mean_std_norm_forget_gate.configure(forget_gate_out);
150 _pixelwise_mul_forget_gate_coeff.configure(forget_gate_out, lstm_params.forget_layer_norm_weights(), &_forget_layer_norm_out1, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
151 // forget_gate_out is going to be reassigned, so allocate the tensor that it was assigned to before
152 forget_gate_out->allocator()->allocate();
153 _accum_forget_gate_bias.configure(&_forget_layer_norm_out1, forget_gate_bias, &_forget_layer_norm_out2, ConvertPolicy::SATURATE);
154 _forget_layer_norm_out1.allocator()->allocate();
155 forget_gate_out = &_forget_layer_norm_out2;
156 }
Georgios Pinitas4f859822019-02-06 18:08:04 +0000157 _activation_forget_gate.configure(forget_gate_out, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100158
159 // Configure block that calculates the input gate
160 // input_gate = Activation(input * input_to_input_weights + output_state * recurrent_to_input_weights + PixelWiseMul(cell_state, cell_to_input_weights) + input_gate_bias), without CIFG
161 // input_gate = 1 - forget_gate, with CIFG
John Kesapides917959c2019-02-04 12:37:29 +0000162 // We optimize this as follows:
163 // input_gate = Activation((input,output_state) * (input_to_input_weights,recurrent_to_input_weights) + PixelWiseMul(cell_state, cell_to_input_weights) + input_gate_bias), without CIFG
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100164 _input_gate_out1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
Georgios Pinitas4f859822019-02-06 18:08:04 +0000165 Tensor *input_gate_out = &_input_gate_out1;
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100166 if(lstm_params.has_cifg_opt())
167 {
168 _memory_group.manage(&_input_gate_out1);
169 _ones.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
Georgios Pinitas4f859822019-02-06 18:08:04 +0000170 _subtract_input_gate.configure(&_ones, forget_gate_out, &_input_gate_out1, ConvertPolicy::SATURATE);
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100171 _ones.allocator()->allocate();
172 _run_cifg_opt = true;
173 }
174 else
175 {
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100176 _input_gate_out3.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
177 _input_gate_out4.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
John Kesapides917959c2019-02-04 12:37:29 +0000178
179 std::vector<const ITensor *> lstm_weights;
180 lstm_weights.emplace_back(lstm_params.input_to_input_weights());
181 lstm_weights.emplace_back(lstm_params.recurrent_to_input_weights());
182
Georgios Pinitas09f24972019-05-17 18:14:40 +0100183 _concat_weights_input_gate.configure(lstm_weights, &_input_gate_out2, Window::DimX);
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100184
185 _memory_group.manage(&_input_gate_out1);
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100186 _memory_group.manage(&_input_gate_out4);
John Kesapides917959c2019-02-04 12:37:29 +0000187
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100188 _fully_connected_input_gate.configure(&_forget_gate_out2, &_input_gate_out2, (_is_layer_norm_lstm) ? nullptr : lstm_params.input_gate_bias(), &_input_gate_out3);
John Kesapides917959c2019-02-04 12:37:29 +0000189 _input_gate_out2.allocator()->allocate();
190 input_gate_out = &_input_gate_out3;
191
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100192 if(_run_peephole_opt)
193 {
John Kesapides917959c2019-02-04 12:37:29 +0000194 _memory_group.manage(&_input_gate_out4);
195 _pixelwise_mul_input_gate.configure(cell_state_in, lstm_params.cell_to_input_weights(), &_input_gate_out4, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100196 _accum_input_gate1.configure(&_input_gate_out3, &_input_gate_out4, &_input_gate_out1, ConvertPolicy::SATURATE);
John Kesapides917959c2019-02-04 12:37:29 +0000197 _input_gate_out3.allocator()->allocate();
Georgios Pinitas4f859822019-02-06 18:08:04 +0000198 _input_gate_out4.allocator()->allocate();
Georgios Pinitas4f859822019-02-06 18:08:04 +0000199 input_gate_out = &_input_gate_out1;
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100200 }
Georgios Pinitas4f859822019-02-06 18:08:04 +0000201 else
202 {
203 _input_gate_out1.allocator()->allocate();
204 }
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100205
206 if(_is_layer_norm_lstm)
207 {
208 _input_layer_norm_out1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
209 _input_layer_norm_out2.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
210 _memory_group.manage(&_input_layer_norm_out1);
211 _memory_group.manage(&_input_layer_norm_out2);
212 _mean_std_norm_input_gate.configure(input_gate_out);
213 _pixelwise_mul_input_gate_coeff.configure(input_gate_out, lstm_params.input_layer_norm_weights(), &_input_layer_norm_out1, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
214 // input_gate_out is going to be reassigned, so allocate the tensor that it was assigned to before
215 input_gate_out->allocator()->allocate();
216 _accum_input_gate_bias.configure(&_input_layer_norm_out1, lstm_params.input_gate_bias(), &_input_layer_norm_out2, ConvertPolicy::SATURATE);
217 _input_layer_norm_out1.allocator()->allocate();
218 input_gate_out = &_input_layer_norm_out2;
219 }
Georgios Pinitas4f859822019-02-06 18:08:04 +0000220 _activation_input_gate.configure(input_gate_out, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100221 }
222
223 // Configure block that calculates the cell state
224 // cell_state = Clip((PixelwiseMul(input_gate, Activation(input * input_to_cell_weights + output_state_in * recurrent_to_cell_weights + cell_bias)) + PixelwiseMul(forget_gate, cell_state)), cell_threshold)
225 TensorShape cell_state1_shape = compute_transposed_shape(*recurrent_to_output_weights->info());
226 _cell_state_out1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
227 _cell_state_out2.allocator()->init(TensorInfo(cell_state1_shape, 1, input->info()->data_type()));
228 _cell_state_out3.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
229 _cell_state_out4.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
230 _cell_state_out5.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
231
232 _memory_group.manage(&_cell_state_out1);
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100233 _fully_connected_cell_state.configure(input, input_to_cell_weights, (_is_layer_norm_lstm) ? nullptr : cell_bias, &_cell_state_out1);
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100234 _memory_group.manage(&_cell_state_out2);
235 _transpose_cell_state.configure(recurrent_to_cell_weights, &_cell_state_out2);
236 _memory_group.manage(&_cell_state_out3);
237 _gemm_cell_state1.configure(output_state_in, &_cell_state_out2, nullptr, &_cell_state_out3, 1.f, 0.f);
238 _cell_state_out2.allocator()->allocate();
239 _memory_group.manage(&_cell_state_out4);
240 _accum_cell_state1.configure(&_cell_state_out1, &_cell_state_out3, &_cell_state_out4, ConvertPolicy::SATURATE);
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100241 Tensor *cell_state_out_ptr = &_cell_state_out4;
242 if(_is_layer_norm_lstm)
243 {
244 _cell_layer_norm_out1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
245 _cell_layer_norm_out2.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
246 _memory_group.manage(&_cell_layer_norm_out1);
247 _memory_group.manage(&_cell_layer_norm_out2);
248 _mean_std_norm_cell_gate.configure(cell_state_out_ptr);
249 _pixelwise_mul_cell_gate_coeff.configure(cell_state_out_ptr, lstm_params.cell_layer_norm_weights(), &_cell_layer_norm_out1, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
250 // cell_state_out_ptr is going to be reassigned, so allocate the tensor that it was assigned to before
251 cell_state_out_ptr->allocator()->allocate();
252 _accum_cell_gate_bias.configure(&_cell_layer_norm_out1, cell_bias, &_cell_layer_norm_out2, ConvertPolicy::SATURATE);
253 _cell_layer_norm_out1.allocator()->allocate();
254 cell_state_out_ptr = &_cell_layer_norm_out2;
255 }
256 _activation_cell_state.configure(cell_state_out_ptr, nullptr, activation_info);
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100257 _memory_group.manage(&_cell_state_out5);
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100258 _pixelwise_mul_cell_state1.configure(cell_state_out_ptr, input_gate_out, &_cell_state_out5, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
259 cell_state_out_ptr->allocator()->allocate();
Georgios Pinitas4f859822019-02-06 18:08:04 +0000260 _pixelwise_mul_cell_state2.configure(forget_gate_out, cell_state_in, &_cell_state_out3, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100261 _accum_cell_state2.configure(&_cell_state_out5, &_cell_state_out3, &_cell_state_out1, ConvertPolicy::SATURATE);
262 _cell_state_out3.allocator()->allocate();
263 _cell_state_out5.allocator()->allocate();
264 // Perform clipping
265 if(cell_threshold != 0.f)
266 {
267 _perform_cell_clipping = true;
268 _cell_clip.configure(&_cell_state_out1, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -cell_threshold, cell_threshold));
269 }
270
271 // Configure block that calculates the output
272 // output_state_out = Activation(input * input_to_output_weights + output_state_in * recurrent_to_output_weights + PixelWiseMul(cell_state, cell_to_output_weights) + output_gate_bias)
John Kesapides917959c2019-02-04 12:37:29 +0000273 // We optimize this as follows:
274 // output_state_out = Activation( (input,output_state_in) * (input_to_output_weights, recurrent_to_output_weights) + PixelWiseMul(cell_state, cell_to_output_weights) + output_gate_bias)
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100275 _output1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
John Kesapides917959c2019-02-04 12:37:29 +0000276 _output4.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100277
John Kesapides917959c2019-02-04 12:37:29 +0000278 std::vector<const ITensor *> in_out_weights;
279 in_out_weights.emplace_back(input_to_output_weights);
280 in_out_weights.emplace_back(recurrent_to_output_weights);
281
Georgios Pinitas09f24972019-05-17 18:14:40 +0100282 _concat_weights_output.configure(in_out_weights, &_output2, Window::DimX);
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100283 _memory_group.manage(&_output1);
John Kesapides917959c2019-02-04 12:37:29 +0000284 _memory_group.manage(&_output4);
285
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100286 _fully_connected_output.configure(&_forget_gate_out2, &_output2, (_is_layer_norm_lstm) ? nullptr : output_gate_bias, &_output4);
John Kesapides917959c2019-02-04 12:37:29 +0000287
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100288 _output2.allocator()->allocate();
John Kesapides917959c2019-02-04 12:37:29 +0000289 _forget_gate_out2.allocator()->allocate();
290
291 Tensor *output_gate_out = &_output4;
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100292 if(lstm_params.has_peephole_opt())
293 {
John Kesapides917959c2019-02-04 12:37:29 +0000294 _output3.allocator()->init(TensorInfo(_cell_state_out1.info()->tensor_shape(), 1, input->info()->data_type()));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100295
John Kesapides917959c2019-02-04 12:37:29 +0000296 _memory_group.manage(&_output3);
297 _pixelwise_mul_output_state1.configure(&_cell_state_out1, lstm_params.cell_to_output_weights(), &_output3, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100298 _accum_output1.configure(&_output4, &_output3, &_output1, ConvertPolicy::SATURATE);
John Kesapides917959c2019-02-04 12:37:29 +0000299 _output4.allocator()->allocate();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100300 output_gate_out = &_output1;
301
302 // Allocate intermediate buffers
John Kesapides917959c2019-02-04 12:37:29 +0000303 _output3.allocator()->allocate();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100304 }
305 else
306 {
307 _output1.allocator()->allocate();
308 }
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100309 if(_is_layer_norm_lstm)
310 {
311 _output_layer_norm_out1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
312 _output_layer_norm_out2.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
313 _memory_group.manage(&_output_layer_norm_out1);
314 _memory_group.manage(&_output_layer_norm_out2);
315 _mean_std_norm_output_gate.configure(output_gate_out);
316 _pixelwise_mul_output_gate_coeff.configure(output_gate_out, lstm_params.output_layer_norm_weights(), &_output_layer_norm_out1, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
317 // output_gate_out is going to be reassigned, so allocate the tensor that it was assigned to before
318 output_gate_out->allocator()->allocate();
319 _accum_output_gate_bias.configure(&_output_layer_norm_out1, output_gate_bias, &_output_layer_norm_out2, ConvertPolicy::SATURATE);
320 _output_layer_norm_out1.allocator()->allocate();
321 output_gate_out = &_output_layer_norm_out2;
322 }
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100323 _activation_output.configure(output_gate_out, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100324
325 // Configure block that calculates the output state
326 /** lstm_res = PixelwiseMul(output, Activation(cell_state))
327 *
328 * -- Clip(lstm_res * projection_weights + projection_bias, projection_threshold) , if there is a projection
329 * /
330 * output_state = --
331 * \
332 * -- lstm_res , otherwise
333 */
334 ITensor *output_state_out_tmp = lstm_params.has_projection() ? &_output_state1 : output_state_out;
335 _cell_state_activation.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
336 _output_state1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
337
338 _memory_group.manage(&_cell_state_activation);
339 _activation_output_state.configure(&_cell_state_out1, &_cell_state_activation, activation_info);
340 _pixelwise_mul_output_state2.configure(&_cell_state_activation, output_gate_out, output_state_out_tmp, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO);
341 _cell_state_activation.allocator()->allocate();
Georgios Pinitas13a20802019-01-16 18:21:08 +0000342 output_gate_out->allocator()->allocate();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100343
344 if(lstm_params.has_projection())
345 {
346 _has_projection_weights = true;
347 _fully_connected_output_state.configure(output_state_out_tmp, lstm_params.projection_weights(), lstm_params.projection_bias(), output_state_out);
348 _output_state1.allocator()->allocate();
349 // Perform clipping
350 if(projection_threshold != 0.f)
351 {
352 _perform_projection_clipping = true;
353 _projection_clip.configure(output_state_out, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -projection_threshold, projection_threshold));
354 }
355 }
356
357 // Copy cell state and output
358 _copy_cell_state.configure(&_cell_state_out1, cell_state_out);
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100359 _copy_output.configure(output_state_out, output);
360
361 // Vector for holding the tensors to store in scratch buffer
Georgios Pinitas4667ddd2020-07-13 21:21:33 +0100362 std::vector<const ITensor *> scratch_inputs;
Georgios Pinitas0cc37c32018-11-14 15:54:26 +0000363 if(!lstm_params.has_cifg_opt())
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100364 {
Georgios Pinitas4f859822019-02-06 18:08:04 +0000365 scratch_inputs.emplace_back(input_gate_out);
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100366 }
367 scratch_inputs.emplace_back(&_cell_state_out1);
368 scratch_inputs.emplace_back(forget_gate_out);
369 scratch_inputs.emplace_back(output_gate_out);
Georgios Pinitas09f24972019-05-17 18:14:40 +0100370 _concat_scratch_buffer.configure(scratch_inputs, scratch_buffer, Window::DimX);
Georgios Pinitas4f859822019-02-06 18:08:04 +0000371 input_gate_out->allocator()->allocate();
372 _cell_state_out1.allocator()->allocate();
373 forget_gate_out->allocator()->allocate();
374 output_gate_out->allocator()->allocate();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100375}
376
377Status NELSTMLayer::validate(const ITensorInfo *input,
378 const ITensorInfo *input_to_forget_weights, const ITensorInfo *input_to_cell_weights, const ITensorInfo *input_to_output_weights,
379 const ITensorInfo *recurrent_to_forget_weights, const ITensorInfo *recurrent_to_cell_weights, const ITensorInfo *recurrent_to_output_weights,
380 const ITensorInfo *forget_gate_bias, const ITensorInfo *cell_bias, const ITensorInfo *output_gate_bias,
381 const ITensorInfo *output_state_in, const ITensorInfo *cell_state_in,
382 const ITensorInfo *scratch_buffer, const ITensorInfo *output_state_out, const ITensorInfo *cell_state_out, const ITensorInfo *output,
383 const LSTMParams<ITensorInfo> &lstm_params, const ActivationLayerInfo &activation_info, float cell_threshold, float projection_threshold)
384{
385 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input,
386 input_to_forget_weights, input_to_cell_weights, input_to_output_weights,
387 recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights,
388 forget_gate_bias, cell_bias, output_gate_bias,
389 output_state_in, cell_state_in,
390 scratch_buffer, output_state_out, cell_state_out, output);
391
392 // Check data types
393 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
394 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input,
395 input_to_forget_weights, input_to_cell_weights, input_to_output_weights,
396 recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights,
397 forget_gate_bias, cell_bias, output_gate_bias,
398 output_state_in, cell_state_in,
399 scratch_buffer, output_state_out, cell_state_out, output);
400
401 // Check dimensions
402 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 2);
403 ARM_COMPUTE_RETURN_ERROR_ON(input_to_forget_weights->num_dimensions() > 2);
404 ARM_COMPUTE_RETURN_ERROR_ON(input_to_cell_weights->num_dimensions() > 2);
405 ARM_COMPUTE_RETURN_ERROR_ON(input_to_output_weights->num_dimensions() > 2);
406 ARM_COMPUTE_RETURN_ERROR_ON(recurrent_to_forget_weights->num_dimensions() > 2);
407 ARM_COMPUTE_RETURN_ERROR_ON(recurrent_to_cell_weights->num_dimensions() > 2);
408 ARM_COMPUTE_RETURN_ERROR_ON(recurrent_to_output_weights->num_dimensions() > 2);
409 ARM_COMPUTE_RETURN_ERROR_ON(forget_gate_bias->num_dimensions() > 1);
410 ARM_COMPUTE_RETURN_ERROR_ON(cell_bias->num_dimensions() > 1);
411 ARM_COMPUTE_RETURN_ERROR_ON(output_gate_bias->num_dimensions() > 1);
412 ARM_COMPUTE_RETURN_ERROR_ON(output_state_in->num_dimensions() > 2);
413 ARM_COMPUTE_RETURN_ERROR_ON(cell_state_in->num_dimensions() > 2);
414 ARM_COMPUTE_RETURN_ERROR_ON(scratch_buffer->num_dimensions() > 2);
415 ARM_COMPUTE_RETURN_ERROR_ON(output_state_out->num_dimensions() > 2);
416 ARM_COMPUTE_RETURN_ERROR_ON(cell_state_out->num_dimensions() > 2);
417 ARM_COMPUTE_RETURN_ERROR_ON(output->num_dimensions() > 2);
418 ARM_COMPUTE_RETURN_ERROR_ON(cell_bias->dimension(0) * 4 != scratch_buffer->dimension(0)
419 && cell_bias->dimension(0) * 3 != scratch_buffer->dimension(0));
420
421 const unsigned int num_batches = input->dimension(1);
422 const unsigned int num_cells = input_to_output_weights->dimension(1);
423
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100424 if(lstm_params.use_layer_norm())
425 {
426 // If CIFG is used, input layer normalization weights tensor is omitted
427 if(lstm_params.has_cifg_opt())
428 {
429 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.input_layer_norm_weights() != nullptr);
430 }
431 else
432 {
433 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(lstm_params.input_layer_norm_weights());
434 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.input_layer_norm_weights()->num_dimensions() > 1);
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100435 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.input_layer_norm_weights()->dimension(0) != num_cells);
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100436 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, lstm_params.input_layer_norm_weights());
437 }
438
439 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(lstm_params.forget_layer_norm_weights(), lstm_params.cell_layer_norm_weights(), lstm_params.output_layer_norm_weights());
440 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, lstm_params.forget_layer_norm_weights(), lstm_params.cell_layer_norm_weights(), lstm_params.output_layer_norm_weights());
441 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.forget_layer_norm_weights()->num_dimensions() > 1);
442 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.cell_layer_norm_weights()->num_dimensions() > 1);
443 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.output_layer_norm_weights()->num_dimensions() > 1);
Sang-Hoon Parkd5c020a2020-05-06 21:01:19 +0100444 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.forget_layer_norm_weights()->dimension(0) != num_cells);
445 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.cell_layer_norm_weights()->dimension(0) != num_cells);
446 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.output_layer_norm_weights()->dimension(0) != num_cells);
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100447 }
448
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100449 // Check peephole optimization
450 if(lstm_params.has_peephole_opt())
451 {
452 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(lstm_params.cell_to_output_weights(), lstm_params.cell_to_forget_weights());
453 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.cell_to_forget_weights()->num_dimensions() > 1);
454 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.cell_to_output_weights()->num_dimensions() > 1);
455 }
456
457 TensorShape units_out_transposed_shape = compute_transposed_shape(*recurrent_to_output_weights);
458 TensorShape num_units_transposed_shape = compute_transposed_shape(*forget_gate_bias);
459 const TensorInfo units_out_transposed_info = TensorInfo(units_out_transposed_shape, 1, input->data_type());
460 const TensorInfo num_units_transposed_info = TensorInfo(num_units_transposed_shape, 1, input->data_type());
461
462 TensorInfo input_gate = TensorInfo(TensorShape(num_cells, num_batches), 1, input->data_type());
463 TensorInfo forget_gate = TensorInfo(TensorShape(num_cells, num_batches), 1, input->data_type());
464 TensorInfo output_gate_tmp = TensorInfo(TensorShape(num_cells, num_batches), 1, input->data_type());
465 TensorInfo cell_state_tmp = TensorInfo(TensorShape(num_cells, num_batches), 1, input->data_type());
466
John Kesapides917959c2019-02-04 12:37:29 +0000467 std::vector<const ITensorInfo *> inputs_vector;
468 inputs_vector.emplace_back(input);
469 inputs_vector.emplace_back(output_state_in);
Georgios Pinitas09f24972019-05-17 18:14:40 +0100470 const TensorShape concat_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(inputs_vector, 0);
471 TensorInfo forget_gate_concat = TensorInfo(concat_shape, 1, input->data_type());
472 ARM_COMPUTE_RETURN_ON_ERROR(NEConcatenateLayer::validate(inputs_vector, &forget_gate_concat, Window::DimX));
John Kesapides917959c2019-02-04 12:37:29 +0000473
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100474 // Validate forget gate
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100475 ARM_COMPUTE_RETURN_ON_ERROR(NEFullyConnectedLayer::validate(input, input_to_forget_weights, (lstm_params.use_layer_norm()) ? nullptr : forget_gate_bias, &forget_gate));
John Kesapides917959c2019-02-04 12:37:29 +0000476
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100477 if(lstm_params.has_peephole_opt())
478 {
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100479 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(cell_state_in, lstm_params.cell_to_forget_weights(), &forget_gate, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100480 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&forget_gate, &forget_gate, &forget_gate, ConvertPolicy::SATURATE));
481 }
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100482 if(lstm_params.use_layer_norm())
483 {
484 ARM_COMPUTE_RETURN_ON_ERROR(NEMeanStdDevNormalizationLayer::validate(&forget_gate));
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100485 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&forget_gate, lstm_params.forget_layer_norm_weights(), &forget_gate, 1, ConvertPolicy::SATURATE,
486 RoundingPolicy::TO_ZERO));
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100487 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&forget_gate, forget_gate_bias, &forget_gate, ConvertPolicy::SATURATE));
488 }
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100489 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&forget_gate, &forget_gate, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC)));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100490
491 // Validate input gate
492 if(!lstm_params.has_cifg_opt())
493 {
494 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(lstm_params.input_to_input_weights(),
495 lstm_params.recurrent_to_input_weights(),
496 lstm_params.input_gate_bias());
497 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.input_to_input_weights()->num_dimensions() > 2);
498 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.recurrent_to_input_weights()->num_dimensions() > 2);
499 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.input_gate_bias()->num_dimensions() > 1);
500
John Kesapides917959c2019-02-04 12:37:29 +0000501 std::vector<const ITensorInfo *> lstm_weights;
502 lstm_weights.emplace_back(lstm_params.input_to_input_weights());
503 lstm_weights.emplace_back(lstm_params.recurrent_to_input_weights());
Georgios Pinitas09f24972019-05-17 18:14:40 +0100504 TensorShape lstm_weights_concat_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(lstm_weights, 0);
505 TensorInfo lstm_gate_concat = TensorInfo(lstm_weights_concat_shape, 1, input->data_type());
506 ARM_COMPUTE_RETURN_ON_ERROR(NEConcatenateLayer::validate(lstm_weights, &lstm_gate_concat, Window::DimX));
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100507 ARM_COMPUTE_RETURN_ON_ERROR(NEFullyConnectedLayer::validate(input, lstm_params.input_to_input_weights(), (lstm_params.use_layer_norm()) ? nullptr : lstm_params.input_gate_bias(), &input_gate));
John Kesapides917959c2019-02-04 12:37:29 +0000508
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100509 if(lstm_params.has_peephole_opt())
510 {
511 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(lstm_params.cell_to_input_weights());
512 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.cell_to_input_weights()->num_dimensions() > 1);
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100513 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(cell_state_in, lstm_params.cell_to_input_weights(), &input_gate, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100514 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&input_gate, &input_gate, &input_gate, ConvertPolicy::SATURATE));
515 }
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100516
517 if(lstm_params.use_layer_norm())
518 {
519 ARM_COMPUTE_RETURN_ON_ERROR(NEMeanStdDevNormalizationLayer::validate(&input_gate));
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100520 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&input_gate, lstm_params.input_layer_norm_weights(), &input_gate, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO));
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100521 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&input_gate, lstm_params.input_gate_bias(), &input_gate, ConvertPolicy::SATURATE));
522 }
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100523 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&input_gate, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC)));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100524 }
525 else
526 {
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100527 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticSubtraction::validate(&forget_gate, &forget_gate, &forget_gate, ConvertPolicy::SATURATE));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100528 }
529
530 // Validate cell state
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100531 ARM_COMPUTE_RETURN_ON_ERROR(NEFullyConnectedLayer::validate(input, input_to_cell_weights, (lstm_params.use_layer_norm()) ? nullptr : cell_bias, &cell_state_tmp));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100532 ARM_COMPUTE_RETURN_ON_ERROR(NEGEMM::validate(output_state_in, &units_out_transposed_info, nullptr, &cell_state_tmp, 1.f, 0.f, GEMMInfo()));
533 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&cell_state_tmp, &cell_state_tmp, &cell_state_tmp, ConvertPolicy::SATURATE));
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100534 if(lstm_params.use_layer_norm())
535 {
536 ARM_COMPUTE_RETURN_ON_ERROR(NEMeanStdDevNormalizationLayer::validate(&cell_state_tmp));
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100537 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&cell_state_tmp, lstm_params.cell_layer_norm_weights(), &cell_state_tmp, 1, ConvertPolicy::SATURATE,
538 RoundingPolicy::TO_ZERO));
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100539 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&cell_state_tmp, cell_bias, &cell_state_tmp, ConvertPolicy::SATURATE));
540 }
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100541 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&cell_state_tmp, nullptr, activation_info));
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100542 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&cell_state_tmp, &input_gate, &cell_state_tmp, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO));
543 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&cell_state_tmp, &forget_gate, &cell_state_tmp, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100544 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&cell_state_tmp, &cell_state_tmp, &cell_state_tmp, ConvertPolicy::SATURATE));
545 if(cell_threshold != 0.f)
546 {
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100547 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&cell_state_tmp, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -cell_threshold,
548 cell_threshold)));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100549 }
550
551 // Validate output gate tmp
John Kesapides917959c2019-02-04 12:37:29 +0000552 std::vector<const ITensorInfo *> in_out_weights;
553 in_out_weights.emplace_back(input_to_output_weights);
554 in_out_weights.emplace_back(recurrent_to_output_weights);
Georgios Pinitas09f24972019-05-17 18:14:40 +0100555 TensorShape in_out_weights_concat_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(in_out_weights, 0);
556 TensorInfo in_out_gate_concat = TensorInfo(in_out_weights_concat_shape, 1, input->data_type());
557 ARM_COMPUTE_RETURN_ON_ERROR(NEConcatenateLayer::validate(in_out_weights, &in_out_gate_concat, Window::DimX));
John Kesapides917959c2019-02-04 12:37:29 +0000558
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100559 ARM_COMPUTE_RETURN_ON_ERROR(NEFullyConnectedLayer::validate(input, input_to_output_weights, (lstm_params.use_layer_norm()) ? nullptr : output_gate_bias, &output_gate_tmp));
John Kesapides917959c2019-02-04 12:37:29 +0000560
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100561 if(lstm_params.has_peephole_opt())
562 {
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100563 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&cell_state_tmp, lstm_params.cell_to_output_weights(), &output_gate_tmp, 1, ConvertPolicy::SATURATE,
564 RoundingPolicy::TO_ZERO));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100565 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&output_gate_tmp, &output_gate_tmp, &output_gate_tmp, ConvertPolicy::SATURATE));
566 }
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100567 if(lstm_params.use_layer_norm())
568 {
569 ARM_COMPUTE_RETURN_ON_ERROR(NEMeanStdDevNormalizationLayer::validate(&output_gate_tmp));
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100570 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&output_gate_tmp, lstm_params.output_layer_norm_weights(), &output_gate_tmp, 1, ConvertPolicy::SATURATE,
571 RoundingPolicy::TO_ZERO));
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100572 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&output_gate_tmp, output_gate_bias, &output_gate_tmp, ConvertPolicy::SATURATE));
573 }
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100574 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&output_gate_tmp, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC)));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100575
576 // Validate output state
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100577 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&cell_state_tmp, &cell_state_tmp, activation_info));
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100578 ARM_COMPUTE_RETURN_ON_ERROR(NEPixelWiseMultiplication::validate(&cell_state_tmp, &output_gate_tmp, &output_gate_tmp, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100579 if(lstm_params.has_projection())
580 {
581 ARM_COMPUTE_RETURN_ON_ERROR(NEFullyConnectedLayer::validate(&output_gate_tmp, lstm_params.projection_weights(), lstm_params.projection_bias(), output_state_out));
582 if(projection_threshold != 0.f)
583 {
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100584 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(output_state_out, output_state_out,
585 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -projection_threshold, projection_threshold)));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100586 }
587 }
588
589 // Validate copy kernel
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100590 ARM_COMPUTE_RETURN_ON_ERROR(NECopy::validate(&cell_state_tmp, cell_state_out));
591 ARM_COMPUTE_RETURN_ON_ERROR(NECopy::validate(output_state_out, output));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100592
593 // Validate scratch concatenation
Georgios Pinitas4667ddd2020-07-13 21:21:33 +0100594 std::vector<const ITensorInfo *> inputs_vector_info_raw;
Georgios Pinitas0cc37c32018-11-14 15:54:26 +0000595 if(!lstm_params.has_cifg_opt())
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100596 {
597 inputs_vector_info_raw.push_back(&input_gate);
598 }
599 inputs_vector_info_raw.push_back(&cell_state_tmp);
600 inputs_vector_info_raw.push_back(&forget_gate);
601 inputs_vector_info_raw.push_back(&output_gate_tmp);
602
Georgios Pinitas09f24972019-05-17 18:14:40 +0100603 ARM_COMPUTE_RETURN_ON_ERROR(NEConcatenateLayer::validate(inputs_vector_info_raw, scratch_buffer, Window::DimX));
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100604 return Status{};
605}
606
607void NELSTMLayer::run()
608{
John Kesapides917959c2019-02-04 12:37:29 +0000609 prepare();
610
Georgios Pinitasda953f22019-04-02 17:27:03 +0100611 MemoryGroupResourceScope scope_mg(_memory_group);
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100612
Michalis Spyrou2761c2f2019-03-22 13:06:08 +0000613 _concat_inputs_forget_gate.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100614 _fully_connected_forget_gate.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100615
616 if(_run_peephole_opt)
617 {
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100618 _pixelwise_mul_forget_gate.run();
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100619 _accum_forget_gate1.run();
620 }
621 if(_is_layer_norm_lstm)
622 {
623 _mean_std_norm_forget_gate.run();
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100624 _pixelwise_mul_forget_gate_coeff.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100625 _accum_forget_gate_bias.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100626 }
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100627 _activation_forget_gate.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100628
629 if(_run_cifg_opt)
630 {
631 if(_ones.info()->data_type() == DataType::F16)
632 {
633 std::fill_n(reinterpret_cast<half *>(_ones.buffer()), _ones.info()->total_size() / _ones.info()->element_size(), 1);
634 }
635 else
636 {
637 std::fill_n(reinterpret_cast<float *>(_ones.buffer()), _ones.info()->total_size() / _ones.info()->element_size(), 1);
638 }
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100639 _subtract_input_gate.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100640 }
641 else
642 {
643 _fully_connected_input_gate.run();
John Kesapides917959c2019-02-04 12:37:29 +0000644
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100645 if(_run_peephole_opt)
646 {
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100647 _pixelwise_mul_input_gate.run();
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100648 _accum_input_gate1.run();
649 }
650
651 if(_is_layer_norm_lstm)
652 {
653 _mean_std_norm_input_gate.run();
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100654 _pixelwise_mul_input_gate_coeff.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100655 _accum_input_gate_bias.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100656 }
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100657 _activation_input_gate.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100658 }
659
660 _fully_connected_cell_state.run();
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100661 _transpose_cell_state.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100662 _gemm_cell_state1.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100663 _accum_cell_state1.run();
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100664 if(_is_layer_norm_lstm)
665 {
666 _mean_std_norm_cell_gate.run();
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100667 _pixelwise_mul_cell_gate_coeff.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100668 _accum_cell_gate_bias.run();
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100669 }
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100670 _activation_cell_state.run();
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100671 _pixelwise_mul_cell_state1.run();
672 _pixelwise_mul_cell_state2.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100673 _accum_cell_state2.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100674
675 if(_perform_cell_clipping)
676 {
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100677 _cell_clip.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100678 }
679
680 _fully_connected_output.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100681 if(_run_peephole_opt)
682 {
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100683 _pixelwise_mul_output_state1.run();
Michele Di Giorgio0cbfda62019-06-13 17:01:29 +0100684 _accum_output1.run();
685 }
686 if(_is_layer_norm_lstm)
687 {
688 _mean_std_norm_output_gate.run();
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100689 _pixelwise_mul_output_gate_coeff.run();
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100690 _accum_output_gate_bias.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100691 }
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100692 _activation_output.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100693
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100694 _activation_output_state.run();
Michalis Spyrou6eb73452020-07-02 17:39:25 +0100695 _pixelwise_mul_output_state2.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100696
697 if(_has_projection_weights)
698 {
699 _fully_connected_output_state.run();
700 if(_perform_projection_clipping)
701 {
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100702 _projection_clip.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100703 }
704 }
705
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100706 _copy_cell_state.run();
707 _copy_output.run();
Michalis Spyrou25f45a42018-08-08 12:53:05 +0100708
709 _concat_scratch_buffer.run();
John Kesapides917959c2019-02-04 12:37:29 +0000710}
711
712void NELSTMLayer::prepare()
713{
714 if(!_is_prepared)
715 {
John Kesapides917959c2019-02-04 12:37:29 +0000716 _concat_weights_forget_gate.run();
717 if(!_run_cifg_opt)
718 {
719 _concat_weights_input_gate.run();
720 }
721 _concat_weights_output.run();
722 _is_prepared = true;
723 }
724}
Michele Di Giorgio47a89902020-03-09 19:32:33 +0000725} // namespace arm_compute