blob: e79ab0ee2d4a7359b3bfeabf8adf379eb2b40d5c [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"
Manuel Bottini678d83a2019-01-07 16:05:36 +000027#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#include "arm_compute/runtime/NEON/NEScheduler.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010029#include "src/core/NEON/kernels/NEFillBorderKernel.h"
30#include "src/core/NEON/kernels/NESoftmaxLayerKernel.h"
31#include "src/core/NEON/kernels/NESoftmaxLayerKernel.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010032#include "src/core/helpers/SoftmaxHelpers.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010033#include "support/MemorySupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034
Manuel Bottini678d83a2019-01-07 16:05:36 +000035namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036{
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010037template <bool IS_LOG>
Michalis Spyrouebcebf12020-10-21 00:04:14 +010038NESoftmaxLayerGeneric<IS_LOG>::~NESoftmaxLayerGeneric() = default;
39
40template <bool IS_LOG>
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010041NESoftmaxLayerGeneric<IS_LOG>::NESoftmaxLayerGeneric(std::shared_ptr<IMemoryManager> memory_manager)
SiCong Li96209c72020-08-21 12:28:30 +010042 : _memory_group(std::move(memory_manager)), _permute_input(), _permute_output(), _max_kernel(), _softmax_kernel(), _fill_border_kernel(), _max(), _tmp(), _input_permuted(), _output_permuted(),
43 _needs_permute(false)
Manuel Bottini678d83a2019-01-07 16:05:36 +000044{
45}
46
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010047template <bool IS_LOG>
morgolock9c7fed82020-08-05 12:30:56 +010048void NESoftmaxLayerGeneric<IS_LOG>::configure(ITensor *input, ITensor *output, float beta, int32_t axis)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049{
Manuel Bottini678d83a2019-01-07 16:05:36 +000050 // Perform validation step
Michalis Spyrouafa5d812017-11-30 14:25:57 +000051 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
morgolock9c7fed82020-08-05 12:30:56 +010052 ARM_COMPUTE_ERROR_THROW_ON(NESoftmaxLayerGeneric::validate(input->info(), output->info(), beta, axis));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053
SiCong Li96209c72020-08-21 12:28:30 +010054 const unsigned int actual_axis = static_cast<unsigned int>(wrap_around(axis, static_cast<int32_t>(input->info()->num_dimensions())));
Sheri Zhang1f567af2020-05-05 11:47:36 +010055
SiCong Li96209c72020-08-21 12:28:30 +010056 _needs_permute = actual_axis > 0;
Manuel Bottini678d83a2019-01-07 16:05:36 +000057
SiCong Li96209c72020-08-21 12:28:30 +010058 if(_needs_permute)
Manuel Bottini678d83a2019-01-07 16:05:36 +000059 {
SiCong Li96209c72020-08-21 12:28:30 +010060 // Add to the memory manager _input_permuted
61 _memory_group.manage(&_input_permuted);
Manuel Bottini678d83a2019-01-07 16:05:36 +000062
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010063 _permute_input.configure(input, &_input_permuted, softmax_helpers::get_permutation_vector_from_softmax_axis(actual_axis));
Manuel Bottini678d83a2019-01-07 16:05:36 +000064 }
65
SiCong Li96209c72020-08-21 12:28:30 +010066 // We want to deal with a 2D input. Either it is the permuted version of the original input (4D case)
Manuel Bottini678d83a2019-01-07 16:05:36 +000067 // or it is the original input case (2D case)
SiCong Li96209c72020-08-21 12:28:30 +010068 ITensor *tmp_input = (_needs_permute ? &_input_permuted : input);
Manuel Bottini678d83a2019-01-07 16:05:36 +000069
70 // Create intermediate tensors shapes
SiCong Li96209c72020-08-21 12:28:30 +010071 const TensorInfo input_info = tmp_input->info()->clone()->reset_padding().set_is_resizable(true);
72 DataType tmp_data_type = is_data_type_quantized_asymmetric(tmp_input->info()->data_type()) ? DataType::F32 : tmp_input->info()->data_type();
Manuel Bottini678d83a2019-01-07 16:05:36 +000073 TensorInfo tensor_info_tmp(input_info.clone()->set_data_type(tmp_data_type));
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000074
75 // Init intermediate tensors
SiCong Li96209c72020-08-21 12:28:30 +010076 TensorShape max_sum_shape = tmp_input->info()->tensor_shape();
Manuel Bottini678d83a2019-01-07 16:05:36 +000077 max_sum_shape.set(0, 1);
78 _max.allocator()->init(input_info.clone()->set_tensor_shape(max_sum_shape));
79 _tmp.allocator()->init(tensor_info_tmp);
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000080
81 // Manage intermediate buffers
82 _memory_group.manage(&_max);
83 _memory_group.manage(&_tmp);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010084
Michalis Spyrouebcebf12020-10-21 00:04:14 +010085 // Configure kernels
86 _max_kernel = arm_compute::support::cpp14::make_unique<NELogits1DMaxKernel>();
87 _softmax_kernel = arm_compute::support::cpp14::make_unique<NELogits1DSoftmaxKernel<IS_LOG>>();
88 _max_kernel->configure(tmp_input, &_max);
SiCong Li96209c72020-08-21 12:28:30 +010089 if(_needs_permute)
Manuel Bottini678d83a2019-01-07 16:05:36 +000090 {
SiCong Li96209c72020-08-21 12:28:30 +010091 // Add to the memory manager _output_permuted
92 _memory_group.manage(&_output_permuted);
Manuel Bottini678d83a2019-01-07 16:05:36 +000093
SiCong Li96209c72020-08-21 12:28:30 +010094 // The normalization kernel stores the result in a permuted output tensor
Michalis Spyrouebcebf12020-10-21 00:04:14 +010095 _softmax_kernel->configure(tmp_input, &_max, &_output_permuted, beta, &_tmp);
SiCong Li96209c72020-08-21 12:28:30 +010096 _input_permuted.allocator()->allocate();
Manuel Bottini678d83a2019-01-07 16:05:36 +000097
SiCong Li96209c72020-08-21 12:28:30 +010098 // Re-permute the permuted output into the requested (4D) output
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010099 _permute_output.configure(&_output_permuted, output, softmax_helpers::get_permutation_vector_from_softmax_axis(actual_axis));
Manuel Bottini678d83a2019-01-07 16:05:36 +0000100
SiCong Li96209c72020-08-21 12:28:30 +0100101 // Allocate the intermediate permuted tensors
102 _output_permuted.allocator()->allocate();
Manuel Bottini678d83a2019-01-07 16:05:36 +0000103 }
104 else
105 {
106 // Softmax 2D case
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100107 _fill_border_kernel = arm_compute::support::cpp14::make_unique<NEFillBorderKernel>();
108 _fill_border_kernel->configure(tmp_input, _max_kernel->border_size(), BorderMode::REPLICATE);
109 _softmax_kernel->configure(tmp_input, &_max, output, beta, &_tmp);
Manuel Bottini678d83a2019-01-07 16:05:36 +0000110 }
111
112 // Allocate intermediate buffers
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113 _max.allocator()->allocate();
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000114 _tmp.allocator()->allocate();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115}
116
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100117template <bool IS_LOG>
morgolock9c7fed82020-08-05 12:30:56 +0100118Status NESoftmaxLayerGeneric<IS_LOG>::validate(const ITensorInfo *input, const ITensorInfo *output, float beta, int32_t axis)
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000119{
120 // Perform validation step
121 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Manuel Bottini678d83a2019-01-07 16:05:36 +0000122 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->num_dimensions() > 4, "Only up to 4 dimensions are supported");
123 ARM_COMPUTE_UNUSED(beta);
morgolock9c7fed82020-08-05 12:30:56 +0100124 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 +0100125
Manuel Bottini678d83a2019-01-07 16:05:36 +0000126 // Create intermediate tensor info
127 DataType tmp_data_type = input->data_type();
128 const TensorInfo tensor_info_tmp(input->clone()->set_data_type(tmp_data_type).set_is_resizable(true));
129
130 TensorShape max_sum_shape = input->tensor_shape();
131 max_sum_shape.set(0, 1);
132 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));
133 const TensorInfo dont_care;
134
SiCong Li96209c72020-08-21 12:28:30 +0100135 const unsigned int actual_axis = static_cast<unsigned int>(wrap_around(axis, static_cast<int32_t>(input->num_dimensions())));
Manuel Bottini678d83a2019-01-07 16:05:36 +0000136
SiCong Li96209c72020-08-21 12:28:30 +0100137 const bool needs_permute = actual_axis > 0;
138
139 if(needs_permute)
Manuel Bottini678d83a2019-01-07 16:05:36 +0000140 {
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100141 const PermutationVector permutation_vector = softmax_helpers::get_permutation_vector_from_softmax_axis(actual_axis);
SiCong Li96209c72020-08-21 12:28:30 +0100142 const TensorShape permuted_shape = misc::shape_calculator::compute_permutation_output_shape(*input, permutation_vector);
143 TensorInfo input_permuted(input->clone()->set_tensor_shape(permuted_shape));
144 ARM_COMPUTE_RETURN_ON_ERROR(NEPermute::validate(input, &input_permuted, permutation_vector));
145 TensorInfo output_permuted(output->clone()->set_tensor_shape(permuted_shape));
146 ARM_COMPUTE_RETURN_ON_ERROR(NEPermute::validate(&output_permuted, output, permutation_vector));
Manuel Bottini678d83a2019-01-07 16:05:36 +0000147 }
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000148
149 ARM_COMPUTE_RETURN_ON_ERROR(NELogits1DMaxKernel::validate(input, &tensor_info_max_sum));
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100150 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 +0000151
152 return Status{};
153}
154
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100155template <bool IS_LOG>
156void NESoftmaxLayerGeneric<IS_LOG>::run()
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100157{
Georgios Pinitasda953f22019-04-02 17:27:03 +0100158 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100159
SiCong Li96209c72020-08-21 12:28:30 +0100160 if(_needs_permute)
Manuel Bottini678d83a2019-01-07 16:05:36 +0000161 {
SiCong Li96209c72020-08-21 12:28:30 +0100162 _permute_input.run();
Manuel Bottini678d83a2019-01-07 16:05:36 +0000163 }
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100164 else
165 {
166 NEScheduler::get().schedule(_fill_border_kernel.get(), Window::DimY);
167 }
Manuel Bottini678d83a2019-01-07 16:05:36 +0000168
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100169 NEScheduler::get().schedule(_max_kernel.get(), Window::DimY);
170 NEScheduler::get().schedule(_softmax_kernel.get(), Window::DimY);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100171
SiCong Li96209c72020-08-21 12:28:30 +0100172 if(_needs_permute)
Manuel Bottini678d83a2019-01-07 16:05:36 +0000173 {
SiCong Li96209c72020-08-21 12:28:30 +0100174 _permute_output.run();
Manuel Bottini678d83a2019-01-07 16:05:36 +0000175 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100176}
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100177
178template class NESoftmaxLayerGeneric<false>;
179template class NESoftmaxLayerGeneric<true>;
180
Michalis Spyroubcd23522020-05-21 15:02:36 +0100181} // namespace arm_compute