blob: f4bae86d30283630a80f2f128206c307777d89bb [file] [log] [blame]
Michalis Spyroubcedf512018-03-22 14:55:08 +00001/*
Giorgio Arena33b103b2021-01-08 10:37:15 +00002 * Copyright (c) 2018-2021 Arm Limited.
Michalis Spyroubcedf512018-03-22 14:55:08 +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#ifndef ARM_COMPUTE_TEST_LSTM_LAYER_FIXTURE
25#define ARM_COMPUTE_TEST_LSTM_LAYER_FIXTURE
26
27#include "tests/Globals.h"
28#include "tests/framework/Asserts.h"
29#include "tests/framework/Fixture.h"
30#include "tests/validation/reference/ActivationLayer.h"
Georgios Pinitascbf39c62018-09-10 15:07:45 +010031#include "tests/validation/reference/ArithmeticOperations.h"
Pablo Tello3dd5b682019-03-04 14:14:02 +000032#include "tests/validation/reference/ConcatenateLayer.h"
Michalis Spyroubcedf512018-03-22 14:55:08 +000033#include "tests/validation/reference/FullyConnectedLayer.h"
34#include "tests/validation/reference/GEMM.h"
Michele Di Giorgio39438b42019-06-04 12:41:45 +010035#include "tests/validation/reference/MeanStdDevNormalizationLayer.h"
Michalis Spyroubcedf512018-03-22 14:55:08 +000036#include "tests/validation/reference/PixelWiseMultiplication.h"
37#include "tests/validation/reference/Transpose.h"
38
39namespace arm_compute
40{
41namespace test
42{
43namespace validation
44{
45template <typename TensorType, typename AccessorType, typename FunctionType, typename FunctionParams, typename T>
46class LSTMLayerValidationFixture : public framework::Fixture
47{
48public:
49 template <typename...>
50 void setup(TensorShape input_shape, TensorShape input_weights_shape, TensorShape recurrent_weights_shape, TensorShape cell_bias_shape, TensorShape output_cell_shape, TensorShape output_shape,
Michele Di Giorgio39438b42019-06-04 12:41:45 +010051 TensorShape scratch_shape, ActivationLayerInfo info, float cell_threshold, float projection_threshold, DataType data_type, bool projection_opt, bool peephole_opt,
52 bool use_layer_norm)
Michalis Spyroubcedf512018-03-22 14:55:08 +000053 {
54 _target = compute_target(input_shape, input_weights_shape, recurrent_weights_shape, cell_bias_shape, output_cell_shape, output_shape, scratch_shape, info, cell_threshold, projection_threshold,
Michele Di Giorgio39438b42019-06-04 12:41:45 +010055 data_type, projection_opt, peephole_opt, use_layer_norm);
Michalis Spyroubcedf512018-03-22 14:55:08 +000056 _reference = compute_reference(input_shape, input_weights_shape, recurrent_weights_shape, cell_bias_shape, output_cell_shape, output_shape, scratch_shape, info, cell_threshold, projection_threshold,
Michele Di Giorgio39438b42019-06-04 12:41:45 +010057 data_type, projection_opt, peephole_opt, use_layer_norm);
Michalis Spyroubcedf512018-03-22 14:55:08 +000058 }
59
60protected:
61 template <typename U>
62 void fill(U &&tensor, int i)
63 {
Giorgio Arena4bdd1772020-12-17 16:47:07 +000064 static_assert(std::is_floating_point<T>::value || std::is_same<T, half>::value, "Only floating point data types supported.");
Giorgio Arena33b103b2021-01-08 10:37:15 +000065 using DistributionType = typename std::conditional<std::is_same<T, half>::value, arm_compute::utils::uniform_real_distribution_16bit<T>, std::uniform_real_distribution<T>>::type;
Giorgio Arena4bdd1772020-12-17 16:47:07 +000066
67 DistributionType distribution{ T(-1.0f), T(1.0f) };
Michalis Spyroubcedf512018-03-22 14:55:08 +000068 library->fill(tensor, distribution, i);
69 }
70 template <typename U>
71 void fill_custom_val(U &&tensor, float num, int i)
72 {
Giorgio Arena4bdd1772020-12-17 16:47:07 +000073 static_assert(std::is_floating_point<T>::value || std::is_same<T, half>::value, "Only floating point data types supported.");
Giorgio Arena33b103b2021-01-08 10:37:15 +000074 using DistributionType = typename std::conditional<std::is_same<T, half>::value, arm_compute::utils::uniform_real_distribution_16bit<T>, std::uniform_real_distribution<T>>::type;
Giorgio Arena4bdd1772020-12-17 16:47:07 +000075
76 DistributionType distribution{ T(num), T(num) };
Michalis Spyroubcedf512018-03-22 14:55:08 +000077 library->fill(tensor, distribution, i);
78 }
79 TensorType compute_target(const TensorShape &input_shape, const TensorShape &input_weights_shape, const TensorShape &recurrent_weights_shape, const TensorShape &cell_bias_shape,
80 const TensorShape &output_cell_shape, const TensorShape &output_shape, const TensorShape &scratch_shape, ActivationLayerInfo info, float cell_threshold,
Michele Di Giorgio39438b42019-06-04 12:41:45 +010081 float projection_threshold, DataType data_type, bool projection_opt, bool peephole_opt, bool use_layer_norm)
Michalis Spyroubcedf512018-03-22 14:55:08 +000082 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010083 const unsigned int num_cells = input_weights_shape.y();
84 const unsigned int num_outputs = recurrent_weights_shape.x();
Michalis Spyroubcedf512018-03-22 14:55:08 +000085
86 // Create tensors
87 TensorType input = create_tensor<TensorType>(input_shape, data_type);
88 TensorType input_to_forget_w = create_tensor<TensorType>(input_weights_shape, data_type);
89 TensorType input_to_cell_w = create_tensor<TensorType>(input_weights_shape, data_type);
90 TensorType input_to_output_w = create_tensor<TensorType>(input_weights_shape, data_type);
91 TensorType recurrent_to_forget_w = create_tensor<TensorType>(recurrent_weights_shape, data_type);
92 TensorType recurrent_to_cell_w = create_tensor<TensorType>(recurrent_weights_shape, data_type);
93 TensorType recurrent_to_output_w = create_tensor<TensorType>(recurrent_weights_shape, data_type);
94 TensorType forget_gate_bias = create_tensor<TensorType>(cell_bias_shape, data_type);
95 TensorType cell_bias = create_tensor<TensorType>(cell_bias_shape, data_type);
96 TensorType output_gate_bias = create_tensor<TensorType>(cell_bias_shape, data_type);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010097 TensorType output_state_in = create_tensor<TensorType>(output_shape, data_type);
98 TensorType cell_state_in = create_tensor<TensorType>(output_cell_shape, data_type);
Michalis Spyroubcedf512018-03-22 14:55:08 +000099 TensorType scratch = create_tensor<TensorType>(scratch_shape, data_type);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100100 TensorType output_state_out = create_tensor<TensorType>(output_shape, data_type);
101 TensorType cell_state_out = create_tensor<TensorType>(output_cell_shape, data_type);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000102 TensorType output = create_tensor<TensorType>(output_shape, data_type);
103 TensorType input_to_input_w;
104 TensorType recurrent_to_input_w;
105 TensorType cell_to_input_w;
106 TensorType cell_to_forget_w;
107 TensorType input_gate_bias;
108 TensorType cell_to_output_w;
109 TensorType projection_w;
110 TensorType projection_bias;
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100111 TensorType input_layer_norm_w;
112 TensorType forget_layer_norm_w;
113 TensorType cell_layer_norm_w;
114 TensorType output_layer_norm_w;
Michalis Spyroubcedf512018-03-22 14:55:08 +0000115
Georgios Pinitas0cc37c32018-11-14 15:54:26 +0000116 bool cifg_opt = scratch_shape.x() == cell_bias_shape.x() * 4 ? false : true;
Michalis Spyroubcedf512018-03-22 14:55:08 +0000117
118 FunctionParams lstm_params;
119
120 if(!cifg_opt)
121 {
122 input_to_input_w = create_tensor<TensorType>(input_weights_shape, data_type);
123 recurrent_to_input_w = create_tensor<TensorType>(recurrent_weights_shape, data_type);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100124 if(peephole_opt)
125 {
126 cell_to_input_w = create_tensor<TensorType>(cell_bias_shape, data_type);
127 }
128 input_gate_bias = create_tensor<TensorType>(cell_bias_shape, data_type);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000129 lstm_params.set_cifg_params(&input_to_input_w, &recurrent_to_input_w, &cell_to_input_w, &input_gate_bias);
130 }
131
132 if(peephole_opt)
133 {
Michalis Spyroubcedf512018-03-22 14:55:08 +0000134 cell_to_forget_w = create_tensor<TensorType>(cell_bias_shape, data_type);
135 cell_to_output_w = create_tensor<TensorType>(cell_bias_shape, data_type);
Michalis Spyrou09daf4d2018-06-28 17:07:22 +0100136 lstm_params.set_peephole_params(&cell_to_forget_w, &cell_to_output_w);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000137 }
138
139 if(projection_opt)
140 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100141 projection_w = create_tensor<TensorType>(TensorShape(num_cells, num_outputs), data_type);
142 projection_bias = create_tensor<TensorType>(TensorShape(num_outputs), data_type);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000143 lstm_params.set_projection_params(&projection_w, &projection_bias);
144 }
145
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100146 if(use_layer_norm)
147 {
148 forget_layer_norm_w = create_tensor<TensorType>(TensorShape(num_cells), data_type);
149 cell_layer_norm_w = create_tensor<TensorType>(TensorShape(num_cells), data_type);
150 output_layer_norm_w = create_tensor<TensorType>(TensorShape(num_cells), data_type);
151 if(!cifg_opt)
152 {
153 input_layer_norm_w = create_tensor<TensorType>(TensorShape(num_cells), data_type);
154 lstm_params.set_layer_normalization_params(&input_layer_norm_w, &forget_layer_norm_w, &cell_layer_norm_w, &output_layer_norm_w);
155 }
156 else
157 {
158 lstm_params.set_layer_normalization_params(nullptr, &forget_layer_norm_w, &cell_layer_norm_w, &output_layer_norm_w);
159 }
160 }
161
Michalis Spyroubcedf512018-03-22 14:55:08 +0000162 // Create and configure function
163 FunctionType lstm;
164 lstm.configure(&input, &input_to_forget_w, &input_to_cell_w, &input_to_output_w, &recurrent_to_forget_w,
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100165 &recurrent_to_cell_w, &recurrent_to_output_w, &forget_gate_bias, &cell_bias, &output_gate_bias,
166 &output_state_in, &cell_state_in,
167 &scratch, &output_state_out, &cell_state_out, &output,
168 lstm_params, info, cell_threshold, projection_threshold);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000169
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100170 ARM_COMPUTE_ASSERT(input.info()->is_resizable());
171 ARM_COMPUTE_ASSERT(input_to_forget_w.info()->is_resizable());
172 ARM_COMPUTE_ASSERT(input_to_cell_w.info()->is_resizable());
173 ARM_COMPUTE_ASSERT(input_to_output_w.info()->is_resizable());
174 ARM_COMPUTE_ASSERT(recurrent_to_forget_w.info()->is_resizable());
175 ARM_COMPUTE_ASSERT(recurrent_to_cell_w.info()->is_resizable());
176 ARM_COMPUTE_ASSERT(recurrent_to_output_w.info()->is_resizable());
177 ARM_COMPUTE_ASSERT(forget_gate_bias.info()->is_resizable());
178 ARM_COMPUTE_ASSERT(cell_bias.info()->is_resizable());
179 ARM_COMPUTE_ASSERT(output_gate_bias.info()->is_resizable());
180 ARM_COMPUTE_ASSERT(output_state_in.info()->is_resizable());
181 ARM_COMPUTE_ASSERT(cell_state_in.info()->is_resizable());
182 ARM_COMPUTE_ASSERT(scratch.info()->is_resizable());
183 ARM_COMPUTE_ASSERT(output_state_out.info()->is_resizable());
184 ARM_COMPUTE_ASSERT(cell_state_out.info()->is_resizable());
185 ARM_COMPUTE_ASSERT(output.info()->is_resizable());
Michalis Spyroubcedf512018-03-22 14:55:08 +0000186
187 // Allocate tensors
188 input.allocator()->allocate();
189 input_to_forget_w.allocator()->allocate();
190 input_to_cell_w.allocator()->allocate();
191 input_to_output_w.allocator()->allocate();
192 recurrent_to_forget_w.allocator()->allocate();
193 recurrent_to_cell_w.allocator()->allocate();
194 recurrent_to_output_w.allocator()->allocate();
195 forget_gate_bias.allocator()->allocate();
196 cell_bias.allocator()->allocate();
197 output_gate_bias.allocator()->allocate();
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100198 output_state_in.allocator()->allocate();
199 cell_state_in.allocator()->allocate();
Michalis Spyroubcedf512018-03-22 14:55:08 +0000200 scratch.allocator()->allocate();
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100201 output_state_out.allocator()->allocate();
202 cell_state_out.allocator()->allocate();
Michalis Spyroubcedf512018-03-22 14:55:08 +0000203 output.allocator()->allocate();
204
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100205 ARM_COMPUTE_ASSERT(!input.info()->is_resizable());
206 ARM_COMPUTE_ASSERT(!input_to_forget_w.info()->is_resizable());
207 ARM_COMPUTE_ASSERT(!input_to_cell_w.info()->is_resizable());
208 ARM_COMPUTE_ASSERT(!input_to_output_w.info()->is_resizable());
209 ARM_COMPUTE_ASSERT(!recurrent_to_forget_w.info()->is_resizable());
210 ARM_COMPUTE_ASSERT(!recurrent_to_cell_w.info()->is_resizable());
211 ARM_COMPUTE_ASSERT(!recurrent_to_output_w.info()->is_resizable());
212 ARM_COMPUTE_ASSERT(!forget_gate_bias.info()->is_resizable());
213 ARM_COMPUTE_ASSERT(!cell_bias.info()->is_resizable());
214 ARM_COMPUTE_ASSERT(!output_gate_bias.info()->is_resizable());
215 ARM_COMPUTE_ASSERT(!output_state_in.info()->is_resizable());
216 ARM_COMPUTE_ASSERT(!cell_state_in.info()->is_resizable());
217 ARM_COMPUTE_ASSERT(!scratch.info()->is_resizable());
218 ARM_COMPUTE_ASSERT(!output_state_out.info()->is_resizable());
219 ARM_COMPUTE_ASSERT(!cell_state_out.info()->is_resizable());
220 ARM_COMPUTE_ASSERT(!output.info()->is_resizable());
Michalis Spyroubcedf512018-03-22 14:55:08 +0000221
222 // Fill tensors
223 fill(AccessorType(input), 0);
224 fill(AccessorType(input_to_forget_w), 1);
225 fill(AccessorType(input_to_cell_w), 2);
226 fill(AccessorType(input_to_output_w), 3);
227 fill(AccessorType(recurrent_to_forget_w), 4);
228 fill(AccessorType(recurrent_to_cell_w), 5);
229 fill(AccessorType(recurrent_to_output_w), 6);
230 fill(AccessorType(forget_gate_bias), 7);
231 fill(AccessorType(cell_bias), 8);
232 fill(AccessorType(output_gate_bias), 9);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100233 fill(AccessorType(output_state_in), 10);
234 fill(AccessorType(cell_state_in), 11);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000235 fill(AccessorType(scratch), 12);
236
237 if(!cifg_opt)
238 {
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100239 ARM_COMPUTE_ASSERT(input_to_input_w.info()->is_resizable());
240 ARM_COMPUTE_ASSERT(recurrent_to_input_w.info()->is_resizable());
241 ARM_COMPUTE_ASSERT(cell_to_input_w.info()->is_resizable());
242 ARM_COMPUTE_ASSERT(input_gate_bias.info()->is_resizable());
Michalis Spyroubcedf512018-03-22 14:55:08 +0000243 input_to_input_w.allocator()->allocate();
244 recurrent_to_input_w.allocator()->allocate();
245 cell_to_input_w.allocator()->allocate();
246 input_gate_bias.allocator()->allocate();
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100247 ARM_COMPUTE_ASSERT(!input_to_input_w.info()->is_resizable());
248 ARM_COMPUTE_ASSERT(!recurrent_to_input_w.info()->is_resizable());
249 ARM_COMPUTE_ASSERT(!cell_to_input_w.info()->is_resizable());
250 ARM_COMPUTE_ASSERT(!input_gate_bias.info()->is_resizable());
Michalis Spyroubcedf512018-03-22 14:55:08 +0000251 fill(AccessorType(input_to_input_w), 13);
252 fill(AccessorType(recurrent_to_input_w), 14);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100253 if(peephole_opt)
254 {
255 fill(AccessorType(cell_to_input_w), 15);
256 }
Michalis Spyroubcedf512018-03-22 14:55:08 +0000257 fill(AccessorType(recurrent_to_input_w), 16);
258 fill(AccessorType(input_gate_bias), 17);
259 }
260
261 if(peephole_opt)
262 {
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100263 ARM_COMPUTE_ASSERT(cell_to_forget_w.info()->is_resizable());
264 ARM_COMPUTE_ASSERT(cell_to_output_w.info()->is_resizable());
Michalis Spyroubcedf512018-03-22 14:55:08 +0000265 cell_to_forget_w.allocator()->allocate();
266 cell_to_output_w.allocator()->allocate();
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100267 ARM_COMPUTE_ASSERT(!cell_to_forget_w.info()->is_resizable());
268 ARM_COMPUTE_ASSERT(!cell_to_output_w.info()->is_resizable());
Georgios Pinitas4f859822019-02-06 18:08:04 +0000269 fill(AccessorType(cell_to_forget_w), 18);
270 fill(AccessorType(cell_to_output_w), 19);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000271 }
272
273 if(projection_opt)
274 {
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100275 ARM_COMPUTE_ASSERT(projection_w.info()->is_resizable());
276 ARM_COMPUTE_ASSERT(projection_bias.info()->is_resizable());
Michalis Spyroubcedf512018-03-22 14:55:08 +0000277
278 projection_w.allocator()->allocate();
279 projection_bias.allocator()->allocate();
280
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100281 ARM_COMPUTE_ASSERT(!projection_w.info()->is_resizable());
282 ARM_COMPUTE_ASSERT(!projection_bias.info()->is_resizable());
Michalis Spyroubcedf512018-03-22 14:55:08 +0000283
Georgios Pinitas4f859822019-02-06 18:08:04 +0000284 fill(AccessorType(projection_w), 20);
285 fill(AccessorType(projection_bias), 21);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000286 }
287
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100288 if(use_layer_norm)
289 {
290 if(!cifg_opt)
291 {
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100292 ARM_COMPUTE_ASSERT(input_layer_norm_w.info()->is_resizable());
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100293
294 input_layer_norm_w.allocator()->allocate();
295
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100296 ARM_COMPUTE_ASSERT(!input_layer_norm_w.info()->is_resizable());
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100297
298 fill(AccessorType(input_layer_norm_w), 22);
299 }
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100300 ARM_COMPUTE_ASSERT(forget_layer_norm_w.info()->is_resizable());
301 ARM_COMPUTE_ASSERT(cell_layer_norm_w.info()->is_resizable());
302 ARM_COMPUTE_ASSERT(output_layer_norm_w.info()->is_resizable());
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100303
304 forget_layer_norm_w.allocator()->allocate();
305 cell_layer_norm_w.allocator()->allocate();
306 output_layer_norm_w.allocator()->allocate();
307
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100308 ARM_COMPUTE_ASSERT(!forget_layer_norm_w.info()->is_resizable());
309 ARM_COMPUTE_ASSERT(!cell_layer_norm_w.info()->is_resizable());
310 ARM_COMPUTE_ASSERT(!output_layer_norm_w.info()->is_resizable());
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100311
312 fill(AccessorType(forget_layer_norm_w), 23);
313 fill(AccessorType(cell_layer_norm_w), 24);
314 fill(AccessorType(output_layer_norm_w), 25);
315 }
316
Michalis Spyroubcedf512018-03-22 14:55:08 +0000317 // Compute function
318 lstm.run();
319
Georgios Pinitas4f859822019-02-06 18:08:04 +0000320 _target_scratch = std::move(scratch);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000321 return output;
322 }
323
324 SimpleTensor<T> compute_reference(const TensorShape &input_shape, const TensorShape &input_weights_shape, const TensorShape &recurrent_weights_shape, const TensorShape &cell_bias_shape,
325 const TensorShape &output_cell_shape, const TensorShape &output_shape, const TensorShape &scratch_shape, ActivationLayerInfo info, float cell_threshold,
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100326 float projection_threshold, DataType data_type, bool projection_opt, bool peephole_opt, bool use_layer_norm)
Michalis Spyroubcedf512018-03-22 14:55:08 +0000327 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100328 const unsigned int num_cells = input_weights_shape.y();
329 const unsigned int num_outputs = recurrent_weights_shape.x();
330
331 // Create projection weights shape
332 TensorShape projection_weights_shape(num_cells, num_outputs);
333
Michalis Spyroubcedf512018-03-22 14:55:08 +0000334 // Create projection bias shape
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100335 TensorShape projection_bias_shape(num_outputs);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000336
337 TensorShape gemm_shape{ 1, output_shape.y() };
338 SimpleTensor<T> gemm_out{ gemm_shape, data_type };
339
340 // Create reference
341 SimpleTensor<T> input{ input_shape, data_type };
342 SimpleTensor<T> input_to_input_w{ input_weights_shape, data_type };
343 SimpleTensor<T> input_to_forget_w{ input_weights_shape, data_type };
344 SimpleTensor<T> input_to_cell_w{ input_weights_shape, data_type };
345 SimpleTensor<T> input_to_output_w{ input_weights_shape, data_type };
346 SimpleTensor<T> recurrent_to_input_w{ recurrent_weights_shape, data_type };
347 SimpleTensor<T> recurrent_to_forget_w{ recurrent_weights_shape, data_type };
348 SimpleTensor<T> recurrent_to_cell_w{ recurrent_weights_shape, data_type };
349 SimpleTensor<T> recurrent_to_output_w{ recurrent_weights_shape, data_type };
350 SimpleTensor<T> cell_to_input_w{ cell_bias_shape, data_type };
351 SimpleTensor<T> cell_to_forget_w{ cell_bias_shape, data_type };
352 SimpleTensor<T> cell_to_output_w{ cell_bias_shape, data_type };
353 SimpleTensor<T> input_gate_bias{ cell_bias_shape, data_type };
354 SimpleTensor<T> forget_gate_bias{ cell_bias_shape, data_type };
355 SimpleTensor<T> cell_bias{ cell_bias_shape, data_type };
356 SimpleTensor<T> output_gate_bias{ cell_bias_shape, data_type };
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100357 SimpleTensor<T> projection_w{ projection_weights_shape, data_type };
Michalis Spyroubcedf512018-03-22 14:55:08 +0000358 SimpleTensor<T> projection_bias{ projection_bias_shape, data_type };
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100359 SimpleTensor<T> output_state_in{ output_shape, data_type };
360 SimpleTensor<T> cell_state_in{ output_cell_shape, data_type };
Michalis Spyroubcedf512018-03-22 14:55:08 +0000361 SimpleTensor<T> scratch{ scratch_shape, data_type };
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100362 SimpleTensor<T> output_state_out{ output_shape, data_type };
363 SimpleTensor<T> cell_state_out{ output_cell_shape, data_type };
Michalis Spyroubcedf512018-03-22 14:55:08 +0000364 SimpleTensor<T> output{ output_shape, data_type };
365
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100366 bool cifg_opt = scratch_shape.x() == cell_bias_shape.x() * 4 ? false : true;
367
Michalis Spyroubcedf512018-03-22 14:55:08 +0000368 // Fill reference
369 fill(input, 0);
370 fill(input_to_forget_w, 1);
371 fill(input_to_cell_w, 2);
372 fill(input_to_output_w, 3);
373 fill(recurrent_to_forget_w, 4);
374 fill(recurrent_to_cell_w, 5);
375 fill(recurrent_to_output_w, 6);
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100376 if(use_layer_norm)
377 {
378 fill_custom_val(forget_gate_bias, 0.f, 7);
379 fill_custom_val(cell_bias, 0.f, 8);
380 fill_custom_val(output_gate_bias, 0.f, 9);
381 }
382 else
383 {
384 fill(forget_gate_bias, 7);
385 fill(cell_bias, 8);
386 fill(output_gate_bias, 9);
387 }
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100388 fill(output_state_in, 10);
389 fill(cell_state_in, 11);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000390 fill(scratch, 12);
391 fill(input_to_input_w, 13);
392 fill(recurrent_to_input_w, 14);
393 fill(cell_to_input_w, 15);
394 fill(recurrent_to_input_w, 16);
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100395 if(!cifg_opt && use_layer_norm)
396 {
397 fill_custom_val(input_gate_bias, 0.f, 17);
398 }
399 else
400 {
401 fill(input_gate_bias, 17);
402 }
Georgios Pinitas4f859822019-02-06 18:08:04 +0000403 fill(cell_to_forget_w, 18);
404 fill(cell_to_output_w, 19);
405 fill(projection_w, 20);
406 fill(projection_bias, 21);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000407
Michalis Spyroubcedf512018-03-22 14:55:08 +0000408 // Compute forget_gate
409 SimpleTensor<T> fully_connected_forget = reference::fully_connected_layer(input, input_to_forget_w, forget_gate_bias, output_cell_shape);
410 SimpleTensor<T> transposed_weights = reference::transpose(recurrent_to_forget_w);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100411 SimpleTensor<T> gemm = reference::gemm(output_state_in, transposed_weights, cell_state_in, 1.f, 0.f);
Georgios Pinitascbf39c62018-09-10 15:07:45 +0100412 SimpleTensor<T> forget_gate = reference::arithmetic_operation(reference::ArithmeticOperation::ADD, fully_connected_forget, gemm, data_type, ConvertPolicy::SATURATE);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000413
414 if(peephole_opt)
415 {
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100416 SimpleTensor<T> pixelwise_mul_forget_gate = reference::pixel_wise_multiplication<T, T, T>(cell_state_in, cell_to_forget_w, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_ZERO, data_type);
Georgios Pinitascbf39c62018-09-10 15:07:45 +0100417 forget_gate = reference::arithmetic_operation(reference::ArithmeticOperation::ADD, forget_gate, pixelwise_mul_forget_gate, data_type, ConvertPolicy::SATURATE);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000418 }
419
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100420 if(use_layer_norm)
421 {
422 SimpleTensor<T> forget_layer_norm_w{ cell_bias_shape, data_type };
423 fill(forget_layer_norm_w, 23);
424 forget_gate = reference::mean_std_normalization_layer(forget_gate);
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100425 forget_gate = reference::pixel_wise_multiplication<T, T, T>(forget_gate, forget_layer_norm_w, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN, data_type);
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100426 fill(forget_gate_bias, 7);
427 forget_gate = reference::arithmetic_operation(reference::ArithmeticOperation::ADD, forget_gate, forget_gate_bias, data_type, ConvertPolicy::SATURATE);
428 }
Michalis Spyroubcedf512018-03-22 14:55:08 +0000429 forget_gate = reference::activation_layer(forget_gate, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
430
431 // Compute input_gate
432 SimpleTensor<T> input_gate;
433 if(cifg_opt)
434 {
435 SimpleTensor<T> ones{ cell_bias_shape, data_type };
436 fill_custom_val(ones, 1.f, 0);
Georgios Pinitascbf39c62018-09-10 15:07:45 +0100437 input_gate = reference::arithmetic_operation<T>(reference::ArithmeticOperation::SUB, ones, forget_gate, data_type, ConvertPolicy::SATURATE);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000438 }
439 else
440 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100441 SimpleTensor<T> fully_connected_input = reference::fully_connected_layer(input, input_to_input_w, input_gate_bias, output_cell_shape);
442 transposed_weights = reference::transpose(recurrent_to_input_w);
443 gemm = reference::gemm(output_state_in, transposed_weights, cell_state_in, 1.f, 0.f);
Georgios Pinitascbf39c62018-09-10 15:07:45 +0100444 input_gate = reference::arithmetic_operation(reference::ArithmeticOperation::ADD, fully_connected_input, gemm, data_type, ConvertPolicy::SATURATE);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100445 if(peephole_opt)
446 {
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100447 SimpleTensor<T> pixelwise_mul_input_gate = reference::pixel_wise_multiplication<T, T, T>(cell_state_in, cell_to_input_w, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN, data_type);
Georgios Pinitascbf39c62018-09-10 15:07:45 +0100448 input_gate = reference::arithmetic_operation(reference::ArithmeticOperation::ADD, input_gate, pixelwise_mul_input_gate, data_type, ConvertPolicy::SATURATE);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100449 }
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100450 if(use_layer_norm)
451 {
452 SimpleTensor<T> input_layer_norm_w{ cell_bias_shape, data_type };
453 fill(input_layer_norm_w, 22);
454 input_gate = reference::mean_std_normalization_layer(input_gate);
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100455 input_gate = reference::pixel_wise_multiplication<T, T, T>(input_gate, input_layer_norm_w, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN, data_type);
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100456 fill(input_gate_bias, 17);
457 input_gate = reference::arithmetic_operation(reference::ArithmeticOperation::ADD, input_gate, input_gate_bias, data_type, ConvertPolicy::SATURATE);
458 }
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100459 input_gate = reference::activation_layer(input_gate, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000460 }
461
462 // Compute cell_state
463 SimpleTensor<T> fully_connected_cell_state = reference::fully_connected_layer(input, input_to_cell_w, cell_bias, output_cell_shape);
464 transposed_weights = reference::transpose(recurrent_to_cell_w);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100465 gemm = reference::gemm(output_state_in, transposed_weights, cell_state_out, 1.f, 0.f);
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100466 SimpleTensor<T> pixelwise_mul = reference::pixel_wise_multiplication<T, T, T>(cell_state_in, forget_gate, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN, data_type);
Georgios Pinitascbf39c62018-09-10 15:07:45 +0100467 cell_state_out = reference::arithmetic_operation(reference::ArithmeticOperation::ADD, fully_connected_cell_state, gemm, data_type, ConvertPolicy::SATURATE);
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100468 if(use_layer_norm)
469 {
470 SimpleTensor<T> cell_layer_norm_w{ cell_bias_shape, data_type };
471 fill(cell_layer_norm_w, 24);
472 cell_state_out = reference::mean_std_normalization_layer(cell_state_out);
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100473 cell_state_out = reference::pixel_wise_multiplication<T, T, T>(cell_state_out, cell_layer_norm_w, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN, data_type);
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100474 fill(cell_bias, 8);
475 cell_state_out = reference::arithmetic_operation(reference::ArithmeticOperation::ADD, cell_state_out, cell_bias, data_type, ConvertPolicy::SATURATE);
476 }
477 cell_state_out = reference::activation_layer(cell_state_out, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100478 cell_state_out = reference::pixel_wise_multiplication<T, T, T>(cell_state_out, input_gate, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN, data_type);
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100479 cell_state_out = reference::arithmetic_operation(reference::ArithmeticOperation::ADD, cell_state_out, pixelwise_mul, data_type, ConvertPolicy::SATURATE);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000480 if(cell_threshold != 0.f)
481 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100482 cell_state_out = reference::activation_layer(cell_state_out, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -cell_threshold, cell_threshold));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000483 }
484
485 // Compute output
486 SimpleTensor<T> fully_connected_output = reference::fully_connected_layer(input, input_to_output_w, output_gate_bias, output_cell_shape);
487 transposed_weights = reference::transpose(recurrent_to_output_w);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100488 gemm = reference::gemm(output_state_in, transposed_weights, cell_state_out, 1.f, 0.f);
Georgios Pinitascbf39c62018-09-10 15:07:45 +0100489 output = reference::arithmetic_operation(reference::ArithmeticOperation::ADD, fully_connected_output, gemm, data_type, ConvertPolicy::SATURATE);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000490 if(peephole_opt)
491 {
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100492 pixelwise_mul = reference::pixel_wise_multiplication<T, T, T>(cell_state_out, cell_to_output_w, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN, data_type);
Georgios Pinitascbf39c62018-09-10 15:07:45 +0100493 output = reference::arithmetic_operation(reference::ArithmeticOperation::ADD, output, pixelwise_mul, data_type, ConvertPolicy::SATURATE);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000494 }
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100495 if(use_layer_norm)
496 {
497 SimpleTensor<T> output_layer_norm_w{ cell_bias_shape, data_type };
498 fill(output_layer_norm_w, 25);
499 output = reference::mean_std_normalization_layer(output);
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100500 output = reference::pixel_wise_multiplication<T, T, T>(output, output_layer_norm_w, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN, data_type);
Michele Di Giorgio39438b42019-06-04 12:41:45 +0100501 fill(output_gate_bias, 9);
502 output = reference::arithmetic_operation(reference::ArithmeticOperation::ADD, output, output_gate_bias, data_type, ConvertPolicy::SATURATE);
503 }
Michalis Spyroubcedf512018-03-22 14:55:08 +0000504 output = reference::activation_layer(output, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
505
506 // Compute output state
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100507 SimpleTensor<T> cell_state_activation = reference::activation_layer(cell_state_out, info);
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100508 output_state_out = reference::pixel_wise_multiplication<T, T, T>(output, cell_state_activation, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN, data_type);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000509
510 if(projection_opt)
511 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100512 SimpleTensor<T> fully_connected_projection = reference::fully_connected_layer(output_state_out, projection_w, projection_bias, output_cell_shape);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000513 if(projection_threshold != 0.f)
514 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100515 output_state_out = reference::activation_layer(fully_connected_projection, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -projection_threshold, projection_threshold));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000516 }
517 }
Georgios Pinitas4f859822019-02-06 18:08:04 +0000518
519 std::vector<SimpleTensor<T>> scratch_inputs;
520 if(!cifg_opt)
521 {
522 scratch_inputs.emplace_back(std::move(input_gate));
523 }
524 scratch_inputs.emplace_back(std::move(cell_state_out));
525 scratch_inputs.emplace_back(std::move(forget_gate));
526 scratch_inputs.emplace_back(std::move(output));
Pablo Tello3dd5b682019-03-04 14:14:02 +0000527 scratch = reference::concatenate_layer(scratch_inputs, scratch, Window::DimX);
Georgios Pinitas4f859822019-02-06 18:08:04 +0000528 _reference_scratch = std::move(scratch);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100529 return output_state_out;
Michalis Spyroubcedf512018-03-22 14:55:08 +0000530 }
531
532 TensorType _target{};
Georgios Pinitas4f859822019-02-06 18:08:04 +0000533 TensorType _target_scratch{};
Michalis Spyroubcedf512018-03-22 14:55:08 +0000534 SimpleTensor<T> _reference{};
Georgios Pinitas4f859822019-02-06 18:08:04 +0000535 SimpleTensor<T> _reference_scratch{};
Michalis Spyroubcedf512018-03-22 14:55:08 +0000536};
537} // namespace validation
538} // namespace test
539} // namespace arm_compute
540#endif /* ARM_COMPUTE_TEST_LSTM_LAYER_FIXTURE */