blob: 34b78eefa7fea511897814b96a4ca82fb9e8a7ec [file] [log] [blame]
Michalis Spyrou36a559e2018-03-20 10:30:58 +00001/*
Sheri Zhang7e20e292021-02-02 11:49:34 +00002 * Copyright (c) 2018-2021 Arm Limited.
Michalis Spyrou36a559e2018-03-20 10:30:58 +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/CLRNNLayer.h"
25
26#include "arm_compute/core/Helpers.h"
27#include "arm_compute/core/Types.h"
28#include "arm_compute/core/Utils.h"
29#include "arm_compute/core/utils/misc/ShapeCalculator.h"
30#include "arm_compute/runtime/CL/CLScheduler.h"
Michalis Spyrou36a559e2018-03-20 10:30:58 +000031
ramelg016d891572021-09-29 10:05:09 +010032#include "src/common/utils/Log.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010033#include "src/core/CL/kernels/CLFillBorderKernel.h"
ramelg016d891572021-09-29 10:05:09 +010034
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010035namespace arm_compute
36{
Michalis Spyrou36a559e2018-03-20 10:30:58 +000037using namespace arm_compute::misc::shape_calculator;
38
39CLRNNLayer::CLRNNLayer(std::shared_ptr<IMemoryManager> memory_manager)
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010040 : _memory_group(std::move(memory_manager)),
41 _gemm_state_f(),
42 _add_kernel(),
43 _activation(),
44 _fully_connected_kernel(),
45 _copy(),
46 _fully_connected_out(),
47 _gemm_output(),
48 _add_output(),
Sheri Zhang7e20e292021-02-02 11:49:34 +000049 _is_prepared(false)
Michalis Spyrou36a559e2018-03-20 10:30:58 +000050{
51}
52
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010053CLRNNLayer::~CLRNNLayer() = default;
54
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010055Status CLRNNLayer::validate(const ITensorInfo *input,
56 const ITensorInfo *weights,
57 const ITensorInfo *recurrent_weights,
58 const ITensorInfo *bias,
59 const ITensorInfo *hidden_state,
60 const ITensorInfo *output,
61 const ActivationLayerInfo &info)
Michalis Spyrou36a559e2018-03-20 10:30:58 +000062{
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010063 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, recurrent_weights, bias, hidden_state, output);
64 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_NOT_IN(input, DataType::F16, DataType::F32);
65 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights, recurrent_weights, bias, hidden_state, output);
66
Michalis Spyrou36a559e2018-03-20 10:30:58 +000067 const int idx_width = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::WIDTH);
68 const int idx_height = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::HEIGHT);
Michele Di Giorgiof6f78762020-07-06 11:27:21 +010069
Michalis Spyrou36a559e2018-03-20 10:30:58 +000070 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(idx_width) != weights->dimension(idx_width));
71 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(idx_height) != recurrent_weights->dimension(idx_width));
72 ARM_COMPUTE_RETURN_ERROR_ON(recurrent_weights->dimension(idx_width) != recurrent_weights->dimension(1));
73 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() != 1);
74 ARM_COMPUTE_RETURN_ERROR_ON(bias->dimension(idx_width) != weights->dimension(idx_height));
75 ARM_COMPUTE_RETURN_ERROR_ON(hidden_state->dimension(idx_width) != weights->dimension(idx_height));
76 ARM_COMPUTE_RETURN_ERROR_ON(hidden_state->dimension(idx_height) != input->dimension(idx_height));
77 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), hidden_state->tensor_shape());
78
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010079 auto shape_info =
80 TensorInfo(compute_rnn_shape(recurrent_weights, hidden_state->dimension(idx_height)), 1, input->data_type());
Michalis Spyrou36a559e2018-03-20 10:30:58 +000081
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010082 ARM_COMPUTE_RETURN_ON_ERROR(CLFullyConnectedLayer::validate(input, weights, bias, &shape_info));
Michalis Spyrou36a559e2018-03-20 10:30:58 +000083 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMM::validate(hidden_state, recurrent_weights, nullptr, &shape_info, 1.f, 0.f));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010084 ARM_COMPUTE_RETURN_ON_ERROR(
85 CLArithmeticAddition::validate(&shape_info, &shape_info, &shape_info, ConvertPolicy::SATURATE));
Georgios Pinitasab23dd02020-07-06 14:57:36 +010086 ARM_COMPUTE_RETURN_ON_ERROR(CLActivationLayer::validate(&shape_info, &shape_info, info));
Michalis Spyrou36a559e2018-03-20 10:30:58 +000087
88 return Status{};
89}
90
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010091void CLRNNLayer::configure(const ICLTensor *input,
92 const ICLTensor *weights,
93 const ICLTensor *recurrent_weights,
94 const ICLTensor *bias,
95 ICLTensor *hidden_state,
96 ICLTensor *output,
Michalis Spyrou36a559e2018-03-20 10:30:58 +000097 ActivationLayerInfo &info)
98{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010099 configure(CLKernelLibrary::get().get_compile_context(), input, weights, recurrent_weights, bias, hidden_state,
100 output, info);
Manuel Bottini2b84be52020-04-08 10:15:51 +0100101}
102
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100103void CLRNNLayer::configure(const CLCompileContext &compile_context,
104 const ICLTensor *input,
105 const ICLTensor *weights,
106 const ICLTensor *recurrent_weights,
107 const ICLTensor *bias,
108 ICLTensor *hidden_state,
109 ICLTensor *output,
110 ActivationLayerInfo &info)
Manuel Bottini2b84be52020-04-08 10:15:51 +0100111{
Michalis Spyrou3672df32018-03-28 14:35:08 +0100112 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, recurrent_weights, bias, hidden_state, output);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100113 ARM_COMPUTE_ERROR_THROW_ON(CLRNNLayer::validate(input->info(), weights->info(), recurrent_weights->info(),
114 bias->info(), hidden_state->info(), output->info(), info));
ramelg016d891572021-09-29 10:05:09 +0100115 ARM_COMPUTE_LOG_PARAMS(input, weights, recurrent_weights, bias, hidden_state, output, info);
Michalis Spyrou3672df32018-03-28 14:35:08 +0100116
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000117 const int idx_height = get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::HEIGHT);
118 TensorShape shape = compute_rnn_shape(recurrent_weights->info(), hidden_state->info()->dimension(idx_height));
119
Georgios Pinitas72219332018-06-05 14:56:06 +0100120 _is_prepared = false;
121
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000122 _fully_connected_out.allocator()->init(TensorInfo(shape, 1, input->info()->data_type()));
123 _gemm_output.allocator()->init(TensorInfo(shape, 1, input->info()->data_type()));
124
125 // Manage intermediate buffers and configure
126 _memory_group.manage(&_fully_connected_out);
Manuel Bottini2b84be52020-04-08 10:15:51 +0100127 _fully_connected_kernel.configure(compile_context, input, weights, bias, &_fully_connected_out);
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000128
129 _memory_group.manage(&_gemm_output);
Manuel Bottini2b84be52020-04-08 10:15:51 +0100130 _gemm_state_f.configure(compile_context, hidden_state, recurrent_weights, nullptr, &_gemm_output, 1.f, 0.f);
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000131
132 _add_output.allocator()->init(TensorInfo(shape, 1, input->info()->data_type()));
133 _memory_group.manage(&_add_output);
134
Michalis Spyrouad7515d2020-07-24 00:02:23 +0100135 _add_kernel.configure(compile_context, &_fully_connected_out, &_gemm_output, &_add_output, ConvertPolicy::SATURATE);
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000136
137 _fully_connected_out.allocator()->allocate();
138 _gemm_output.allocator()->allocate();
139
Georgios Pinitasab23dd02020-07-06 14:57:36 +0100140 _activation.configure(compile_context, &_add_output, hidden_state, info);
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000141 _add_output.allocator()->allocate();
142
Sheri Zhang7e20e292021-02-02 11:49:34 +0000143 _copy.configure(compile_context, hidden_state, output);
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000144}
145
146void CLRNNLayer::run()
147{
Georgios Pinitas72219332018-06-05 14:56:06 +0100148 prepare();
149
Georgios Pinitasda953f22019-04-02 17:27:03 +0100150 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitas72219332018-06-05 14:56:06 +0100151
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000152 _fully_connected_kernel.run();
153 _gemm_state_f.run();
Michalis Spyrouad7515d2020-07-24 00:02:23 +0100154 _add_kernel.run();
Georgios Pinitasab23dd02020-07-06 14:57:36 +0100155 _activation.run();
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000156
157 // copy hidden out to output
Sheri Zhang7e20e292021-02-02 11:49:34 +0000158 _copy.run();
Georgios Pinitas72219332018-06-05 14:56:06 +0100159}
160
161void CLRNNLayer::prepare()
162{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100163 if (!_is_prepared)
Georgios Pinitas72219332018-06-05 14:56:06 +0100164 {
165 _fully_connected_kernel.prepare();
166 _gemm_state_f.prepare();
167
168 _is_prepared = true;
169 }
giuros01164a2722018-11-20 18:34:46 +0000170}
Michele Di Giorgiof6f78762020-07-06 11:27:21 +0100171} // namespace arm_compute