blob: 750992fca6b939b6da7612870567d2e8418a5648 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030
Manuel Bottini678d83a2019-01-07 16:05:36 +000031namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032{
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010033template <bool IS_LOG>
34NESoftmaxLayerGeneric<IS_LOG>::NESoftmaxLayerGeneric(std::shared_ptr<IMemoryManager> memory_manager)
Michalis Spyroubcd23522020-05-21 15:02:36 +010035 : _memory_group(std::move(memory_manager)), _max_kernel(), _softmax_kernel(), _flat_or_reshape_ptr(nullptr), _fill_border_kernel(), _reshape(), _max(), _tmp(), _input_flattened(), _output_flattened(),
36 _needs_flattening(false)
Manuel Bottini678d83a2019-01-07 16:05:36 +000037{
38}
39
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010040template <bool IS_LOG>
SiCong Lid004a7a2020-05-28 15:26:41 +010041void NESoftmaxLayerGeneric<IS_LOG>::configure_reshape_input_kernel(const ITensor *input, const ITensor *output, int32_t first_n_reduce_axes)
Manuel Bottini678d83a2019-01-07 16:05:36 +000042{
43 // Flatten the input
SiCong Lid004a7a2020-05-28 15:26:41 +010044 const TensorShape shape_flatten = misc::shape_calculator::compute_softmax_shape(input->info(), first_n_reduce_axes);
Manuel Bottini678d83a2019-01-07 16:05:36 +000045
46 // Initialize the flat input
47 _input_flattened.allocator()->init(input->info()->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(shape_flatten));
48
SiCong Lid004a7a2020-05-28 15:26:41 +010049 // Note that the "other cases" include both:
50 // 1. first_n_reduce_axes < 3: Reduce the first 1 (no need to reduce) or 2 dimensions (inclusive)
51 // 2. first_n_reduce_axes == 4: Reduce all 4 dimensions. This can only be handled by NEReshapeKernel instead of NEFlattenKernel.
52 if(first_n_reduce_axes == 3)
Manuel Bottini678d83a2019-01-07 16:05:36 +000053 {
Michalis Spyroubcd23522020-05-21 15:02:36 +010054 auto flatten_kernel_ptr = support::cpp14::make_unique<NEFlattenLayer>();
Manuel Bottini678d83a2019-01-07 16:05:36 +000055 flatten_kernel_ptr->configure(input, &_input_flattened);
Michalis Spyroubcd23522020-05-21 15:02:36 +010056 _flat_or_reshape_ptr = std::move(flatten_kernel_ptr);
Manuel Bottini678d83a2019-01-07 16:05:36 +000057 }
SiCong Lid004a7a2020-05-28 15:26:41 +010058 else
59 {
Michalis Spyroubcd23522020-05-21 15:02:36 +010060 auto reshape_kernel_ptr = support::cpp14::make_unique<NEReshapeLayer>();
SiCong Lid004a7a2020-05-28 15:26:41 +010061 reshape_kernel_ptr->configure(input, &_input_flattened);
Michalis Spyroubcd23522020-05-21 15:02:36 +010062 _flat_or_reshape_ptr = std::move(reshape_kernel_ptr);
SiCong Lid004a7a2020-05-28 15:26:41 +010063 }
Manuel Bottini678d83a2019-01-07 16:05:36 +000064
65 // We need to init the output tensor here. Indeed, the reshape kernel expects
66 // both tensors to be already initialized
67 auto_init_if_empty(*output->info(), *input->info()->clone());
Anthony Barbier6ff3b192017-09-04 18:44:23 +010068}
69
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010070template <bool IS_LOG>
morgolock9c7fed82020-08-05 12:30:56 +010071void NESoftmaxLayerGeneric<IS_LOG>::configure(ITensor *input, ITensor *output, float beta, int32_t axis)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010072{
Manuel Bottini678d83a2019-01-07 16:05:36 +000073 // Perform validation step
Michalis Spyrouafa5d812017-11-30 14:25:57 +000074 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
morgolock9c7fed82020-08-05 12:30:56 +010075 ARM_COMPUTE_ERROR_THROW_ON(NESoftmaxLayerGeneric::validate(input->info(), output->info(), beta, axis));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010076
SiCong Lid004a7a2020-05-28 15:26:41 +010077 // Convert reduce-before axis (inclusive) to first n axes to reduce
morgolock9c7fed82020-08-05 12:30:56 +010078 size_t first_n_reduce_axes = dim_index_2_num_dims(axis, static_cast<int32_t>(input->info()->num_dimensions()));
Sheri Zhang1f567af2020-05-05 11:47:36 +010079
SiCong Lid004a7a2020-05-28 15:26:41 +010080 // We only need flattening when the number of axes to reduce is greater than 1
81 _needs_flattening = first_n_reduce_axes > 1;
Manuel Bottini678d83a2019-01-07 16:05:36 +000082
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
SiCong Lid004a7a2020-05-28 15:26:41 +010093 configure_reshape_input_kernel(input, output, first_n_reduce_axes);
Manuel Bottini678d83a2019-01-07 16:05:36 +000094 }
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
Michalis Spyroubcd23522020-05-21 15:02:36 +0100127 _reshape.configure(&_output_flattened, output);
Manuel Bottini678d83a2019-01-07 16:05:36 +0000128
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>
morgolock9c7fed82020-08-05 12:30:56 +0100145Status NESoftmaxLayerGeneric<IS_LOG>::validate(const ITensorInfo *input, const ITensorInfo *output, float beta, int32_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);
morgolock9c7fed82020-08-05 12:30:56 +0100151 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis != 0, "Only axis 0 supported");
152 ARM_COMPUTE_RETURN_ERROR_ON(axis < static_cast<int32_t>(-input->num_dimensions()) || static_cast<int32_t>(input->num_dimensions()) <= axis);
Sheri Zhang1f567af2020-05-05 11:47:36 +0100153
SiCong Lid004a7a2020-05-28 15:26:41 +0100154 // Convert reduce-before axis (inclusive) to first n axes to reduce
morgolock9c7fed82020-08-05 12:30:56 +0100155 size_t first_n_reduce_axes = dim_index_2_num_dims(axis, static_cast<int32_t>(input->num_dimensions()));
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000156
Manuel Bottini678d83a2019-01-07 16:05:36 +0000157 // Create intermediate tensor info
158 DataType tmp_data_type = input->data_type();
159 const TensorInfo tensor_info_tmp(input->clone()->set_data_type(tmp_data_type).set_is_resizable(true));
160
161 TensorShape max_sum_shape = input->tensor_shape();
162 max_sum_shape.set(0, 1);
163 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));
164 const TensorInfo dont_care;
165
SiCong Lid004a7a2020-05-28 15:26:41 +0100166 const bool needs_flattening = (first_n_reduce_axes > 1);
Manuel Bottini678d83a2019-01-07 16:05:36 +0000167
168 if(needs_flattening)
169 {
SiCong Lid004a7a2020-05-28 15:26:41 +0100170 const TensorShape shape_flatten = misc::shape_calculator::compute_softmax_shape(input, first_n_reduce_axes);
Manuel Bottini678d83a2019-01-07 16:05:36 +0000171 TensorInfo tensor_info_flat(input->clone()->set_tensor_shape(shape_flatten).set_is_resizable(true));
172
SiCong Lid004a7a2020-05-28 15:26:41 +0100173 if(first_n_reduce_axes == 3)
Manuel Bottini678d83a2019-01-07 16:05:36 +0000174 {
Michalis Spyroubcd23522020-05-21 15:02:36 +0100175 ARM_COMPUTE_RETURN_ON_ERROR(NEFlattenLayer::validate(input, &tensor_info_flat));
Manuel Bottini678d83a2019-01-07 16:05:36 +0000176 }
177 else
178 {
Michalis Spyroubcd23522020-05-21 15:02:36 +0100179 ARM_COMPUTE_RETURN_ON_ERROR(NEReshapeLayer::validate(input, &tensor_info_flat));
Manuel Bottini678d83a2019-01-07 16:05:36 +0000180 }
181 }
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000182
183 ARM_COMPUTE_RETURN_ON_ERROR(NELogits1DMaxKernel::validate(input, &tensor_info_max_sum));
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100184 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 +0000185
186 return Status{};
187}
188
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100189template <bool IS_LOG>
190void NESoftmaxLayerGeneric<IS_LOG>::run()
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100191{
Georgios Pinitasda953f22019-04-02 17:27:03 +0100192 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100193
Manuel Bottini678d83a2019-01-07 16:05:36 +0000194 if(_needs_flattening)
195 {
Michalis Spyroubcd23522020-05-21 15:02:36 +0100196 _flat_or_reshape_ptr->run();
Manuel Bottini678d83a2019-01-07 16:05:36 +0000197 }
198
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100199 NEScheduler::get().schedule(&_fill_border_kernel, Window::DimY);
200 NEScheduler::get().schedule(&_max_kernel, Window::DimY);
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000201 NEScheduler::get().schedule(&_softmax_kernel, Window::DimY);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100202
Manuel Bottini678d83a2019-01-07 16:05:36 +0000203 if(_needs_flattening)
204 {
Michalis Spyroubcd23522020-05-21 15:02:36 +0100205 _reshape.run();
Manuel Bottini678d83a2019-01-07 16:05:36 +0000206 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100207}
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100208
209template class NESoftmaxLayerGeneric<false>;
210template class NESoftmaxLayerGeneric<true>;
211
Michalis Spyroubcd23522020-05-21 15:02:36 +0100212} // namespace arm_compute