blob: 13c48711485b9a284f18aaadd4baf3e887dd5546 [file] [log] [blame]
Michalis Spyroubcedf512018-03-22 14:55:08 +00001/*
Georgios Pinitas4f859822019-02-06 18:08:04 +00002 * Copyright (c) 2018-2019 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#include "arm_compute/runtime/CL/functions/CLLSTMLayer.h"
25
26#include "arm_compute/core/PixelValue.h"
27#include "arm_compute/core/Utils.h"
28#include "arm_compute/core/Validate.h"
29#include "arm_compute/core/utils/misc/ShapeCalculator.h"
30#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
31#include "arm_compute/runtime/CL/CLScheduler.h"
32
33#include <cmath>
34#include <memory>
35#include <tuple>
36
37using namespace arm_compute;
38using namespace arm_compute::misc::shape_calculator;
39
40CLLSTMLayer::CLLSTMLayer(std::shared_ptr<IMemoryManager> memory_manager)
Georgios Pinitas42a31722018-07-09 14:35:32 +010041 : _memory_group(std::move(memory_manager)), _fully_connected_input_gate(), _gemm_input_gate(), _transpose_input_gate(), _accum_input_gate1(), _accum_input_gate2(), _subtract_input_gate(),
42 _pixelwise_mul_input_gate(), _activation_input_gate(), _fully_connected_forget_gate(), _gemm_forget_gate(), _transpose_forget_gate(), _accum_forget_gate1(), _accum_forget_gate2(),
43 _pixelwise_mul_forget_gate(), _activation_forget_gate(), _fully_connected_cell_state(), _gemm_cell_state1(), _gemm_cell_state2(), _transpose_cell_state(), _accum_cell_state1(), _accum_cell_state2(),
44 _pixelwise_mul_cell_state1(), _activation_cell_state(), _cell_clip(), _pixelwise_mul_cell_state2(), _fully_connected_output(), _gemm_output(), _pixelwise_mul_output_state1(), _transpose_output(),
45 _accum_output1(), _accum_output2(), _activation_output(), _activation_output_state(), _pixelwise_mul_output_state2(), _fully_connected_output_state(), _gemm_output_state(), _accum_output_state(),
John Kesapidescafec8f2019-02-19 15:53:59 +000046 _projection_clip(), _copy_cell_state(), _copy_output(), _concat_scratch_buffer(), _concat_inputs_forget_gate(), _concat_weights_forget_gate(), _concat_weights_input_gate(), _concat_weights_output(),
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +010047 _ones_memset_kernel(), _input_gate_out1(), _input_gate_out2(), _input_gate_out3(), _input_gate_out4(), _forget_gate_out1(), _forget_gate_out2(), _forget_gate_out3(), _forget_gate_out4(),
48 _forget_gate_out5(), _forget_gate_out6(), _cell_state_out1(), _cell_state_out2(), _cell_state_out3(), _cell_state_out4(), _cell_state_out5(), _output1(), _output2(), _output3(), _output4(),
49 _cell_state_activation(), _output_state1(), _ones(), _run_peephole_opt(false), _run_cifg_opt(false), _perform_cell_clipping(false), _has_projection_weights(false), _perform_projection_clipping(false),
50 _is_prepared(false)
Michalis Spyroubcedf512018-03-22 14:55:08 +000051{
52}
53
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010054void CLLSTMLayer::configure(const ICLTensor *input,
55 const ICLTensor *input_to_forget_weights, const ICLTensor *input_to_cell_weights, const ICLTensor *input_to_output_weights,
Michalis Spyroubcedf512018-03-22 14:55:08 +000056 const ICLTensor *recurrent_to_forget_weights, const ICLTensor *recurrent_to_cell_weights, const ICLTensor *recurrent_to_output_weights,
57 const ICLTensor *forget_gate_bias, const ICLTensor *cell_bias, const ICLTensor *output_gate_bias,
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010058 const ICLTensor *output_state_in, const ICLTensor *cell_state_in,
59 ICLTensor *scratch_buffer, ICLTensor *output_state_out, ICLTensor *cell_state_out, ICLTensor *output,
60 const LSTMParams<ICLTensor> &lstm_params, const ActivationLayerInfo &activation_info, float cell_threshold, float projection_threshold)
Michalis Spyroubcedf512018-03-22 14:55:08 +000061{
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010062 ARM_COMPUTE_ERROR_ON_NULLPTR(input,
63 input_to_forget_weights, input_to_cell_weights, input_to_output_weights,
64 recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights,
65 forget_gate_bias, cell_bias, output_gate_bias,
66 output_state_in, cell_state_in,
67 scratch_buffer, output_state_out, cell_state_out, output);
68
69 // Set lstm parameters
Michalis Spyroubcedf512018-03-22 14:55:08 +000070 LSTMParams<ITensorInfo> lstm_params_info;
71 if(lstm_params.has_peephole_opt())
72 {
Michalis Spyrou09daf4d2018-06-28 17:07:22 +010073 lstm_params_info.set_peephole_params(lstm_params.cell_to_forget_weights()->info(), lstm_params.cell_to_output_weights()->info());
Michalis Spyroubcedf512018-03-22 14:55:08 +000074 }
75 if(lstm_params.has_projection())
76 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010077 lstm_params_info.set_projection_params(lstm_params.projection_weights()->info(),
78 lstm_params.projection_bias() != nullptr ? lstm_params.projection_bias()->info() : nullptr);
Michalis Spyroubcedf512018-03-22 14:55:08 +000079 }
80 if(!lstm_params.has_cifg_opt())
81 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010082 const ITensorInfo *cell_to_input_weights_info = (lstm_params.has_peephole_opt()) ? lstm_params.cell_to_input_weights()->info() : nullptr;
Michalis Spyroubcedf512018-03-22 14:55:08 +000083 lstm_params_info.set_cifg_params(lstm_params.input_to_input_weights()->info(), lstm_params.recurrent_to_input_weights()->info(),
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010084 cell_to_input_weights_info, lstm_params.input_gate_bias()->info());
Michalis Spyroubcedf512018-03-22 14:55:08 +000085 }
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010086
87 // Validate
Michalis Spyroubcedf512018-03-22 14:55:08 +000088 ARM_COMPUTE_ERROR_THROW_ON(CLLSTMLayer::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(),
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010092 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));
Michalis Spyroubcedf512018-03-22 14:55:08 +000095
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010096 const TensorShape cell_state_shape = cell_state_in->info()->tensor_shape();
Georgios Pinitas8bc745d2018-07-18 19:51:24 +010097 // Configure block that calculates the forget gate
98 // 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 Kesapidescafec8f2019-02-19 15:53:59 +000099 // We optimize this as follows:
100 // 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 Spyroubcedf512018-03-22 14:55:08 +0000101 _forget_gate_out1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000102 _forget_gate_out3.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
Georgios Pinitas42a31722018-07-09 14:35:32 +0100103 _forget_gate_out5.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000104
John Kesapidescafec8f2019-02-19 15:53:59 +0000105 std::vector<const ICLTensor *> inputs_vector;
106 inputs_vector.emplace_back(input);
107 inputs_vector.emplace_back(output_state_in);
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +0100108 const TensorShape concat_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(inputs_vector, 0);
John Kesapidescafec8f2019-02-19 15:53:59 +0000109 _forget_gate_out2.allocator()->init(TensorInfo(concat_shape, 1, input->info()->data_type()));
110
Michalis Spyroubcedf512018-03-22 14:55:08 +0000111 _memory_group.manage(&_forget_gate_out2);
John Kesapidescafec8f2019-02-19 15:53:59 +0000112 _concat_inputs_forget_gate.configure(input, output_state_in, &_forget_gate_out2);
113
114 std::vector<const ICLTensor *> weights_vector;
115
116 weights_vector.emplace_back(input_to_forget_weights);
117 weights_vector.emplace_back(recurrent_to_forget_weights);
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +0100118 const TensorShape weights_concat_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(weights_vector, 0);
John Kesapidescafec8f2019-02-19 15:53:59 +0000119 _forget_gate_out6.allocator()->init(TensorInfo(weights_concat_shape, 1, input->info()->data_type()));
120
121 _concat_weights_forget_gate.configure(input_to_forget_weights, recurrent_to_forget_weights, &_forget_gate_out6);
122
Georgios Pinitas42a31722018-07-09 14:35:32 +0100123 _memory_group.manage(&_forget_gate_out5);
John Kesapidescafec8f2019-02-19 15:53:59 +0000124 _fully_connected_forget_gate.configure(&_forget_gate_out2, &_forget_gate_out6, forget_gate_bias, &_forget_gate_out5);
125 _memory_group.manage(&_forget_gate_out1);
126 _memory_group.manage(&_forget_gate_out3);
127 _forget_gate_out6.allocator()->allocate();
128
Georgios Pinitas42a31722018-07-09 14:35:32 +0100129 CLTensor *forget_gate_out = &_forget_gate_out5;
Michalis Spyroubcedf512018-03-22 14:55:08 +0000130 if(lstm_params.has_peephole_opt())
131 {
Georgios Pinitas42a31722018-07-09 14:35:32 +0100132 _forget_gate_out4.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000133
134 _run_peephole_opt = true;
135 _memory_group.manage(&_forget_gate_out4);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100136 _pixelwise_mul_forget_gate.configure(cell_state_in, lstm_params.cell_to_forget_weights(), &_forget_gate_out4, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN);
Georgios Pinitas42a31722018-07-09 14:35:32 +0100137 _accum_forget_gate2.configure(&_forget_gate_out5, &_forget_gate_out4, &_forget_gate_out3, ConvertPolicy::SATURATE);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000138 _forget_gate_out4.allocator()->allocate();
Michalis Spyroubcedf512018-03-22 14:55:08 +0000139 _forget_gate_out5.allocator()->allocate();
Michalis Spyroubcedf512018-03-22 14:55:08 +0000140 forget_gate_out = &_forget_gate_out3;
141 }
142 else
143 {
144 _forget_gate_out3.allocator()->allocate();
145 }
Georgios Pinitas4f859822019-02-06 18:08:04 +0000146 _activation_forget_gate.configure(forget_gate_out, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000147
Michalis Spyroubcedf512018-03-22 14:55:08 +0000148 // Configure block that calculates the input gate
Georgios Pinitas42a31722018-07-09 14:35:32 +0100149 // 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
Michalis Spyroubcedf512018-03-22 14:55:08 +0000150 // input_gate = 1 - forget_gate, with CIFG
John Kesapidescafec8f2019-02-19 15:53:59 +0000151 // We optimize this as follows:
152 // 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
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100153 _input_gate_out1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
Georgios Pinitas4f859822019-02-06 18:08:04 +0000154 CLTensor *input_gate_out = &_input_gate_out1;
Michalis Spyroubcedf512018-03-22 14:55:08 +0000155 if(lstm_params.has_cifg_opt())
156 {
157 _memory_group.manage(&_input_gate_out1);
158 _ones.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +0100159 _ones_memset_kernel.configure(&_ones, PixelValue(1, _ones.info()->data_type()));
Georgios Pinitas4f859822019-02-06 18:08:04 +0000160 _subtract_input_gate.configure(ArithmeticOperation::SUB, &_ones, forget_gate_out, &_input_gate_out1, ConvertPolicy::SATURATE);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000161 _ones.allocator()->allocate();
162 _run_cifg_opt = true;
163 }
164 else
165 {
Michalis Spyroubcedf512018-03-22 14:55:08 +0000166 _input_gate_out3.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
Georgios Pinitas42a31722018-07-09 14:35:32 +0100167 _input_gate_out4.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
John Kesapidescafec8f2019-02-19 15:53:59 +0000168
169 std::vector<const ICLTensor *> lstm_weights;
170 lstm_weights.emplace_back(lstm_params.input_to_input_weights());
171 lstm_weights.emplace_back(lstm_params.recurrent_to_input_weights());
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +0100172 TensorShape lstm_weights_concat_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(lstm_weights, 0);
John Kesapidescafec8f2019-02-19 15:53:59 +0000173 _input_gate_out2.allocator()->init(TensorInfo(lstm_weights_concat_shape, 1, input->info()->data_type()));
174
175 _concat_weights_input_gate.configure(lstm_params.input_to_input_weights(), lstm_params.recurrent_to_input_weights(), &_input_gate_out2);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000176
177 _memory_group.manage(&_input_gate_out1);
John Kesapidescafec8f2019-02-19 15:53:59 +0000178
Michalis Spyroubcedf512018-03-22 14:55:08 +0000179 _memory_group.manage(&_input_gate_out3);
John Kesapidescafec8f2019-02-19 15:53:59 +0000180 _fully_connected_input_gate.configure(&_forget_gate_out2, &_input_gate_out2, lstm_params.input_gate_bias(), &_input_gate_out3);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000181 _input_gate_out2.allocator()->allocate();
John Kesapidescafec8f2019-02-19 15:53:59 +0000182
183 input_gate_out = &_input_gate_out3;
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100184 if(_run_peephole_opt)
185 {
John Kesapidescafec8f2019-02-19 15:53:59 +0000186 _memory_group.manage(&_input_gate_out4);
187 _pixelwise_mul_input_gate.configure(cell_state_in, lstm_params.cell_to_input_weights(), &_input_gate_out4, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN);
188 _accum_input_gate2.configure(&_input_gate_out3, &_input_gate_out4, &_input_gate_out1, ConvertPolicy::SATURATE);
189 _input_gate_out3.allocator()->allocate();
Georgios Pinitas4f859822019-02-06 18:08:04 +0000190 _input_gate_out4.allocator()->allocate();
Georgios Pinitas4f859822019-02-06 18:08:04 +0000191 input_gate_out = &_input_gate_out1;
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100192 }
Georgios Pinitas4f859822019-02-06 18:08:04 +0000193 else
194 {
195 _input_gate_out1.allocator()->allocate();
196 }
197 _activation_input_gate.configure(input_gate_out, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000198 }
199
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100200 // Configure block that calculates the cell state
201 // 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)
Michalis Spyroubcedf512018-03-22 14:55:08 +0000202 TensorShape cell_state1_shape = compute_transposed_shape(*recurrent_to_output_weights->info());
203 _cell_state_out1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
204 _cell_state_out2.allocator()->init(TensorInfo(cell_state1_shape, 1, input->info()->data_type()));
205 _cell_state_out3.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
206 _cell_state_out4.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
207 _cell_state_out5.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
208
Michalis Spyroubcedf512018-03-22 14:55:08 +0000209 _memory_group.manage(&_cell_state_out1);
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +0100210 _fully_connected_cell_state.configure(input, input_to_cell_weights, cell_bias, &_cell_state_out1);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000211 _memory_group.manage(&_cell_state_out2);
Georgios Pinitas42a31722018-07-09 14:35:32 +0100212 _transpose_cell_state.configure(recurrent_to_cell_weights, &_cell_state_out2);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000213 _memory_group.manage(&_cell_state_out3);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100214 _gemm_cell_state1.configure(output_state_in, &_cell_state_out2, nullptr, &_cell_state_out3, 1.f, 0.f);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000215 _cell_state_out2.allocator()->allocate();
216 _memory_group.manage(&_cell_state_out4);
giuros01164a2722018-11-20 18:34:46 +0000217 _accum_cell_state1.configure(ArithmeticOperation::ADD, &_cell_state_out1, &_cell_state_out3, &_cell_state_out4, ConvertPolicy::SATURATE);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000218 _activation_cell_state.configure(&_cell_state_out4, nullptr, activation_info);
219 _memory_group.manage(&_cell_state_out5);
Georgios Pinitas4f859822019-02-06 18:08:04 +0000220 _pixelwise_mul_cell_state1.configure(&_cell_state_out4, input_gate_out, &_cell_state_out5, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000221 _cell_state_out4.allocator()->allocate();
Georgios Pinitas4f859822019-02-06 18:08:04 +0000222 _pixelwise_mul_cell_state2.configure(forget_gate_out, cell_state_in, &_cell_state_out3, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN);
giuros01164a2722018-11-20 18:34:46 +0000223 _accum_cell_state2.configure(ArithmeticOperation::ADD, &_cell_state_out5, &_cell_state_out3, &_cell_state_out1, ConvertPolicy::SATURATE);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000224 _cell_state_out3.allocator()->allocate();
225 _cell_state_out5.allocator()->allocate();
Michalis Spyroubcedf512018-03-22 14:55:08 +0000226 // Perform clipping
227 if(cell_threshold != 0.f)
228 {
229 _perform_cell_clipping = true;
230 _cell_clip.configure(&_cell_state_out1, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -cell_threshold, cell_threshold));
231 }
232
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100233 // Configure block that calculates the output
234 // 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 Kesapidescafec8f2019-02-19 15:53:59 +0000235 // We optimize this as follows:
236 // 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 Spyroubcedf512018-03-22 14:55:08 +0000237 _output1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
John Kesapidescafec8f2019-02-19 15:53:59 +0000238 _output4.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
239 std::vector<const ICLTensor *> in_out_weights;
240 in_out_weights.emplace_back(input_to_output_weights);
241 in_out_weights.emplace_back(recurrent_to_output_weights);
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +0100242 TensorShape in_out_weights_concat_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(in_out_weights, 0);
John Kesapidescafec8f2019-02-19 15:53:59 +0000243 _output2.allocator()->init(TensorInfo(in_out_weights_concat_shape, 1, input->info()->data_type()));
244
245 _concat_weights_output.configure(input_to_output_weights, recurrent_to_output_weights, &_output2);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000246
Michalis Spyroubcedf512018-03-22 14:55:08 +0000247 _memory_group.manage(&_output1);
John Kesapidescafec8f2019-02-19 15:53:59 +0000248 _memory_group.manage(&_output4);
249
250 _fully_connected_output.configure(&_forget_gate_out2, &_output2, output_gate_bias, &_output4);
251
Michalis Spyroubcedf512018-03-22 14:55:08 +0000252 _output2.allocator()->allocate();
John Kesapidescafec8f2019-02-19 15:53:59 +0000253 _forget_gate_out2.allocator()->allocate();
254
255 CLTensor *output_gate_out = &_output4;
Michalis Spyroubcedf512018-03-22 14:55:08 +0000256 if(lstm_params.has_peephole_opt())
257 {
John Kesapidescafec8f2019-02-19 15:53:59 +0000258 _output3.allocator()->init(TensorInfo(_cell_state_out1.info()->tensor_shape(), 1, input->info()->data_type()));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000259
John Kesapidescafec8f2019-02-19 15:53:59 +0000260 _memory_group.manage(&_output3);
261 _pixelwise_mul_output_state1.configure(&_cell_state_out1, lstm_params.cell_to_output_weights(), &_output3, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN);
262 _accum_output2.configure(&_output4, &_output3, &_output1, ConvertPolicy::SATURATE);
263 _output4.allocator()->allocate();
Michalis Spyroubcedf512018-03-22 14:55:08 +0000264 output_gate_out = &_output1;
265
266 // Allocate intermediate buffers
John Kesapidescafec8f2019-02-19 15:53:59 +0000267 _output3.allocator()->allocate();
Michalis Spyroubcedf512018-03-22 14:55:08 +0000268 }
269 else
270 {
271 _output1.allocator()->allocate();
272 }
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100273 _activation_output.configure(output_gate_out, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000274
Michalis Spyroubcedf512018-03-22 14:55:08 +0000275 // Configure block that calculates the output state
276 /** lstm_res = PixelwiseMul(output, Activation(cell_state))
277 *
278 * -- Clip(lstm_res * projection_weights + projection_bias, projection_threshold) , if there is a projection
279 * /
280 * output_state = --
281 * \
282 * -- lstm_res , otherwise
283 */
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100284 ICLTensor *output_state_out_tmp = lstm_params.has_projection() ? &_output_state1 : output_state_out;
285 _cell_state_activation.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
286 _output_state1.allocator()->init(TensorInfo(cell_state_shape, 1, input->info()->data_type()));
287
Michalis Spyroubcedf512018-03-22 14:55:08 +0000288 _memory_group.manage(&_cell_state_activation);
289 _activation_output_state.configure(&_cell_state_out1, &_cell_state_activation, activation_info);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100290 _pixelwise_mul_output_state2.configure(&_cell_state_activation, output_gate_out, output_state_out_tmp, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000291 _cell_state_activation.allocator()->allocate();
292
293 if(lstm_params.has_projection())
294 {
295 _has_projection_weights = true;
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100296 _fully_connected_output_state.configure(output_state_out_tmp, lstm_params.projection_weights(), lstm_params.projection_bias(), output_state_out);
297 _output_state1.allocator()->allocate();
Michalis Spyroubcedf512018-03-22 14:55:08 +0000298 // Perform clipping
299 if(projection_threshold != 0.f)
300 {
301 _perform_projection_clipping = true;
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100302 _projection_clip.configure(output_state_out, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -projection_threshold, projection_threshold));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000303 }
Michalis Spyroubcedf512018-03-22 14:55:08 +0000304 }
305
306 // Copy cell state and output
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100307 _copy_cell_state.configure(&_cell_state_out1, cell_state_out);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100308 _copy_output.configure(output_state_out, output);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000309
310 // Vector for holding the tensors to store in scratch buffer
311 std::vector<ICLTensor *> scratch_inputs;
Georgios Pinitas0cc37c32018-11-14 15:54:26 +0000312 if(!lstm_params.has_cifg_opt())
Michalis Spyroubcedf512018-03-22 14:55:08 +0000313 {
Georgios Pinitas4f859822019-02-06 18:08:04 +0000314 scratch_inputs.emplace_back(input_gate_out);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000315 }
316 scratch_inputs.emplace_back(&_cell_state_out1);
317 scratch_inputs.emplace_back(forget_gate_out);
318 scratch_inputs.emplace_back(output_gate_out);
319 _concat_scratch_buffer.configure(scratch_inputs, scratch_buffer);
Georgios Pinitas4f859822019-02-06 18:08:04 +0000320 input_gate_out->allocator()->allocate();
Michele Di Giorgiodd2619a2018-11-05 16:46:09 +0000321 _cell_state_out1.allocator()->allocate();
322 forget_gate_out->allocator()->allocate();
323 output_gate_out->allocator()->allocate();
Michalis Spyroubcedf512018-03-22 14:55:08 +0000324}
325
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100326Status CLLSTMLayer::validate(const ITensorInfo *input,
327 const ITensorInfo *input_to_forget_weights, const ITensorInfo *input_to_cell_weights, const ITensorInfo *input_to_output_weights,
Michalis Spyroubcedf512018-03-22 14:55:08 +0000328 const ITensorInfo *recurrent_to_forget_weights, const ITensorInfo *recurrent_to_cell_weights, const ITensorInfo *recurrent_to_output_weights,
329 const ITensorInfo *forget_gate_bias, const ITensorInfo *cell_bias, const ITensorInfo *output_gate_bias,
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100330 const ITensorInfo *output_state_in, const ITensorInfo *cell_state_in,
331 const ITensorInfo *scratch_buffer, const ITensorInfo *output_state_out, const ITensorInfo *cell_state_out, const ITensorInfo *output,
Michalis Spyroubcedf512018-03-22 14:55:08 +0000332 const LSTMParams<ITensorInfo> &lstm_params, const ActivationLayerInfo &activation_info, float cell_threshold, float projection_threshold)
333{
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100334 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input,
335 input_to_forget_weights, input_to_cell_weights, input_to_output_weights,
336 recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights,
337 forget_gate_bias, cell_bias, output_gate_bias,
338 output_state_in, cell_state_in,
339 scratch_buffer, output_state_out, cell_state_out, output);
340
341 // Check data types
Michalis Spyroubcedf512018-03-22 14:55:08 +0000342 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F16, DataType::F32);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100343 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input,
344 input_to_forget_weights, input_to_cell_weights, input_to_output_weights,
345 recurrent_to_forget_weights, recurrent_to_cell_weights, recurrent_to_output_weights,
346 forget_gate_bias, cell_bias, output_gate_bias,
347 output_state_in, cell_state_in,
348 scratch_buffer, output_state_out, cell_state_out, output);
349
350 // Check dimensions
Georgios Pinitas42447c12018-07-16 17:01:20 +0100351 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 2);
352 ARM_COMPUTE_RETURN_ERROR_ON(input_to_forget_weights->num_dimensions() > 2);
353 ARM_COMPUTE_RETURN_ERROR_ON(input_to_cell_weights->num_dimensions() > 2);
354 ARM_COMPUTE_RETURN_ERROR_ON(input_to_output_weights->num_dimensions() > 2);
355 ARM_COMPUTE_RETURN_ERROR_ON(recurrent_to_forget_weights->num_dimensions() > 2);
356 ARM_COMPUTE_RETURN_ERROR_ON(recurrent_to_cell_weights->num_dimensions() > 2);
357 ARM_COMPUTE_RETURN_ERROR_ON(recurrent_to_output_weights->num_dimensions() > 2);
358 ARM_COMPUTE_RETURN_ERROR_ON(forget_gate_bias->num_dimensions() > 1);
359 ARM_COMPUTE_RETURN_ERROR_ON(cell_bias->num_dimensions() > 1);
360 ARM_COMPUTE_RETURN_ERROR_ON(output_gate_bias->num_dimensions() > 1);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100361 ARM_COMPUTE_RETURN_ERROR_ON(output_state_in->num_dimensions() > 2);
362 ARM_COMPUTE_RETURN_ERROR_ON(cell_state_in->num_dimensions() > 2);
Georgios Pinitas42447c12018-07-16 17:01:20 +0100363 ARM_COMPUTE_RETURN_ERROR_ON(scratch_buffer->num_dimensions() > 2);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100364 ARM_COMPUTE_RETURN_ERROR_ON(output_state_out->num_dimensions() > 2);
365 ARM_COMPUTE_RETURN_ERROR_ON(cell_state_out->num_dimensions() > 2);
Georgios Pinitas42447c12018-07-16 17:01:20 +0100366 ARM_COMPUTE_RETURN_ERROR_ON(output->num_dimensions() > 2);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100367 ARM_COMPUTE_RETURN_ERROR_ON(cell_bias->dimension(0) * 4 != scratch_buffer->dimension(0)
368 && cell_bias->dimension(0) * 3 != scratch_buffer->dimension(0));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000369
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100370 const unsigned int num_batches = input->dimension(1);
371 const unsigned int num_cells = input_to_output_weights->dimension(1);
372
373 // Check peephole optimization
Michalis Spyroubcedf512018-03-22 14:55:08 +0000374 if(lstm_params.has_peephole_opt())
375 {
Michalis Spyrou09daf4d2018-06-28 17:07:22 +0100376 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(lstm_params.cell_to_output_weights(), lstm_params.cell_to_forget_weights());
Georgios Pinitas42447c12018-07-16 17:01:20 +0100377 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.cell_to_forget_weights()->num_dimensions() > 1);
378 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.cell_to_output_weights()->num_dimensions() > 1);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000379 }
380
381 TensorShape units_out_transposed_shape = compute_transposed_shape(*recurrent_to_output_weights);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000382 TensorShape num_units_transposed_shape = compute_transposed_shape(*forget_gate_bias);
383 const TensorInfo units_out_transposed_info = TensorInfo(units_out_transposed_shape, 1, input->data_type());
Michalis Spyroubcedf512018-03-22 14:55:08 +0000384 const TensorInfo num_units_transposed_info = TensorInfo(num_units_transposed_shape, 1, input->data_type());
385
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100386 TensorInfo input_gate = TensorInfo(TensorShape(num_cells, num_batches), 1, input->data_type());
387 TensorInfo forget_gate = TensorInfo(TensorShape(num_cells, num_batches), 1, input->data_type());
388 TensorInfo output_gate_tmp = TensorInfo(TensorShape(num_cells, num_batches), 1, input->data_type());
389 TensorInfo cell_state_tmp = TensorInfo(TensorShape(num_cells, num_batches), 1, input->data_type());
390
Michalis Spyroubcedf512018-03-22 14:55:08 +0000391 // Validate forget gate
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100392 ARM_COMPUTE_RETURN_ON_ERROR(CLFullyConnectedLayer::validate(input, input_to_forget_weights, forget_gate_bias, &forget_gate));
John Kesapidescafec8f2019-02-19 15:53:59 +0000393
394 std::vector<const ITensorInfo *> inputs_vector;
395 inputs_vector.emplace_back(input);
396 inputs_vector.emplace_back(output_state_in);
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +0100397 const TensorShape concat_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(inputs_vector, 0);
John Kesapidescafec8f2019-02-19 15:53:59 +0000398 TensorInfo forget_gate_concat = TensorInfo(concat_shape, 1, input->data_type());
399
400 ARM_COMPUTE_RETURN_ON_ERROR(CLWidthConcatenate2TensorsKernel::validate(input, output_state_in, &forget_gate_concat));
401
Michalis Spyroubcedf512018-03-22 14:55:08 +0000402 if(lstm_params.has_peephole_opt())
403 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100404 ARM_COMPUTE_RETURN_ON_ERROR(CLPixelWiseMultiplicationKernel::validate(cell_state_in, lstm_params.cell_to_forget_weights(), &forget_gate, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN));
405 ARM_COMPUTE_RETURN_ON_ERROR(CLArithmeticAddition::validate(&forget_gate, &forget_gate, &forget_gate, ConvertPolicy::SATURATE));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000406 }
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100407 ARM_COMPUTE_RETURN_ON_ERROR(CLActivationLayerKernel::validate(&forget_gate, &forget_gate, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC)));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000408
409 // Validate input gate
410 if(!lstm_params.has_cifg_opt())
411 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100412 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(lstm_params.input_to_input_weights(),
413 lstm_params.recurrent_to_input_weights(),
414 lstm_params.input_gate_bias());
Georgios Pinitas42447c12018-07-16 17:01:20 +0100415 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.input_to_input_weights()->num_dimensions() > 2);
416 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.recurrent_to_input_weights()->num_dimensions() > 2);
Georgios Pinitas42447c12018-07-16 17:01:20 +0100417 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.input_gate_bias()->num_dimensions() > 1);
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100418
John Kesapidescafec8f2019-02-19 15:53:59 +0000419 std::vector<const ITensorInfo *> lstm_weights;
420 lstm_weights.emplace_back(lstm_params.input_to_input_weights());
421 lstm_weights.emplace_back(lstm_params.recurrent_to_input_weights());
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +0100422 TensorShape lstm_weights_concat_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(lstm_weights, 0);
John Kesapidescafec8f2019-02-19 15:53:59 +0000423 TensorInfo lstm_gate_concat = TensorInfo(lstm_weights_concat_shape, 1, input->data_type());
424 ARM_COMPUTE_RETURN_ON_ERROR(CLWidthConcatenate2TensorsKernel::validate(lstm_params.input_to_input_weights(), lstm_params.recurrent_to_input_weights(), &lstm_gate_concat));
425
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100426 ARM_COMPUTE_RETURN_ON_ERROR(CLFullyConnectedLayer::validate(input, lstm_params.input_to_input_weights(), lstm_params.input_gate_bias(), &input_gate));
John Kesapidescafec8f2019-02-19 15:53:59 +0000427
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100428 if(lstm_params.has_peephole_opt())
429 {
430 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(lstm_params.cell_to_input_weights());
431 ARM_COMPUTE_RETURN_ERROR_ON(lstm_params.cell_to_input_weights()->num_dimensions() > 1);
432 ARM_COMPUTE_RETURN_ON_ERROR(CLPixelWiseMultiplicationKernel::validate(cell_state_in, lstm_params.cell_to_input_weights(), &input_gate, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN));
433 ARM_COMPUTE_RETURN_ON_ERROR(CLArithmeticAddition::validate(&input_gate, &input_gate, &input_gate, ConvertPolicy::SATURATE));
434 }
435 ARM_COMPUTE_RETURN_ON_ERROR(CLActivationLayerKernel::validate(&input_gate, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC)));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000436 }
437 else
438 {
giuros01164a2722018-11-20 18:34:46 +0000439 ARM_COMPUTE_RETURN_ON_ERROR(CLSaturatedArithmeticOperationKernel::validate(ArithmeticOperation::SUB, &forget_gate, &forget_gate, &forget_gate, ConvertPolicy::SATURATE));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000440 }
441
442 // Validate cell state
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100443 ARM_COMPUTE_RETURN_ON_ERROR(CLFullyConnectedLayer::validate(input, input_to_cell_weights, cell_bias, &cell_state_tmp));
444 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMM::validate(output_state_in, &units_out_transposed_info, nullptr, &cell_state_tmp, 1.f, 0.f, GEMMInfo()));
445 ARM_COMPUTE_RETURN_ON_ERROR(CLArithmeticAddition::validate(&cell_state_tmp, &cell_state_tmp, &cell_state_tmp, ConvertPolicy::SATURATE));
446 ARM_COMPUTE_RETURN_ON_ERROR(CLActivationLayerKernel::validate(&cell_state_tmp, nullptr, activation_info));
447 ARM_COMPUTE_RETURN_ON_ERROR(CLPixelWiseMultiplicationKernel::validate(&cell_state_tmp, &input_gate, &cell_state_tmp, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN));
448 ARM_COMPUTE_RETURN_ON_ERROR(CLPixelWiseMultiplicationKernel::validate(&cell_state_tmp, &forget_gate, &cell_state_tmp, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN));
449 ARM_COMPUTE_RETURN_ON_ERROR(CLArithmeticAddition::validate(&cell_state_tmp, &cell_state_tmp, &cell_state_tmp, ConvertPolicy::SATURATE));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000450 if(cell_threshold != 0.f)
451 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100452 ARM_COMPUTE_RETURN_ON_ERROR(CLActivationLayerKernel::validate(&cell_state_tmp, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -cell_threshold,
453 cell_threshold)));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000454 }
455
John Kesapidescafec8f2019-02-19 15:53:59 +0000456 std::vector<const ITensorInfo *> in_out_weights;
457 in_out_weights.emplace_back(input_to_output_weights);
458 in_out_weights.emplace_back(recurrent_to_output_weights);
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +0100459 TensorShape in_out_weights_concat_shape = arm_compute::misc::shape_calculator::calculate_concatenate_shape(in_out_weights, 0);
John Kesapidescafec8f2019-02-19 15:53:59 +0000460 TensorInfo in_out_gate_concat = TensorInfo(in_out_weights_concat_shape, 1, input->data_type());
461 ARM_COMPUTE_RETURN_ON_ERROR(CLWidthConcatenate2TensorsKernel::validate(input_to_output_weights, recurrent_to_output_weights, &in_out_gate_concat));
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100462 // Validate output gate tmp
463 ARM_COMPUTE_RETURN_ON_ERROR(CLFullyConnectedLayer::validate(input, input_to_output_weights, output_gate_bias, &output_gate_tmp));
John Kesapidescafec8f2019-02-19 15:53:59 +0000464
Michalis Spyroubcedf512018-03-22 14:55:08 +0000465 if(lstm_params.has_peephole_opt())
466 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100467 ARM_COMPUTE_RETURN_ON_ERROR(CLPixelWiseMultiplicationKernel::validate(&cell_state_tmp, lstm_params.cell_to_output_weights(), &output_gate_tmp, 1, ConvertPolicy::SATURATE,
468 RoundingPolicy::TO_NEAREST_EVEN));
469 ARM_COMPUTE_RETURN_ON_ERROR(CLArithmeticAddition::validate(&output_gate_tmp, &output_gate_tmp, &output_gate_tmp, ConvertPolicy::SATURATE));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000470 }
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100471 ARM_COMPUTE_RETURN_ON_ERROR(CLActivationLayerKernel::validate(&output_gate_tmp, nullptr, ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC)));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000472
473 // Validate output state
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100474 ARM_COMPUTE_RETURN_ON_ERROR(CLActivationLayerKernel::validate(&cell_state_tmp, &cell_state_tmp, activation_info));
475 ARM_COMPUTE_RETURN_ON_ERROR(CLPixelWiseMultiplicationKernel::validate(&cell_state_tmp, &output_gate_tmp, &output_gate_tmp, 1, ConvertPolicy::SATURATE, RoundingPolicy::TO_NEAREST_EVEN));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000476 if(lstm_params.has_projection())
477 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100478 ARM_COMPUTE_RETURN_ON_ERROR(CLFullyConnectedLayer::validate(&output_gate_tmp, lstm_params.projection_weights(), lstm_params.projection_bias(), output_state_out));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000479 if(projection_threshold != 0.f)
480 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100481 ARM_COMPUTE_RETURN_ON_ERROR(CLActivationLayerKernel::validate(output_state_out, output_state_out,
482 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, -projection_threshold, projection_threshold)));
Michalis Spyroubcedf512018-03-22 14:55:08 +0000483 }
484 }
485
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100486 // Validate copy kernel
487 ARM_COMPUTE_RETURN_ON_ERROR(CLCopyKernel::validate(&cell_state_tmp, cell_state_out));
488 ARM_COMPUTE_RETURN_ON_ERROR(CLCopyKernel::validate(output_state_out, output));
489
490 // Validate scratch concatenation
491 std::vector<ITensorInfo *> inputs_vector_info_raw;
Georgios Pinitas0cc37c32018-11-14 15:54:26 +0000492 if(!lstm_params.has_cifg_opt())
Michalis Spyroubcedf512018-03-22 14:55:08 +0000493 {
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100494 inputs_vector_info_raw.push_back(&input_gate);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000495 }
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100496 inputs_vector_info_raw.push_back(&cell_state_tmp);
497 inputs_vector_info_raw.push_back(&forget_gate);
498 inputs_vector_info_raw.push_back(&output_gate_tmp);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000499
500 ARM_COMPUTE_RETURN_ON_ERROR(CLWidthConcatenateLayer::validate(inputs_vector_info_raw, scratch_buffer));
501 return Status{};
502}
503
504void CLLSTMLayer::run()
505{
John Kesapidescafec8f2019-02-19 15:53:59 +0000506 prepare();
507
Michalis Spyroubcedf512018-03-22 14:55:08 +0000508 _memory_group.acquire();
509
John Kesapidescafec8f2019-02-19 15:53:59 +0000510 CLScheduler::get().enqueue(_concat_inputs_forget_gate);
511
Michalis Spyroubcedf512018-03-22 14:55:08 +0000512 _fully_connected_forget_gate.run();
Michalis Spyroubcedf512018-03-22 14:55:08 +0000513
514 if(_run_peephole_opt)
515 {
Georgios Pinitas42a31722018-07-09 14:35:32 +0100516 CLScheduler::get().enqueue(_pixelwise_mul_forget_gate);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000517 _accum_forget_gate2.run();
518 }
519 CLScheduler::get().enqueue(_activation_forget_gate);
520
521 if(_run_cifg_opt)
522 {
Georgios Pinitasdbfc2dc2019-04-02 12:51:21 +0100523 CLScheduler::get().enqueue(_ones_memset_kernel);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000524 CLScheduler::get().enqueue(_subtract_input_gate);
525 }
526 else
527 {
528 _fully_connected_input_gate.run();
John Kesapidescafec8f2019-02-19 15:53:59 +0000529
Georgios Pinitas8bc745d2018-07-18 19:51:24 +0100530 if(_run_peephole_opt)
531 {
532 CLScheduler::get().enqueue(_pixelwise_mul_input_gate);
533 _accum_input_gate2.run();
534 }
Michalis Spyroubcedf512018-03-22 14:55:08 +0000535 CLScheduler::get().enqueue(_activation_input_gate);
536 }
537
538 _fully_connected_cell_state.run();
Georgios Pinitas42a31722018-07-09 14:35:32 +0100539 CLScheduler::get().enqueue(_transpose_cell_state);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000540 _gemm_cell_state1.run();
541 CLScheduler::get().enqueue(_accum_cell_state1);
542 CLScheduler::get().enqueue(_activation_cell_state);
543 CLScheduler::get().enqueue(_pixelwise_mul_cell_state1);
544 CLScheduler::get().enqueue(_pixelwise_mul_cell_state2);
545 CLScheduler::get().enqueue(_accum_cell_state2);
546
547 if(_perform_cell_clipping)
548 {
549 CLScheduler::get().enqueue(_cell_clip);
550 }
551
552 _fully_connected_output.run();
Michalis Spyroubcedf512018-03-22 14:55:08 +0000553
554 if(_run_peephole_opt)
555 {
Georgios Pinitas42a31722018-07-09 14:35:32 +0100556 CLScheduler::get().enqueue(_pixelwise_mul_output_state1);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000557 _accum_output2.run();
558 }
559 CLScheduler::get().enqueue(_activation_output);
560
561 CLScheduler::get().enqueue(_activation_output_state);
Georgios Pinitas42a31722018-07-09 14:35:32 +0100562 CLScheduler::get().enqueue(_pixelwise_mul_output_state2);
Michalis Spyroubcedf512018-03-22 14:55:08 +0000563
564 if(_has_projection_weights)
565 {
566 _fully_connected_output_state.run();
567 if(_perform_projection_clipping)
568 {
569 CLScheduler::get().enqueue(_projection_clip);
570 }
571 }
572
573 CLScheduler::get().enqueue(_copy_cell_state);
574 CLScheduler::get().enqueue(_copy_output);
575
576 _concat_scratch_buffer.run();
577
578 _memory_group.release();
giuros01164a2722018-11-20 18:34:46 +0000579}
John Kesapidescafec8f2019-02-19 15:53:59 +0000580
581void CLLSTMLayer::prepare()
582{
583 if(!_is_prepared)
584 {
585 CLScheduler::get().enqueue(_concat_weights_forget_gate);
586 if(!_run_cifg_opt)
587 {
588 CLScheduler::get().enqueue(_concat_weights_input_gate);
589 }
590 CLScheduler::get().enqueue(_concat_weights_output);
591 _is_prepared = true;
592 }
593}