blob: 63f00ac8ef6e995c93401175edff90d8864a5c26 [file] [log] [blame]
Michalis Spyrou36a559e2018-03-20 10:30:58 +00001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
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"
31#include "support/ToolchainSupport.h"
32
33#include <utility>
34
35using namespace arm_compute;
36using namespace arm_compute::misc::shape_calculator;
37
38CLRNNLayer::CLRNNLayer(std::shared_ptr<IMemoryManager> memory_manager)
Georgios Pinitas72219332018-06-05 14:56:06 +010039 : _memory_group(std::move(memory_manager)), _gemm_state_f(), _add_kernel(), _activation_kernel(), _fully_connected_kernel(), _copy_kernel(), _fully_connected_out(), _gemm_output(), _add_output(),
40 _is_prepared(false)
Michalis Spyrou36a559e2018-03-20 10:30:58 +000041{
42}
43
44Status CLRNNLayer::validate(const ITensorInfo *input, const ITensorInfo *weights, const ITensorInfo *recurrent_weights, const ITensorInfo *bias, const ITensorInfo *hidden_state,
45 const ITensorInfo *output, const ActivationLayerInfo &info)
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_NULLPTR(input, weights, recurrent_weights, bias, hidden_state, output);
50 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(idx_width) != weights->dimension(idx_width));
51 ARM_COMPUTE_RETURN_ERROR_ON(weights->dimension(idx_height) != recurrent_weights->dimension(idx_width));
52 ARM_COMPUTE_RETURN_ERROR_ON(recurrent_weights->dimension(idx_width) != recurrent_weights->dimension(1));
53 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() != 1);
54 ARM_COMPUTE_RETURN_ERROR_ON(bias->dimension(idx_width) != weights->dimension(idx_height));
55 ARM_COMPUTE_RETURN_ERROR_ON(hidden_state->dimension(idx_width) != weights->dimension(idx_height));
56 ARM_COMPUTE_RETURN_ERROR_ON(hidden_state->dimension(idx_height) != input->dimension(idx_height));
57 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), hidden_state->tensor_shape());
58
59 auto shape_info = TensorInfo(compute_rnn_shape(recurrent_weights, hidden_state->dimension(idx_height)), 1, input->data_type());
60
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010061 ARM_COMPUTE_RETURN_ON_ERROR(CLFullyConnectedLayer::validate(input, weights, bias, &shape_info));
Michalis Spyrou36a559e2018-03-20 10:30:58 +000062 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMM::validate(hidden_state, recurrent_weights, nullptr, &shape_info, 1.f, 0.f));
giuros01164a2722018-11-20 18:34:46 +000063 ARM_COMPUTE_RETURN_ON_ERROR(CLSaturatedArithmeticOperationKernel::validate(ArithmeticOperation::ADD, &shape_info, &shape_info, &shape_info, ConvertPolicy::SATURATE));
Michalis Spyrou36a559e2018-03-20 10:30:58 +000064 ARM_COMPUTE_RETURN_ON_ERROR(CLActivationLayerKernel::validate(&shape_info, &shape_info, info));
65
66 return Status{};
67}
68
69void CLRNNLayer::configure(const ICLTensor *input, const ICLTensor *weights, const ICLTensor *recurrent_weights, const ICLTensor *bias, ICLTensor *hidden_state, ICLTensor *output,
70 ActivationLayerInfo &info)
71{
Michalis Spyrou3672df32018-03-28 14:35:08 +010072 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weights, recurrent_weights, bias, hidden_state, output);
73 ARM_COMPUTE_ERROR_THROW_ON(CLRNNLayer::validate(input->info(), weights->info(), recurrent_weights->info(), bias->info(), hidden_state->info(), output->info(), info));
74
Michalis Spyrou36a559e2018-03-20 10:30:58 +000075 const int idx_height = get_data_layout_dimension_index(input->info()->data_layout(), DataLayoutDimension::HEIGHT);
76 TensorShape shape = compute_rnn_shape(recurrent_weights->info(), hidden_state->info()->dimension(idx_height));
77
Georgios Pinitas72219332018-06-05 14:56:06 +010078 _is_prepared = false;
79
Michalis Spyrou36a559e2018-03-20 10:30:58 +000080 _fully_connected_out.allocator()->init(TensorInfo(shape, 1, input->info()->data_type()));
81 _gemm_output.allocator()->init(TensorInfo(shape, 1, input->info()->data_type()));
82
83 // Manage intermediate buffers and configure
84 _memory_group.manage(&_fully_connected_out);
Georgios Pinitas7d66a8e2018-07-17 12:28:42 +010085 _fully_connected_kernel.configure(input, weights, bias, &_fully_connected_out);
Michalis Spyrou36a559e2018-03-20 10:30:58 +000086
87 _memory_group.manage(&_gemm_output);
88 _gemm_state_f.configure(hidden_state, recurrent_weights, nullptr, &_gemm_output, 1.f, 0.f);
89
90 _add_output.allocator()->init(TensorInfo(shape, 1, input->info()->data_type()));
91 _memory_group.manage(&_add_output);
92
giuros01164a2722018-11-20 18:34:46 +000093 _add_kernel.configure(ArithmeticOperation::ADD, &_fully_connected_out, &_gemm_output, &_add_output, ConvertPolicy::SATURATE);
Michalis Spyrou36a559e2018-03-20 10:30:58 +000094
95 _fully_connected_out.allocator()->allocate();
96 _gemm_output.allocator()->allocate();
97
98 _activation_kernel.configure(&_add_output, hidden_state, info);
99 _add_output.allocator()->allocate();
100
101 _copy_kernel.configure(hidden_state, output);
102}
103
104void CLRNNLayer::run()
105{
Georgios Pinitas72219332018-06-05 14:56:06 +0100106 prepare();
107
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000108 _memory_group.acquire();
Georgios Pinitas72219332018-06-05 14:56:06 +0100109
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000110 _fully_connected_kernel.run();
111 _gemm_state_f.run();
112 CLScheduler::get().enqueue(_add_kernel);
113 CLScheduler::get().enqueue(_activation_kernel);
114
115 // copy hidden out to output
116 CLScheduler::get().enqueue(_copy_kernel);
Georgios Pinitas72219332018-06-05 14:56:06 +0100117
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000118 _memory_group.release();
Georgios Pinitas72219332018-06-05 14:56:06 +0100119}
120
121void CLRNNLayer::prepare()
122{
123 if(!_is_prepared)
124 {
125 _fully_connected_kernel.prepare();
126 _gemm_state_f.prepare();
127
128 _is_prepared = true;
129 }
giuros01164a2722018-11-20 18:34:46 +0000130}