blob: 63e8103c03ab78a371857d3ed412947d767e3187 [file] [log] [blame]
Michalis Spyrou542e92d2018-06-05 11:45:48 +01001/*
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00002 * Copyright (c) 2018-2021 Arm Limited.
Michalis Spyrou542e92d2018-06-05 11:45:48 +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
25#include "arm_compute/runtime/NEON/functions/NERNNLayer.h"
26
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/TensorInfo.h"
29#include "arm_compute/core/Types.h"
30#include "arm_compute/core/Validate.h"
31#include "arm_compute/core/utils/misc/ShapeCalculator.h"
32#include "arm_compute/runtime/NEON/NEScheduler.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010033#include "src/core/NEON/kernels/NEConvertFullyConnectedWeightsKernel.h"
34#include "src/core/NEON/kernels/NEConvertQuantizedSignednessKernel.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010035#include "src/core/NEON/kernels/NEGEMMInterleave4x4Kernel.h"
36#include "src/core/NEON/kernels/NEGEMMLowpMatrixMultiplyKernel.h"
37#include "src/core/NEON/kernels/NEGEMMLowpOffsetContributionKernel.h"
38#include "src/core/NEON/kernels/NEGEMMLowpOffsetContributionOutputStageKernel.h"
39#include "src/core/NEON/kernels/NEGEMMLowpReductionKernel.h"
40#include "src/core/NEON/kernels/NEGEMMMatrixAdditionKernel.h"
41#include "src/core/NEON/kernels/NEGEMMMatrixMultiplyKernel.h"
42#include "src/core/NEON/kernels/NEGEMMTranspose1xWKernel.h"
Michalis Spyrou542e92d2018-06-05 11:45:48 +010043
44namespace arm_compute
45{
Michalis Spyrouebcebf12020-10-21 00:04:14 +010046NERNNLayer::~NERNNLayer() = default;
47
Michalis Spyrou542e92d2018-06-05 11:45:48 +010048NERNNLayer::NERNNLayer(std::shared_ptr<IMemoryManager> memory_manager)
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000049 : _memory_group(std::move(memory_manager)), _gemm_state_f(), _add_f(), _activation(), _fully_connected(memory_manager), _copy_f(), _fully_connected_out(), _gemm_output(), _add_output(),
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010050 _is_prepared(false)
Michalis Spyrou542e92d2018-06-05 11:45:48 +010051{
52}
53
54Status NERNNLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *recurrent_weights, const ITensorInfo *bias, const ITensorInfo *hidden_state,
55 const ITensorInfo *output, const ActivationLayerInfo &info)
56{
57 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, recurrent_weights, bias, hidden_state, output);
Michele Di Giorgiof9b595a2020-07-03 13:34:52 +010058 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_NOT_IN(input, DataType::F16, DataType::F32);
Michalis Spyrou542e92d2018-06-05 11:45:48 +010059
60 const int idx_width = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::WIDTH);
61 const int idx_height = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::HEIGHT);
62 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(idx_width) != weights->dimension(idx_width));
Michalis Spyrou773e43c2020-03-04 15:44:46 +000063 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() != 2);
Michalis Spyrou542e92d2018-06-05 11:45:48 +010064 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(idx_height) != recurrent_weights->dimension(idx_width));
65 ARM_COMPUTE_RETURN_ERROR_ON(recurrent_weights->dimension(idx_width) != recurrent_weights->dimension(idx_height));
66 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() != 1);
67 ARM_COMPUTE_RETURN_ERROR_ON(bias->dimension(idx_width) != weights->dimension(idx_height));
68 ARM_COMPUTE_RETURN_ERROR_ON(hidden_state->dimension(idx_width) != weights->dimension(idx_height));
69 ARM_COMPUTE_RETURN_ERROR_ON(hidden_state->dimension(idx_height) != input->dimension(idx_height));
70 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), hidden_state->tensor_shape());
71
72 auto shape_info = TensorInfo(misc::shape_calculator::compute_rnn_shape(recurrent_weights, hidden_state->dimension(idx_height)), 1, input->data_type());
73
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010074 ARM_COMPUTE_RETURN_ON_ERROR(NEFullyConnectedLayer::validate(input, weights, bias, &shape_info));
Michalis Spyrou173ba9b2020-06-23 17:25:43 +010075 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAddition::validate(&shape_info, &shape_info, &shape_info, ConvertPolicy::SATURATE));
Georgios Pinitas1fd2c802020-06-16 17:44:46 +010076 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayer::validate(&shape_info, &shape_info, info));
Michalis Spyrou542e92d2018-06-05 11:45:48 +010077
78 return Status{};
79}
80
81void NERNNLayer::configure(const ITensor *input, const ITensor *weights, const ITensor *recurrent_weights, const ITensor *bias, ITensor *hidden_state, ITensor *output,
82 ActivationLayerInfo &info)
83{
84 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, recurrent_weights, bias, hidden_state, output);
85 ARM_COMPUTE_ERROR_THROW_ON(NERNNLayer::validate(input->info(), weights->info(), recurrent_weights->info(), bias->info(), hidden_state->info(), output->info(), info));
86
Michalis Spyrou542e92d2018-06-05 11:45:48 +010087 const int idx_height = get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::HEIGHT);
88 TensorShape shape = misc::shape_calculator::compute_rnn_shape(recurrent_weights->info(), hidden_state->info()->dimension(idx_height));
89
Georgios Pinitas3ada2b72018-08-23 15:54:36 +010090 _is_prepared = false;
91
Michalis Spyrou542e92d2018-06-05 11:45:48 +010092 // Manage intermediate buffers and configure
93 _fully_connected_out.allocator()->init(TensorInfo(shape, 1, input->info()->data_type()));
Georgios Pinitas3ada2b72018-08-23 15:54:36 +010094 _gemm_output.allocator()->init(TensorInfo(shape, 1, input->info()->data_type()));
95
96 // Manage intermediate buffers and configure
Michalis Spyrou542e92d2018-06-05 11:45:48 +010097 _memory_group.manage(&_fully_connected_out);
Michalis Spyrou1a569a32019-09-10 17:20:34 +010098 _fully_connected.configure(input, weights, bias, &_fully_connected_out);
Michalis Spyrou542e92d2018-06-05 11:45:48 +010099
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100100 _memory_group.manage(&_gemm_output);
101 _gemm_state_f.configure(hidden_state, recurrent_weights, nullptr, &_gemm_output, 1.f, 0.f);
102
103 _add_output.allocator()->init(TensorInfo(shape, 1, input->info()->data_type()));
104 _memory_group.manage(&_add_output);
Georgios Pinitas3ada2b72018-08-23 15:54:36 +0100105
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100106 _add_f.configure(&_fully_connected_out, &_gemm_output, &_add_output, ConvertPolicy::SATURATE);
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100107
108 _fully_connected_out.allocator()->allocate();
109 _gemm_output.allocator()->allocate();
110
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100111 _activation.configure(&_add_output, hidden_state, info);
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100112 _add_output.allocator()->allocate();
Georgios Pinitas3ada2b72018-08-23 15:54:36 +0100113
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000114 _copy_f.configure(hidden_state, output);
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100115}
116
117void NERNNLayer::run()
118{
Georgios Pinitas3ada2b72018-08-23 15:54:36 +0100119 prepare();
120
Georgios Pinitasda953f22019-04-02 17:27:03 +0100121 MemoryGroupResourceScope scope_mg(_memory_group);
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100122
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100123 _fully_connected.run();
Georgios Pinitas3ada2b72018-08-23 15:54:36 +0100124
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100125 _gemm_state_f.run();
Georgios Pinitas3ada2b72018-08-23 15:54:36 +0100126
Michalis Spyrou173ba9b2020-06-23 17:25:43 +0100127 _add_f.run();
Georgios Pinitas1fd2c802020-06-16 17:44:46 +0100128 _activation.run();
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100129
130 // copy hidden out to output
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +0000131 _copy_f.run();
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100132}
Georgios Pinitas3ada2b72018-08-23 15:54:36 +0100133
134void NERNNLayer::prepare()
135{
136 if(!_is_prepared)
137 {
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100138 _fully_connected.prepare();
Georgios Pinitas3ada2b72018-08-23 15:54:36 +0100139 _gemm_state_f.prepare();
140
141 _is_prepared = true;
142 }
143}
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100144} // namespace arm_compute