blob: 6be34ad1a4174ba2556a101e8ce8063effda0e87 [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"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033
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>
Michalis Spyrouebcebf12020-10-21 00:04:14 +010037NESoftmaxLayerGeneric<IS_LOG>::~NESoftmaxLayerGeneric() = default;
38
39template <bool IS_LOG>
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010040NESoftmaxLayerGeneric<IS_LOG>::NESoftmaxLayerGeneric(std::shared_ptr<IMemoryManager> memory_manager)
SiCong Li96209c72020-08-21 12:28:30 +010041 : _memory_group(std::move(memory_manager)), _permute_input(), _permute_output(), _max_kernel(), _softmax_kernel(), _fill_border_kernel(), _max(), _tmp(), _input_permuted(), _output_permuted(),
42 _needs_permute(false)
Manuel Bottini678d83a2019-01-07 16:05:36 +000043{
44}
45
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010046template <bool IS_LOG>
morgolock9c7fed82020-08-05 12:30:56 +010047void NESoftmaxLayerGeneric<IS_LOG>::configure(ITensor *input, ITensor *output, float beta, int32_t axis)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048{
Manuel Bottini678d83a2019-01-07 16:05:36 +000049 // Perform validation step
Michalis Spyrouafa5d812017-11-30 14:25:57 +000050 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
morgolock9c7fed82020-08-05 12:30:56 +010051 ARM_COMPUTE_ERROR_THROW_ON(NESoftmaxLayerGeneric::validate(input->info(), output->info(), beta, axis));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052
SiCong Li96209c72020-08-21 12:28:30 +010053 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 +010054
SiCong Li96209c72020-08-21 12:28:30 +010055 _needs_permute = actual_axis > 0;
Manuel Bottini678d83a2019-01-07 16:05:36 +000056
SiCong Li96209c72020-08-21 12:28:30 +010057 if(_needs_permute)
Manuel Bottini678d83a2019-01-07 16:05:36 +000058 {
SiCong Li96209c72020-08-21 12:28:30 +010059 // Add to the memory manager _input_permuted
60 _memory_group.manage(&_input_permuted);
Manuel Bottini678d83a2019-01-07 16:05:36 +000061
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010062 _permute_input.configure(input, &_input_permuted, softmax_helpers::get_permutation_vector_from_softmax_axis(actual_axis));
Manuel Bottini678d83a2019-01-07 16:05:36 +000063 }
64
SiCong Li96209c72020-08-21 12:28:30 +010065 // 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 +000066 // or it is the original input case (2D case)
SiCong Li96209c72020-08-21 12:28:30 +010067 ITensor *tmp_input = (_needs_permute ? &_input_permuted : input);
Manuel Bottini678d83a2019-01-07 16:05:36 +000068
69 // Create intermediate tensors shapes
SiCong Li96209c72020-08-21 12:28:30 +010070 const TensorInfo input_info = tmp_input->info()->clone()->reset_padding().set_is_resizable(true);
71 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 +000072 TensorInfo tensor_info_tmp(input_info.clone()->set_data_type(tmp_data_type));
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000073
74 // Init intermediate tensors
SiCong Li96209c72020-08-21 12:28:30 +010075 TensorShape max_sum_shape = tmp_input->info()->tensor_shape();
Manuel Bottini678d83a2019-01-07 16:05:36 +000076 max_sum_shape.set(0, 1);
77 _max.allocator()->init(input_info.clone()->set_tensor_shape(max_sum_shape));
78 _tmp.allocator()->init(tensor_info_tmp);
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +000079
80 // Manage intermediate buffers
81 _memory_group.manage(&_max);
82 _memory_group.manage(&_tmp);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083
Michalis Spyrouebcebf12020-10-21 00:04:14 +010084 // Configure kernels
Georgios Pinitas40f51a62020-11-21 03:04:18 +000085 _max_kernel = std::make_unique<NELogits1DMaxKernel>();
86 _softmax_kernel = std::make_unique<NELogits1DSoftmaxKernel<IS_LOG>>();
Michalis Spyrouebcebf12020-10-21 00:04:14 +010087 _max_kernel->configure(tmp_input, &_max);
SiCong Li96209c72020-08-21 12:28:30 +010088 if(_needs_permute)
Manuel Bottini678d83a2019-01-07 16:05:36 +000089 {
SiCong Li96209c72020-08-21 12:28:30 +010090 // Add to the memory manager _output_permuted
91 _memory_group.manage(&_output_permuted);
Manuel Bottini678d83a2019-01-07 16:05:36 +000092
SiCong Li96209c72020-08-21 12:28:30 +010093 // The normalization kernel stores the result in a permuted output tensor
Michalis Spyrouebcebf12020-10-21 00:04:14 +010094 _softmax_kernel->configure(tmp_input, &_max, &_output_permuted, beta, &_tmp);
SiCong Li96209c72020-08-21 12:28:30 +010095 _input_permuted.allocator()->allocate();
Manuel Bottini678d83a2019-01-07 16:05:36 +000096
SiCong Li96209c72020-08-21 12:28:30 +010097 // Re-permute the permuted output into the requested (4D) output
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010098 _permute_output.configure(&_output_permuted, output, softmax_helpers::get_permutation_vector_from_softmax_axis(actual_axis));
Manuel Bottini678d83a2019-01-07 16:05:36 +000099
SiCong Li96209c72020-08-21 12:28:30 +0100100 // Allocate the intermediate permuted tensors
101 _output_permuted.allocator()->allocate();
Manuel Bottini678d83a2019-01-07 16:05:36 +0000102 }
103 else
104 {
105 // Softmax 2D case
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000106 _fill_border_kernel = std::make_unique<NEFillBorderKernel>();
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100107 _fill_border_kernel->configure(tmp_input, _max_kernel->border_size(), BorderMode::REPLICATE);
108 _softmax_kernel->configure(tmp_input, &_max, output, beta, &_tmp);
Manuel Bottini678d83a2019-01-07 16:05:36 +0000109 }
110
111 // Allocate intermediate buffers
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112 _max.allocator()->allocate();
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000113 _tmp.allocator()->allocate();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100114}
115
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100116template <bool IS_LOG>
morgolock9c7fed82020-08-05 12:30:56 +0100117Status NESoftmaxLayerGeneric<IS_LOG>::validate(const ITensorInfo *input, const ITensorInfo *output, float beta, int32_t axis)
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000118{
119 // Perform validation step
120 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Manuel Bottini678d83a2019-01-07 16:05:36 +0000121 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->num_dimensions() > 4, "Only up to 4 dimensions are supported");
122 ARM_COMPUTE_UNUSED(beta);
morgolock9c7fed82020-08-05 12:30:56 +0100123 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 +0100124
Manuel Bottini678d83a2019-01-07 16:05:36 +0000125 // Create intermediate tensor info
126 DataType tmp_data_type = input->data_type();
127 const TensorInfo tensor_info_tmp(input->clone()->set_data_type(tmp_data_type).set_is_resizable(true));
128
129 TensorShape max_sum_shape = input->tensor_shape();
130 max_sum_shape.set(0, 1);
131 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));
132 const TensorInfo dont_care;
133
SiCong Li96209c72020-08-21 12:28:30 +0100134 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 +0000135
SiCong Li96209c72020-08-21 12:28:30 +0100136 const bool needs_permute = actual_axis > 0;
137
138 if(needs_permute)
Manuel Bottini678d83a2019-01-07 16:05:36 +0000139 {
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100140 const PermutationVector permutation_vector = softmax_helpers::get_permutation_vector_from_softmax_axis(actual_axis);
SiCong Li96209c72020-08-21 12:28:30 +0100141 const TensorShape permuted_shape = misc::shape_calculator::compute_permutation_output_shape(*input, permutation_vector);
142 TensorInfo input_permuted(input->clone()->set_tensor_shape(permuted_shape));
143 ARM_COMPUTE_RETURN_ON_ERROR(NEPermute::validate(input, &input_permuted, permutation_vector));
144 TensorInfo output_permuted(output->clone()->set_tensor_shape(permuted_shape));
145 ARM_COMPUTE_RETURN_ON_ERROR(NEPermute::validate(&output_permuted, output, permutation_vector));
Manuel Bottini678d83a2019-01-07 16:05:36 +0000146 }
Michalis Spyrouafa5d812017-11-30 14:25:57 +0000147
148 ARM_COMPUTE_RETURN_ON_ERROR(NELogits1DMaxKernel::validate(input, &tensor_info_max_sum));
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100149 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 +0000150
151 return Status{};
152}
153
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100154template <bool IS_LOG>
155void NESoftmaxLayerGeneric<IS_LOG>::run()
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100156{
Georgios Pinitasda953f22019-04-02 17:27:03 +0100157 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100158
SiCong Li96209c72020-08-21 12:28:30 +0100159 if(_needs_permute)
Manuel Bottini678d83a2019-01-07 16:05:36 +0000160 {
SiCong Li96209c72020-08-21 12:28:30 +0100161 _permute_input.run();
Manuel Bottini678d83a2019-01-07 16:05:36 +0000162 }
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100163 else
164 {
165 NEScheduler::get().schedule(_fill_border_kernel.get(), Window::DimY);
166 }
Manuel Bottini678d83a2019-01-07 16:05:36 +0000167
Michalis Spyrouebcebf12020-10-21 00:04:14 +0100168 NEScheduler::get().schedule(_max_kernel.get(), Window::DimY);
169 NEScheduler::get().schedule(_softmax_kernel.get(), Window::DimY);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100170
SiCong Li96209c72020-08-21 12:28:30 +0100171 if(_needs_permute)
Manuel Bottini678d83a2019-01-07 16:05:36 +0000172 {
SiCong Li96209c72020-08-21 12:28:30 +0100173 _permute_output.run();
Manuel Bottini678d83a2019-01-07 16:05:36 +0000174 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100175}
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100176
177template class NESoftmaxLayerGeneric<false>;
178template class NESoftmaxLayerGeneric<true>;
179
Michalis Spyroubcd23522020-05-21 15:02:36 +0100180} // namespace arm_compute