blob: 67f40646322c64d9f98ac5cc7dab0255b56bacaa [file] [log] [blame]
Michalis Spyrou542e92d2018-06-05 11:45:48 +01001/*
Georgios Pinitasda953f22019-04-02 17:27:03 +01002 * Copyright (c) 2018-2019 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"
33
34namespace arm_compute
35{
36NERNNLayer::NERNNLayer(std::shared_ptr<IMemoryManager> memory_manager)
Michalis Spyrou1a569a32019-09-10 17:20:34 +010037 : _memory_group(std::move(memory_manager)), _gemm_state_f(), _add_kernel(), _activation_kernel(), _fully_connected(memory_manager), _copy_kernel(), _fully_connected_out(), _gemm_output(),
38 _add_output(), _is_prepared(false)
Michalis Spyrou542e92d2018-06-05 11:45:48 +010039{
40}
41
42Status NERNNLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *recurrent_weights, const ITensorInfo *bias, const ITensorInfo *hidden_state,
43 const ITensorInfo *output, const ActivationLayerInfo &info)
44{
45 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weights, recurrent_weights, bias, hidden_state, output);
46
47 const int idx_width = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::WIDTH);
48 const int idx_height = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::HEIGHT);
49 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(idx_width) != weights->dimension(idx_width));
50 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(idx_height) != recurrent_weights->dimension(idx_width));
51 ARM_COMPUTE_RETURN_ERROR_ON(recurrent_weights->dimension(idx_width) != recurrent_weights->dimension(idx_height));
52 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() != 1);
53 ARM_COMPUTE_RETURN_ERROR_ON(bias->dimension(idx_width) != weights->dimension(idx_height));
54 ARM_COMPUTE_RETURN_ERROR_ON(hidden_state->dimension(idx_width) != weights->dimension(idx_height));
55 ARM_COMPUTE_RETURN_ERROR_ON(hidden_state->dimension(idx_height) != input->dimension(idx_height));
56 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), hidden_state->tensor_shape());
57
58 auto shape_info = TensorInfo(misc::shape_calculator::compute_rnn_shape(recurrent_weights, hidden_state->dimension(idx_height)), 1, input->data_type());
59
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010060 ARM_COMPUTE_RETURN_ON_ERROR(NEFullyConnectedLayer::validate(input, weights, bias, &shape_info));
Michalis Spyrou542e92d2018-06-05 11:45:48 +010061 ARM_COMPUTE_RETURN_ON_ERROR(NEArithmeticAdditionKernel::validate(&shape_info, &shape_info, &shape_info, ConvertPolicy::SATURATE));
62 ARM_COMPUTE_RETURN_ON_ERROR(NEActivationLayerKernel::validate(&shape_info, &shape_info, info));
63
64 return Status{};
65}
66
67void NERNNLayer::configure(const ITensor *input, const ITensor *weights, const ITensor *recurrent_weights, const ITensor *bias, ITensor *hidden_state, ITensor *output,
68 ActivationLayerInfo &info)
69{
70 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, recurrent_weights, bias, hidden_state, output);
71 ARM_COMPUTE_ERROR_THROW_ON(NERNNLayer::validate(input->info(), weights->info(), recurrent_weights->info(), bias->info(), hidden_state->info(), output->info(), info));
72
Michalis Spyrou542e92d2018-06-05 11:45:48 +010073 const int idx_height = get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::HEIGHT);
74 TensorShape shape = misc::shape_calculator::compute_rnn_shape(recurrent_weights->info(), hidden_state->info()->dimension(idx_height));
75
Georgios Pinitas3ada2b72018-08-23 15:54:36 +010076 _is_prepared = false;
77
Michalis Spyrou542e92d2018-06-05 11:45:48 +010078 // Manage intermediate buffers and configure
79 _fully_connected_out.allocator()->init(TensorInfo(shape, 1, input->info()->data_type()));
Georgios Pinitas3ada2b72018-08-23 15:54:36 +010080 _gemm_output.allocator()->init(TensorInfo(shape, 1, input->info()->data_type()));
81
82 // Manage intermediate buffers and configure
Michalis Spyrou542e92d2018-06-05 11:45:48 +010083 _memory_group.manage(&_fully_connected_out);
Michalis Spyrou1a569a32019-09-10 17:20:34 +010084 _fully_connected.configure(input, weights, bias, &_fully_connected_out);
Michalis Spyrou542e92d2018-06-05 11:45:48 +010085
Michalis Spyrou542e92d2018-06-05 11:45:48 +010086 _memory_group.manage(&_gemm_output);
87 _gemm_state_f.configure(hidden_state, recurrent_weights, nullptr, &_gemm_output, 1.f, 0.f);
88
89 _add_output.allocator()->init(TensorInfo(shape, 1, input->info()->data_type()));
90 _memory_group.manage(&_add_output);
Georgios Pinitas3ada2b72018-08-23 15:54:36 +010091
Michalis Spyrou542e92d2018-06-05 11:45:48 +010092 _add_kernel.configure(&_fully_connected_out, &_gemm_output, &_add_output, ConvertPolicy::SATURATE);
93
94 _fully_connected_out.allocator()->allocate();
95 _gemm_output.allocator()->allocate();
96
97 _activation_kernel.configure(&_add_output, hidden_state, info);
98 _add_output.allocator()->allocate();
Georgios Pinitas3ada2b72018-08-23 15:54:36 +010099
100 _copy_kernel.configure(hidden_state, output);
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100101}
102
103void NERNNLayer::run()
104{
Georgios Pinitas3ada2b72018-08-23 15:54:36 +0100105 prepare();
106
Georgios Pinitasda953f22019-04-02 17:27:03 +0100107 MemoryGroupResourceScope scope_mg(_memory_group);
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100108
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100109 _fully_connected.run();
Georgios Pinitas3ada2b72018-08-23 15:54:36 +0100110
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100111 _gemm_state_f.run();
Georgios Pinitas3ada2b72018-08-23 15:54:36 +0100112
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100113 NEScheduler::get().schedule(&_add_kernel, Window::DimY);
114 NEScheduler::get().schedule(&_activation_kernel, Window::DimY);
115
116 // copy hidden out to output
Georgios Pinitas3ada2b72018-08-23 15:54:36 +0100117 NEScheduler::get().schedule(&_copy_kernel, Window::DimY);
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100118}
Georgios Pinitas3ada2b72018-08-23 15:54:36 +0100119
120void NERNNLayer::prepare()
121{
122 if(!_is_prepared)
123 {
Michalis Spyrou1a569a32019-09-10 17:20:34 +0100124 _fully_connected.prepare();
Georgios Pinitas3ada2b72018-08-23 15:54:36 +0100125 _gemm_state_f.prepare();
126
127 _is_prepared = true;
128 }
129}
Michalis Spyrou542e92d2018-06-05 11:45:48 +0100130} // namespace arm_compute