blob: f7b2935622abbfd277743bcb7dc78fab80c4b091 [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/CL/functions/CLSoftmaxLayer.h"
25
Chunosovd6afedc2017-11-06 22:09:45 +070026#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/ICLKernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#include "arm_compute/core/CL/kernels/CLSoftmaxLayerKernel.h"
29#include "arm_compute/core/Helpers.h"
Chunosovd6afedc2017-11-06 22:09:45 +070030#include "arm_compute/core/Types.h"
31#include "arm_compute/core/Utils.h"
Giuseppe Rossini87e896a2018-08-24 10:24:12 +010032#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010033#include "arm_compute/runtime/CL/CLScheduler.h"
34
Giuseppe Rossini87e896a2018-08-24 10:24:12 +010035namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036{
Sang-Hoon Park62eeb532019-10-29 13:13:19 +000037template <bool IS_LOG>
38CLSoftmaxLayerGeneric<IS_LOG>::CLSoftmaxLayerGeneric(std::shared_ptr<IMemoryManager> memory_manager)
Michalis Spyrou2aad21a2020-07-02 12:43:53 +010039 : _memory_group(std::move(memory_manager)), _max_shift_exp_sum_kernel(), _norm_kernel(), _flatten_ptr(), _reshape(), _max(), _sum(), _tmp(), _input_flattened(), _output_flattened(),
Giuseppe Rossini87e896a2018-08-24 10:24:12 +010040 _needs_flattening(false)
41{
42}
43
Sang-Hoon Park62eeb532019-10-29 13:13:19 +000044template <bool IS_LOG>
SiCong Lid004a7a2020-05-28 15:26:41 +010045void CLSoftmaxLayerGeneric<IS_LOG>::configure_reshape_input_kernel(const ICLTensor *input, const ICLTensor *output, size_t first_n_reduce_axes)
Giuseppe Rossini87e896a2018-08-24 10:24:12 +010046{
SiCong Lid004a7a2020-05-28 15:26:41 +010047 configure_reshape_input_kernel(CLKernelLibrary::get().get_compile_context(), input, output, first_n_reduce_axes);
Manuel Bottini2b84be52020-04-08 10:15:51 +010048}
49
50template <bool IS_LOG>
SiCong Lid004a7a2020-05-28 15:26:41 +010051void CLSoftmaxLayerGeneric<IS_LOG>::configure_reshape_input_kernel(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *output, size_t first_n_reduce_axes)
Manuel Bottini2b84be52020-04-08 10:15:51 +010052{
Giuseppe Rossini87e896a2018-08-24 10:24:12 +010053 // Flatten the input
SiCong Lid004a7a2020-05-28 15:26:41 +010054 const TensorShape shape_flatten = misc::shape_calculator::compute_softmax_shape(input->info(), first_n_reduce_axes);
Giuseppe Rossini87e896a2018-08-24 10:24:12 +010055
56 // Initialize the flat input
giuros01efbf6c82018-09-03 09:53:53 +010057 _input_flattened.allocator()->init(input->info()->clone()->set_is_resizable(true).reset_padding().set_tensor_shape(shape_flatten));
Giuseppe Rossini87e896a2018-08-24 10:24:12 +010058
giuros01efbf6c82018-09-03 09:53:53 +010059 // If we need to flatten the input, we can use CLFlattenKernel or CLReshapeKernel
SiCong Lid004a7a2020-05-28 15:26:41 +010060 // If the number of reduced axes is 3 (max dimension), which means collapsing all axes except the batch axis, we use CLFlattenKernel.
giuros01efbf6c82018-09-03 09:53:53 +010061 // In all other cases we have to use CLReshapeKernel
SiCong Lid004a7a2020-05-28 15:26:41 +010062 // Note that the "other cases" include both:
63 // 1. first_n_reduce_axes < 3: Reduce the first 1 (no need to reduce) or 2 dimensions (inclusive)
64 // 2. first_n_reduce_axes == 4: Reduce all 4 dimensions. This can only be handled by CLReshapeKernel instead of CLFlattenKernel.
65 if(first_n_reduce_axes == 3)
giuros01efbf6c82018-09-03 09:53:53 +010066 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +010067 auto flatten = support::cpp14::make_unique<CLFlattenLayer>();
68 flatten->configure(compile_context, input, &_input_flattened);
69 _flatten_ptr = std::move(flatten);
giuros01efbf6c82018-09-03 09:53:53 +010070 }
SiCong Lid004a7a2020-05-28 15:26:41 +010071 else
72 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +010073 auto reshape_ptr = support::cpp14::make_unique<CLReshapeLayer>();
74 reshape_ptr->configure(compile_context, input, &_input_flattened);
75 _flatten_ptr = std::move(reshape_ptr);
SiCong Lid004a7a2020-05-28 15:26:41 +010076 }
Giuseppe Rossini87e896a2018-08-24 10:24:12 +010077
78 // We need to init the output tensor here. Indeed, the reshape kernel expects
79 // both tensors to be already initialized
80 auto_init_if_empty(*output->info(), *input->info()->clone());
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081}
82
Sang-Hoon Park62eeb532019-10-29 13:13:19 +000083template <bool IS_LOG>
morgolock9c7fed82020-08-05 12:30:56 +010084void CLSoftmaxLayerGeneric<IS_LOG>::configure(const ICLTensor *input, ICLTensor *output, float beta, size_t axis)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010085{
morgolock9c7fed82020-08-05 12:30:56 +010086 configure(CLKernelLibrary::get().get_compile_context(), input, output, beta, axis);
Manuel Bottini2b84be52020-04-08 10:15:51 +010087}
88
89template <bool IS_LOG>
morgolock9c7fed82020-08-05 12:30:56 +010090void CLSoftmaxLayerGeneric<IS_LOG>::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, float beta, size_t axis)
Manuel Bottini2b84be52020-04-08 10:15:51 +010091{
Georgios Pinitasee8be2d2017-11-22 12:53:45 +000092 // Perform validation step
93 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
morgolock9c7fed82020-08-05 12:30:56 +010094 ARM_COMPUTE_ERROR_THROW_ON(CLSoftmaxLayerGeneric<IS_LOG>::validate(input->info(), output->info(), beta, axis));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010095
SiCong Lid004a7a2020-05-28 15:26:41 +010096 // Convert reduce-before axis (inclusive) to first n axes to reduce
morgolock9c7fed82020-08-05 12:30:56 +010097 size_t first_n_reduce_axes = dim_index_2_num_dims(axis, input->info()->num_dimensions());
SiCong Lid004a7a2020-05-28 15:26:41 +010098
99 // We only need flattening when the number of axes to reduce is greater than 1
100 _needs_flattening = first_n_reduce_axes > 1;
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100101
102 // If we are dealing with a 4D tensor, we will:
103 // - Flatten the input, so that we end up with a [width*height*depth] * batches 2D tensor
104 // - Execute all the pipeline (reduction + normalization) on the flattened tensor
105 // - Reshape the flattened output into the real output
106 if(_needs_flattening)
107 {
giuros01efbf6c82018-09-03 09:53:53 +0100108 // Add to the memory manager _input_flattened
109 _memory_group.manage(&_input_flattened);
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100110
SiCong Lid004a7a2020-05-28 15:26:41 +0100111 // Cofigure _flatten_kernel and _input_flattened
112 configure_reshape_input_kernel(input, output, first_n_reduce_axes);
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100113 }
114
115 // We want to deal with a 2D input. Either it is the flattened version of the original input (4D case)
116 // or it is the original input case (2D case)
giuros01efbf6c82018-09-03 09:53:53 +0100117 const ICLTensor *input_2D = (_needs_flattening ? &_input_flattened : input);
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100118
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100119 // Create intermediate tensors shapes
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100120 TensorInfo input_info = input_2D->info()->clone()->reset_padding().set_is_resizable(true);
121 DataType tmp_data_type = is_data_type_quantized_asymmetric(input_2D->info()->data_type()) ? DataType::S32 : input_2D->info()->data_type();
122 TensorInfo tensor_info_tmp(input_info.clone()->set_data_type(tmp_data_type));
Chunosovf450caa2017-11-08 16:09:35 +0700123 _tmp.allocator()->init(tensor_info_tmp);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100124
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100125 TensorShape max_sum_shape = input_2D->info()->tensor_shape();
Chunosovf450caa2017-11-08 16:09:35 +0700126 max_sum_shape.set(0, 1);
Georgios Pinitasee8be2d2017-11-22 12:53:45 +0000127 _max.allocator()->init(input_info.clone()->set_tensor_shape(max_sum_shape));
128 _sum.allocator()->init(input_info.clone()->set_tensor_shape(max_sum_shape).set_data_type(tmp_data_type));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100129
Chunosovd6afedc2017-11-06 22:09:45 +0700130 // Set GPU target to kernels
131 _max_shift_exp_sum_kernel.set_target(CLScheduler::get().target());
132
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100133 // Manage intermediate buffers
134 _memory_group.manage(&_tmp);
135 _memory_group.manage(&_max);
136 _memory_group.manage(&_sum);
137
Sang-Hoon Park62eeb532019-10-29 13:13:19 +0000138 SoftmaxKernelInfo softmax_info;
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000139 softmax_info.beta = beta;
140 softmax_info.is_log = IS_LOG;
141 softmax_info.input_data_type = input_2D->info()->data_type();
Sang-Hoon Park62eeb532019-10-29 13:13:19 +0000142
Chunosovd6afedc2017-11-06 22:09:45 +0700143 // Configure kernels
Manuel Bottini2b84be52020-04-08 10:15:51 +0100144 _max_shift_exp_sum_kernel.configure(compile_context, input_2D, &_max, &_tmp, &_sum, softmax_info);
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100145
146 if(_needs_flattening)
147 {
giuros01efbf6c82018-09-03 09:53:53 +0100148 // Add to the memory manager _output_flattened
149 _memory_group.manage(&_output_flattened);
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100150
151 // The normalization kernel stores the result in a flat output tensor
Manuel Bottini2b84be52020-04-08 10:15:51 +0100152 _norm_kernel.configure(compile_context, &_tmp, &_sum, &_output_flattened, softmax_info);
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100153
154 // Reshape the flat output into a the requested (4D) output
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100155 _reshape.configure(compile_context, &_output_flattened, output);
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100156
157 // Allocate the intermediate flat tensors
giuros01efbf6c82018-09-03 09:53:53 +0100158 _input_flattened.allocator()->allocate();
159 _output_flattened.allocator()->allocate();
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100160 }
161 else
162 {
163 // Softmax 2D case
Manuel Bottini2b84be52020-04-08 10:15:51 +0100164 _norm_kernel.configure(compile_context, &_tmp, &_sum, output, softmax_info);
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100165 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100166
167 // Allocate intermediate buffers
168 _tmp.allocator()->allocate();
169 _max.allocator()->allocate();
170 _sum.allocator()->allocate();
171}
172
Sang-Hoon Park62eeb532019-10-29 13:13:19 +0000173template <bool IS_LOG>
morgolock9c7fed82020-08-05 12:30:56 +0100174Status CLSoftmaxLayerGeneric<IS_LOG>::validate(const ITensorInfo *input, const ITensorInfo *output, float beta, size_t axis)
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000175{
Georgios Pinitasee8be2d2017-11-22 12:53:45 +0000176 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100177 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->num_dimensions() > 4, "Only up to 4 dimensions are supported");
morgolock9c7fed82020-08-05 12:30:56 +0100178 ARM_COMPUTE_RETURN_ERROR_ON_MSG(axis != 0, "Only axis 0 supported in tensors");
giuros01efbf6c82018-09-03 09:53:53 +0100179 ARM_COMPUTE_UNUSED(beta);
morgolock9c7fed82020-08-05 12:30:56 +0100180 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() <= axis);
SiCong Lid004a7a2020-05-28 15:26:41 +0100181
182 // Convert reduce-before axis (inclusive) to first n axes to reduce
morgolock9c7fed82020-08-05 12:30:56 +0100183 size_t first_n_reduce_axes = dim_index_2_num_dims(axis, input->num_dimensions());
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000184
185 // Create intermediate tensor info
186 DataType tmp_data_type = is_data_type_quantized_asymmetric(input->data_type()) ? DataType::S32 : input->data_type();
Michele Di Giorgio5cb37732018-06-08 18:07:08 +0100187 TensorInfo tensor_info_tmp(input->clone()->set_data_type(tmp_data_type).set_is_resizable(true));
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000188
189 TensorShape max_sum_shape = input->tensor_shape();
190 max_sum_shape.set(0, 1);
Michele Di Giorgio5cb37732018-06-08 18:07:08 +0100191 TensorInfo tensor_info_max(input->clone()->set_tensor_shape(max_sum_shape).set_is_resizable(true));
192 TensorInfo tensor_info_sum(input->clone()->set_tensor_shape(max_sum_shape).set_data_type(tmp_data_type).set_quantization_info(QuantizationInfo()).set_is_resizable(true));
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000193
SiCong Lid004a7a2020-05-28 15:26:41 +0100194 const bool needs_flattening = (first_n_reduce_axes > 1);
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100195
giuros01efbf6c82018-09-03 09:53:53 +0100196 if(needs_flattening)
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100197 {
SiCong Lid004a7a2020-05-28 15:26:41 +0100198 const TensorShape shape_flatten = misc::shape_calculator::compute_softmax_shape(input, first_n_reduce_axes);
giuros01efbf6c82018-09-03 09:53:53 +0100199 TensorInfo tensor_info_flat(input->clone()->set_tensor_shape(shape_flatten).set_is_resizable(true));
200
SiCong Lid004a7a2020-05-28 15:26:41 +0100201 if(first_n_reduce_axes == 3)
giuros01efbf6c82018-09-03 09:53:53 +0100202 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100203 ARM_COMPUTE_RETURN_ON_ERROR(CLFlattenLayer::validate(input, &tensor_info_flat));
giuros01efbf6c82018-09-03 09:53:53 +0100204 }
205 else
206 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100207 ARM_COMPUTE_RETURN_ON_ERROR(CLReshapeLayer::validate(input, &tensor_info_flat));
giuros01efbf6c82018-09-03 09:53:53 +0100208 }
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100209 }
210
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000211 SoftmaxKernelInfo softmax_info;
212 softmax_info.beta = beta;
213 softmax_info.is_log = IS_LOG;
214 softmax_info.input_data_type = input->data_type();
215
Giorgio Arena4402cb92018-02-15 13:37:40 +0000216 ARM_COMPUTE_RETURN_ON_ERROR(CLLogits1DMaxShiftExpSumKernel::validate(input, &tensor_info_max, &tensor_info_tmp, &tensor_info_sum));
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000217 ARM_COMPUTE_RETURN_ON_ERROR(CLLogits1DNormKernel::validate(&tensor_info_tmp, &tensor_info_sum, output, softmax_info));
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000218
giuros01efbf6c82018-09-03 09:53:53 +0100219 if(needs_flattening)
220 {
221 const TensorShape shape_flatten = misc::shape_calculator::compute_softmax_shape(input);
222 TensorInfo tensor_info_flat(input->clone()->set_tensor_shape(shape_flatten).set_is_resizable(true));
223 }
224
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000225 return Status{};
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000226}
227
Sang-Hoon Park62eeb532019-10-29 13:13:19 +0000228template <bool IS_LOG>
Manuel Bottini2b84be52020-04-08 10:15:51 +0100229void CLSoftmaxLayerGeneric<IS_LOG>::run()
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100230{
Georgios Pinitasda953f22019-04-02 17:27:03 +0100231 MemoryGroupResourceScope scope_mg(_memory_group);
giuros01efbf6c82018-09-03 09:53:53 +0100232
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100233 if(_needs_flattening)
234 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100235 _flatten_ptr->run();
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100236 }
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100237
Giorgio Arena4402cb92018-02-15 13:37:40 +0000238 CLScheduler::get().enqueue(_max_shift_exp_sum_kernel, false);
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100239 CLScheduler::get().enqueue(_norm_kernel, !_needs_flattening);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100240
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100241 if(_needs_flattening)
242 {
Michalis Spyrou2aad21a2020-07-02 12:43:53 +0100243 _reshape.run();
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100244 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100245}
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100246
Sang-Hoon Park62eeb532019-10-29 13:13:19 +0000247template class CLSoftmaxLayerGeneric<false>;
248template class CLSoftmaxLayerGeneric<true>;
249
Giuseppe Rossini87e896a2018-08-24 10:24:12 +0100250} // namespace arm_compute