blob: f530a87d052924b13450c4277488c97ee1392e95 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Manuel Bottini678d83a2019-01-07 16:05:36 +00002 * Copyright (c) 2017-2019 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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#include "arm_compute/runtime/NEON/functions/NESoftmaxLayer.h"
25
26#include "arm_compute/core/Helpers.h"
27#include "arm_compute/core/NEON/kernels/NESoftmaxLayerKernel.h"
Manuel Bottini678d83a2019-01-07 16:05:36 +000028#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/runtime/NEON/NEScheduler.h"
Manuel Bottini678d83a2019-01-07 16:05:36 +000030#include "utils/TypePrinter.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031
32#include <cfloat>
33
Manuel Bottini678d83a2019-01-07 16:05:36 +000034namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035{
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010036template <bool IS_LOG>
37NESoftmaxLayerGeneric<IS_LOG>::NESoftmaxLayerGeneric(std::shared_ptr<IMemoryManager> memory_manager)
Manuel Bottini678d83a2019-01-07 16:05:36 +000038 : _memory_group(std::move(memory_manager)), _max_kernel(), _softmax_kernel(), _flat_or_reshape_kernel_ptr(nullptr), _fill_border_kernel(), _reshape_kernel(), _max(), _tmp(), _input_flattened(),
39 _output_flattened(), _needs_flattening(false)
40{
41}
42
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010043template <bool IS_LOG>
44void NESoftmaxLayerGeneric<IS_LOG>::configure_reshape_input_kernel(const ITensor *input, const ITensor *output, size_t axis)
Manuel Bottini678d83a2019-01-07 16:05:36 +000045{
46 // Flatten the input
47 const TensorShape shape_flatten = misc::shape_calculator::compute_softmax_shape(input->info(), axis);
48
49 // Initialize the flat input
50 _input_flattened.allocator()->init(input->info()->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(shape_flatten));
51
52 // If we need to flatten the input, we can use NEFlattenKernel or NEReshapeKernel
53 // If flattening on the third axes, we use NEFlattenKernel.
54 // In all other cases we have to use NEReshapeKernel
55 if(axis != 3)
56 {
57 auto reshape_kernel_ptr = support::cpp14::make_unique<NEReshapeLayerKernel>();
58 reshape_kernel_ptr->configure(input, &_input_flattened);
59 _flat_or_reshape_kernel_ptr = std::move(reshape_kernel_ptr);
60 }
61 else
62 {
63 auto flatten_kernel_ptr = support::cpp14::make_unique<NEFlattenLayerKernel>();
64 flatten_kernel_ptr->configure(input, &_input_flattened);
65 _flat_or_reshape_kernel_ptr = std::move(flatten_kernel_ptr);
66 }
67
68 // We need to init the output tensor here. Indeed, the reshape kernel expects
69 // both tensors to be already initialized
70 auto_init_if_empty(*output->info(), *input->info()->clone());
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071}
72
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010073template <bool IS_LOG>
74void NESoftmaxLayerGeneric<IS_LOG>::configure(ITensor *input, ITensor *output, float beta, size_t axis)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010075{
Manuel Bottini678d83a2019-01-07 16:05:36 +000076 // Perform validation step
Michalis Spyrouafa5d812017-11-30 14:25:57 +000077 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010078 ARM_COMPUTE_ERROR_THROW_ON(NESoftmaxLayerGeneric::validate(input->info(), output->info(), beta, axis));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079
Manuel Bottini678d83a2019-01-07 16:05:36 +000080 // We don't need flattening only in the case the input is 2D and axis is 1
81 _needs_flattening = axis != 1;
82
83 // If we are dealing with a 4D tensor, we will:
84 // - Flatten the input, so that we end up with a [width*height*depth] * batches 2D tensor
85 // - Execute all the pipeline (reduction + normalization) on the flattened tensor
86 // - Reshape the flattened output into the real output
87 if(_needs_flattening)
88 {
89 // Add to the memory manager _input_flattened
90 _memory_group.manage(&_input_flattened);
91
92 // Configure _flatten_kernel and _input_flattened
93 configure_reshape_input_kernel(input, output, axis);
94 }
95
96 // We want to deal with a 2D input. Either it is the flattened version of the original input (4D case)
97 // or it is the original input case (2D case)
98 ITensor *input_2D = (_needs_flattening ? &_input_flattened : input);
99
100 // Create intermediate tensors shapes
101 const TensorInfo input_info = input_2D->info()->clone()->reset_padding().set_is_resizable(true);
102 DataType tmp_data_type = is_data_type_quantized_asymmetric(input_2D->info()->data_type()) ? DataType::F32 : input_2D->info()->data_type();
103 TensorInfo tensor_info_tmp(input_info.clone()->set_data_type(tmp_data_type));
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000104
105 // Init intermediate tensors
Manuel Bottini678d83a2019-01-07 16:05:36 +0000106 TensorShape max_sum_shape = input_2D->info()->tensor_shape();
107 max_sum_shape.set(0, 1);
108 _max.allocator()->init(input_info.clone()->set_tensor_shape(max_sum_shape));
109 _tmp.allocator()->init(tensor_info_tmp);
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000110
111 // Manage intermediate buffers
112 _memory_group.manage(&_max);
113 _memory_group.manage(&_tmp);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100114
Manuel Bottini678d83a2019-01-07 16:05:36 +0000115 // Configure Kernels
116 _max_kernel.configure(input_2D, &_max);
117 if(_needs_flattening)
118 {
119 // Add to the memory manager _output_flattened
120 _memory_group.manage(&_output_flattened);
121
122 // The normalization kernel stores the result in a flat output tensor
123 _softmax_kernel.configure(input_2D, &_max, &_output_flattened, beta, &_tmp);
124 _input_flattened.allocator()->allocate();
125
126 // Reshape the flat output into the requested (4D) output
127 _reshape_kernel.configure(&_output_flattened, output);
128
129 // Allocate the intermediate flat tensors
130 _output_flattened.allocator()->allocate();
131 }
132 else
133 {
134 // Softmax 2D case
135 _fill_border_kernel.configure(input_2D, _max_kernel.border_size(), BorderMode::REPLICATE);
136 _softmax_kernel.configure(input_2D, &_max, output, beta, &_tmp);
137 }
138
139 // Allocate intermediate buffers
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100140 _max.allocator()->allocate();
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000141 _tmp.allocator()->allocate();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100142}
143
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100144template <bool IS_LOG>
145Status NESoftmaxLayerGeneric<IS_LOG>::validate(const ITensorInfo *input, const ITensorInfo *output, float beta, size_t axis)
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000146{
147 // Perform validation step
148 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Manuel Bottini678d83a2019-01-07 16:05:36 +0000149 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->num_dimensions() > 4, "Only up to 4 dimensions are supported");
150 ARM_COMPUTE_UNUSED(beta);
151 ARM_COMPUTE_RETURN_ERROR_ON(axis < 1 || input->num_dimensions() < axis);
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000152
Manuel Bottini678d83a2019-01-07 16:05:36 +0000153 // Create intermediate tensor info
154 DataType tmp_data_type = input->data_type();
155 const TensorInfo tensor_info_tmp(input->clone()->set_data_type(tmp_data_type).set_is_resizable(true));
156
157 TensorShape max_sum_shape = input->tensor_shape();
158 max_sum_shape.set(0, 1);
159 const TensorInfo tensor_info_max_sum(input->clone()->set_tensor_shape(max_sum_shape).set_data_type(tmp_data_type).set_quantization_info(input->quantization_info()).set_is_resizable(true));
160 const TensorInfo dont_care;
161
162 const bool needs_flattening = (axis != 1);
163
164 if(needs_flattening)
165 {
166 const TensorShape shape_flatten = misc::shape_calculator::compute_softmax_shape(input, axis);
167 TensorInfo tensor_info_flat(input->clone()->set_tensor_shape(shape_flatten).set_is_resizable(true));
168
169 if(axis != 3)
170 {
171 ARM_COMPUTE_RETURN_ON_ERROR(NEReshapeLayerKernel::validate(input, &tensor_info_flat));
172 }
173 else
174 {
175 ARM_COMPUTE_RETURN_ON_ERROR(NEFlattenLayerKernel::validate(input, &tensor_info_flat));
176 }
177 }
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000178
179 ARM_COMPUTE_RETURN_ON_ERROR(NELogits1DMaxKernel::validate(input, &tensor_info_max_sum));
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100180 ARM_COMPUTE_RETURN_ON_ERROR(NELogits1DSoftmaxKernel<IS_LOG>::validate(&tensor_info_tmp, &tensor_info_max_sum, output, beta, &dont_care));
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000181
182 return Status{};
183}
184
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100185template <bool IS_LOG>
186void NESoftmaxLayerGeneric<IS_LOG>::run()
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100187{
Georgios Pinitasda953f22019-04-02 17:27:03 +0100188 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100189
Manuel Bottini678d83a2019-01-07 16:05:36 +0000190 if(_needs_flattening)
191 {
192 NEScheduler::get().schedule(_flat_or_reshape_kernel_ptr.get(), Window::DimY);
193 }
194
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100195 NEScheduler::get().schedule(&_fill_border_kernel, Window::DimY);
196 NEScheduler::get().schedule(&_max_kernel, Window::DimY);
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000197 NEScheduler::get().schedule(&_softmax_kernel, Window::DimY);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100198
Manuel Bottini678d83a2019-01-07 16:05:36 +0000199 if(_needs_flattening)
200 {
201 NEScheduler::get().schedule(&_reshape_kernel, Window::DimY);
202 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100203}
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100204
205template class NESoftmaxLayerGeneric<false>;
206template class NESoftmaxLayerGeneric<true>;
207
Manuel Bottini678d83a2019-01-07 16:05:36 +0000208} // namespace arm_compute