blob: 59299fa4415c5e53859988fd680bb45c77fae958 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2017-2021, 2023 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 */
Georgios Pinitas7891a732021-08-20 21:39:25 +010024#include "src/gpu/cl/kernels/ClSoftmaxKernel.h"
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +000025#include "arm_compute/core/CL/ICLTensor.h"
26#include "arm_compute/core/Utils.h"
27#include "arm_compute/core/experimental/Types.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000028#include "arm_compute/core/utils/helpers/AdjustVecSize.h"
Chunosovf450caa2017-11-08 16:09:35 +070029#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000030#include "arm_compute/core/utils/StringUtils.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/CL/CLValidate.h"
32#include "src/core/helpers/AutoConfiguration.h"
33#include "src/core/helpers/WindowHelpers.h"
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +000034#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000035#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036
Giorgio Arena2d1a8352020-10-26 15:04:08 +000037namespace arm_compute
38{
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +000039namespace opencl
40{
41namespace kernels
42{
Chunosovf450caa2017-11-08 16:09:35 +070043namespace
44{
45/** Calculates softmax parameters from the quantized input scale and scaling factor for the exponent and places them as build options.
46 *
47 * Prepares these build options:
48 * -INPUT_BETA_MULTIPLIER, INPUT_BETA_LEFT_SHIFT - quantized representation of beta multiplier.
49 * -DIFF_MIN - threshold difference between maximum value of input data and current processed value,
50 * it defines whether the value will be taken into account or not.
51 *
52 * @param[in] build_opts Build options to extend
53 * @param[in] input_scale Input scaling factor
54 * @param[in] beta Exponent scaling factor beta
55 */
56CLBuildOptions prepare_quantized_softmax_build_options(float input_scale, float beta)
57{
58 // Number of integer bits in temporary fixed-point representation of current-to-max difference
59 static const int scaled_diff_int_bits = 5;
60 // Number of integer bits used in temporary fixed-point representation of exponent accumulator
61 static const int exp_accumulation_in_bits = 12;
62
63 const double beta_multiplier = std::min(
64 1.0 * beta * input_scale * (1 << (31 - scaled_diff_int_bits)),
Michalis Spyroua4f378d2019-04-26 14:54:54 +010065 (1LL << 31) - 1.0);
66 int input_beta_multiplier;
67 int input_beta_left_shift;
Chunosovf450caa2017-11-08 16:09:35 +070068 quantization::calculate_quantized_multiplier_greater_than_one(beta_multiplier, &input_beta_multiplier, &input_beta_left_shift);
69
Michalis Spyroua4f378d2019-04-26 14:54:54 +010070 const double max_input_rescaled = 1.0 * ((1 << scaled_diff_int_bits) - 1) * (1LL << (31 - scaled_diff_int_bits)) / (1LL << input_beta_left_shift);
Chunosovf450caa2017-11-08 16:09:35 +070071 const int diff_min = -1.f * std::floor(max_input_rescaled);
72
73 CLBuildOptions build_opts;
74 build_opts.add_option("-DSCALED_DIFF_INT_BITS=" + support::cpp11::to_string(scaled_diff_int_bits));
75 build_opts.add_option("-DEXP_ACCUMULATION_INT_BITS=" + support::cpp11::to_string(exp_accumulation_in_bits));
76 build_opts.add_option("-DINPUT_BETA_MULTIPLIER=" + support::cpp11::to_string(input_beta_multiplier));
77 build_opts.add_option("-DINPUT_BETA_LEFT_SHIFT=" + support::cpp11::to_string(input_beta_left_shift));
78 build_opts.add_option("-DDIFF_MIN=" + support::cpp11::to_string(diff_min));
79
80 return build_opts;
81}
Anthony Barbier6ff3b192017-09-04 18:44:23 +010082
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +000083Status validate_arguments_1DMaxShiftExpSum(const ITensorInfo &src, const ITensorInfo &max, const ITensorInfo &dst, const ITensorInfo &sum)
Georgios Pinitas30902ed2017-11-14 15:32:57 +000084{
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +000085 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(&src);
86 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&src, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED, DataType::F16, DataType::F32);
87 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&src, &max);
Georgios Pinitas30902ed2017-11-14 15:32:57 +000088
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +000089 const bool is_quantized_asymmetric = is_data_type_quantized_asymmetric(src.data_type());
Georgios Pinitas30902ed2017-11-14 15:32:57 +000090
91 // Checks performed when output is configured
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +000092 if(dst.total_size() != 0)
Georgios Pinitas30902ed2017-11-14 15:32:57 +000093 {
94 if(is_quantized_asymmetric)
95 {
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +000096 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&dst, 1, DataType::S32);
Georgios Pinitas30902ed2017-11-14 15:32:57 +000097 }
98 else
99 {
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000100 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&src, &dst);
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000101 }
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000102 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&src, &dst);
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000103 }
104
105 // Checks performed when sum is configured
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000106 if(sum.total_size() != 0)
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000107 {
108 if(is_quantized_asymmetric)
109 {
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000110 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&sum, 1, DataType::S32);
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000111 }
112 else
113 {
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000114 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&max, &sum);
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000115 }
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000116 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&max, &sum);
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000117 }
118
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000119 return Status{};
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000120}
121
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000122Status validate_arguments_1DNorm(const ITensorInfo &src, const ITensorInfo &sum, const ITensorInfo &dst, const SoftmaxKernelInfo &info)
Giorgio Arenab8ab9972017-11-29 15:09:39 +0000123{
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000124 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(&src);
125 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&src, 1, DataType::S32, DataType::F16, DataType::F32);
126 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&src, &sum);
Sang-Hoon Parka0205b92020-07-07 09:36:09 +0100127 ARM_COMPUTE_RETURN_ERROR_ON(info.is_log && !is_data_type_float(info.input_data_type));
Giorgio Arenab8ab9972017-11-29 15:09:39 +0000128
129 // Note: output should always have a scale of 1/256 and offset 0
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000130 const QuantizationInfo allowed_quantization_info = get_softmax_output_quantization_info(info.input_data_type, info.is_log);
131 const bool is_quantized_asymmetric = is_data_type_quantized_asymmetric(info.input_data_type);
Giorgio Arenab8ab9972017-11-29 15:09:39 +0000132
133 // Checks performed when output is configured
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000134 if(dst.total_size() != 0)
Giorgio Arenab8ab9972017-11-29 15:09:39 +0000135 {
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000136 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(&src, &dst);
Giorgio Arenab8ab9972017-11-29 15:09:39 +0000137 if(!is_quantized_asymmetric)
138 {
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000139 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(&src, &dst);
Giorgio Arenab8ab9972017-11-29 15:09:39 +0000140 }
141 else
142 {
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000143 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(&dst, 1, DataType::QASYMM8, DataType::QASYMM8_SIGNED);
144 ARM_COMPUTE_RETURN_ERROR_ON(dst.quantization_info() != allowed_quantization_info);
Giorgio Arenab8ab9972017-11-29 15:09:39 +0000145 }
146 }
147
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000148 return Status{};
Giorgio Arenab8ab9972017-11-29 15:09:39 +0000149}
Giorgio Arenab8ab9972017-11-29 15:09:39 +0000150} // namespace
151
Chunosovd6afedc2017-11-06 22:09:45 +0700152/**< Grid size (obtained through auto-tuning) */
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000153const unsigned int ClLogits1DMaxShiftExpSumKernel::_grid_size = 64;
Chunosovd6afedc2017-11-06 22:09:45 +0700154/**< Vector size in the serial case (obtained through auto-tuning) */
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000155const unsigned int ClLogits1DMaxShiftExpSumKernel::_serial_vector_size = 8;
Chunosovd6afedc2017-11-06 22:09:45 +0700156/**< Vector size in the parallel case (obtained through auto-tuning, enables the best memory access pattern for Bifrost) .*/
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000157const unsigned int ClLogits1DMaxShiftExpSumKernel::_parallel_vector_size = 4;
Chunosovd6afedc2017-11-06 22:09:45 +0700158
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100159ClLogits1DMaxShiftExpSumKernel::ClLogits1DMaxShiftExpSumKernel()
160{
161 _type = CLKernelType::ELEMENTWISE;
162}
163
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000164void ClLogits1DMaxShiftExpSumKernel::configure(const CLCompileContext &compile_context, const ITensorInfo &src, ITensorInfo &max, ITensorInfo &dst, ITensorInfo &sum, const SoftmaxKernelInfo &info)
Chunosovd6afedc2017-11-06 22:09:45 +0700165{
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000166 auto padding_info = get_padding_info({ &src, &max, &dst, &sum });
Giorgio Arena2d1a8352020-10-26 15:04:08 +0000167
Chunosovd6afedc2017-11-06 22:09:45 +0700168 // Output auto initialization if not yet initialized
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000169 auto_init_if_empty(sum, src.clone()->set_tensor_shape(max.tensor_shape()));
170 auto_init_if_empty(dst, *src.clone());
Chunosovd6afedc2017-11-06 22:09:45 +0700171
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000172 // Perform validation step
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000173 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_1DMaxShiftExpSum(src, max, dst, sum));
Chunosovd6afedc2017-11-06 22:09:45 +0700174
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000175 const DataType dt = src.data_type();
176 const UniformQuantizationInfo qinfo = src.quantization_info().uniform();
177 const size_t reduction_dim_size = src.dimension(0);
Sang-Hoon Park62eeb532019-10-29 13:13:19 +0000178 const float beta = info.beta;
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000179 const auto is_signed_qasymm8 = is_data_type_quantized_asymmetric_signed(info.input_data_type);
180 const int min_value = is_signed_qasymm8 ? CL_SCHAR_MIN : 0;
Chunosovd6afedc2017-11-06 22:09:45 +0700181
Adnan AlSinanb0608062021-09-29 16:50:46 +0100182 const unsigned int vector_size = adjust_vec_size(_serial_vector_size, reduction_dim_size);
Giorgio Arena2d1a8352020-10-26 15:04:08 +0000183
Chunosovd6afedc2017-11-06 22:09:45 +0700184 // Set build options
185 CLBuildOptions build_opts;
186 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(dt));
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000187 build_opts.add_option("-DMIN_VALUE=" + support::cpp11::to_string(min_value));
Chunosovd6afedc2017-11-06 22:09:45 +0700188 build_opts.add_option("-DVECTOR_SIZE=" + support::cpp11::to_string(vector_size));
Giorgio Arena2d1a8352020-10-26 15:04:08 +0000189 build_opts.add_option("-DSRC_WIDTH=" + support::cpp11::to_string(reduction_dim_size));
190 build_opts.add_option("-DVECTOR_SIZE_LEFTOVER=" + support::cpp11::to_string(reduction_dim_size % vector_size));
Chunosovd6afedc2017-11-06 22:09:45 +0700191 build_opts.add_option("-DLOG_VECTOR_SIZE=" + support::cpp11::to_string(lround(log2(vector_size))));
192 build_opts.add_option_if((reduction_dim_size % vector_size) != 0, "-DNON_MULTIPLE_OF_VECTOR_SIZE");
Giorgio Arena2d1a8352020-10-26 15:04:08 +0000193 build_opts.add_option_if(is_signed_qasymm8, "-DQASYMM8_SIGNED");
194 build_opts.add_option_if(is_data_type_float(dt) && (beta != 1.0f), "-DBETA=" + float_to_string_with_full_precision(beta));
195 build_opts.add_option_if(is_data_type_float(dt) && info.is_log, "-DLOG_SOFTMAX");
196 build_opts.add_option_if(is_data_type_float(dt), "-DMINVAL=" + ((dt == DataType::F16) ? std::string("-HALF_MAX") : std::string("-FLT_MAX")));
Adnan AlSinanb0608062021-09-29 16:50:46 +0100197 build_opts.add_option_if(is_data_type_quantized_asymmetric(dt), "-DSCALE=" + float_to_string_with_full_precision(qinfo.scale));
198 build_opts.add_option_if(is_data_type_quantized_asymmetric(dt), "-DBETA=" + float_to_string_with_full_precision(beta));
Giorgio Arena2d1a8352020-10-26 15:04:08 +0000199 build_opts.add_options_if(is_data_type_quantized_asymmetric(dt), prepare_quantized_softmax_build_options(qinfo.scale, beta).options());
200
201 cl::NDRange lws_hint(cl::NullRange);
Adnan AlSinanb0608062021-09-29 16:50:46 +0100202 std::string kernel_name = std::string("softmax_layer_max_shift_exp_sum_") + (is_data_type_quantized_asymmetric(dt) ? "quantized_" : "") + "serial";
Chunosovd6afedc2017-11-06 22:09:45 +0700203
204 // Create kernel.
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100205 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Chunosovd6afedc2017-11-06 22:09:45 +0700206
Chunosovd6afedc2017-11-06 22:09:45 +0700207 // Configure window
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000208 Window win = calculate_max_window(src, Steps(reduction_dim_size));
209 IClKernel::configure_internal(win, lws_hint);
Giorgio Arena2d1a8352020-10-26 15:04:08 +0000210
211 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Chunosovd6afedc2017-11-06 22:09:45 +0700212}
213
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000214Status ClLogits1DMaxShiftExpSumKernel::validate(const ITensorInfo &src, const ITensorInfo &max, const ITensorInfo &dst, const ITensorInfo &sum)
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000215{
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000216 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_1DMaxShiftExpSum(src, max, dst, sum));
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000217 return Status{};
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000218}
219
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000220ClLogits1DMaxShiftExpSumKernel::ParallelReductionInfo ClLogits1DMaxShiftExpSumKernel::is_parallel_reduction(size_t size)
Chunosovd6afedc2017-11-06 22:09:45 +0700221{
222 bool is_parallel_reduction = (size >= (_grid_size * _serial_vector_size)) && (_grid_size > 1);
223 unsigned int vector_size = is_parallel_reduction ? _parallel_vector_size : _serial_vector_size;
224 return std::make_tuple(is_parallel_reduction, vector_size);
225}
226
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000227void ClLogits1DMaxShiftExpSumKernel::run_op(ITensorPack &tensors, const Window &window, ::cl::CommandQueue &queue)
Chunosovd6afedc2017-11-06 22:09:45 +0700228{
229 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
230 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
231
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000232 auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
233 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
234 auto max = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_INT_0));
235 auto sum = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_INT_1));
236
237 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst, max, sum);
238
Chunosovd6afedc2017-11-06 22:09:45 +0700239 // Collapse window in Z dimension
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000240 Window window_collapsed = window.collapse_if_possible(IClKernel::window(), Window::DimZ);
Chunosovd6afedc2017-11-06 22:09:45 +0700241
242 // Reconfigure window in case of parallel reduction
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000243 ParallelReductionInfo parallel_reduction_info = is_parallel_reduction(src->info()->dimension(0));
Chunosovd6afedc2017-11-06 22:09:45 +0700244 if(std::get<0>(parallel_reduction_info))
245 {
Giorgio Arena2d1a8352020-10-26 15:04:08 +0000246 // Launch grid_size parallel work items
247 window_collapsed.set(Window::DimX, Window::Dimension(0, _grid_size, 1));
Chunosovd6afedc2017-11-06 22:09:45 +0700248 }
249
250 // Get slices
251 Window slice = window_collapsed.first_slice_window_3D();
252 do
253 {
254 unsigned int idx = 0;
255 // Set inputs
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000256 add_3D_tensor_argument(idx, src, slice);
257 add_3D_tensor_argument(idx, max, slice);
258 add_3D_tensor_argument(idx, dst, slice);
259 add_3D_tensor_argument(idx, sum, slice);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100260 enqueue(queue, *this, slice, lws_hint());
Chunosovd6afedc2017-11-06 22:09:45 +0700261 }
262 while(window_collapsed.slide_window_slice_3D(slice));
263}
264
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100265ClLogits1DNormKernel::ClLogits1DNormKernel()
266{
267 _type = CLKernelType::ELEMENTWISE;
268}
269
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000270void ClLogits1DNormKernel::configure(const CLCompileContext &compile_context, const ITensorInfo &src, const ITensorInfo &sum, ITensorInfo &dst, const SoftmaxKernelInfo &info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100271{
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000272 auto padding_info = get_padding_info({ &src, &dst, &sum });
Giorgio Arena2d1a8352020-10-26 15:04:08 +0000273
Chunosovf450caa2017-11-08 16:09:35 +0700274 // Note: output should always have a scale of 1/256 and offset 0
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000275 const bool is_quantized_asymmetric = is_data_type_quantized_asymmetric(info.input_data_type);
276 const DataType output_data_type = info.input_data_type;
277 const QuantizationInfo allowed_quantization_info = get_softmax_output_quantization_info(info.input_data_type, info.is_log);
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000278 const UniformQuantizationInfo qinfo = src.quantization_info().uniform();
Georgios Pinitasd368df32017-07-04 11:06:15 +0100279
280 // Output auto initialization if not yet initialized
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000281 auto_init_if_empty(dst, src.clone()->set_data_type(output_data_type).set_quantization_info(allowed_quantization_info));
Georgios Pinitasd368df32017-07-04 11:06:15 +0100282
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000283 // Perform validation step
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000284 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_1DNorm(src, sum, dst, info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100285
Giorgio Arena2d1a8352020-10-26 15:04:08 +0000286 const auto is_signed_qasymm8 = is_data_type_quantized_asymmetric_signed(info.input_data_type);
287 const int min_value = is_signed_qasymm8 ? CL_SCHAR_MIN : 0;
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000288 const unsigned int vector_size = adjust_vec_size(16, src.dimension(0));
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000289
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100290 // Set build options
Chunosovf450caa2017-11-08 16:09:35 +0700291 CLBuildOptions build_opts;
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000292 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(info.input_data_type));
293 build_opts.add_option("-DMIN_VALUE=" + support::cpp11::to_string(min_value));
Giorgio Arena2d1a8352020-10-26 15:04:08 +0000294 build_opts.add_option("-DVECTOR_SIZE=" + support::cpp11::to_string(vector_size));
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000295 build_opts.add_option("-DVECTOR_SIZE_LEFTOVER=" + support::cpp11::to_string(src.dimension(0) % vector_size));
Sang-Hoon Park0779fec2019-11-13 17:08:12 +0000296 build_opts.add_option_if(is_data_type_quantized_asymmetric_signed(info.input_data_type), "-DQASYMM8_SIGNED");
Chunosovf450caa2017-11-08 16:09:35 +0700297 build_opts.add_options_if(is_quantized_asymmetric,
Sang-Hoon Park62eeb532019-10-29 13:13:19 +0000298 prepare_quantized_softmax_build_options(qinfo.scale, info.beta).options());
299 build_opts.add_option_if(info.is_log, "-DLOG_SOFTMAX");
Adnan AlSinanb0608062021-09-29 16:50:46 +0100300 build_opts.add_option_if(is_quantized_asymmetric, "-DSCALE=" + float_to_string_with_full_precision(qinfo.scale));
301 build_opts.add_option_if(is_quantized_asymmetric, "-DBETA=" + float_to_string_with_full_precision(info.beta));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100302
303 // Create kernel
Giorgio Arena2d1a8352020-10-26 15:04:08 +0000304 std::string kernel_name = std::string("softmax_layer_norm") + (is_quantized_asymmetric ? "_quantized" : "");
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100305 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100306
307 // Configure window
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000308 auto win = calculate_max_window(src, Steps(vector_size));
Giorgio Arena2d1a8352020-10-26 15:04:08 +0000309 ICLKernel::configure_internal(win);
310
311 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100312}
313
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000314Status ClLogits1DNormKernel::validate(const ITensorInfo &src, const ITensorInfo &sum, const ITensorInfo &dst, const SoftmaxKernelInfo &info)
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000315{
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000316 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_1DNorm(src, sum, dst, info));
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000317
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000318 return Status{};
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000319}
320
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000321void ClLogits1DNormKernel::run_op(ITensorPack &tensors, const Window &window, ::cl::CommandQueue &queue)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100322{
323 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
324 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
325
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000326 auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
327 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
328 auto sum = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_INT_0));
329
330 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst, sum);
331
steniu010d523cc2017-07-13 14:24:23 +0100332 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
333 Window slice = window_collapsed.first_slice_window_3D();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100334
335 do
336 {
337 Window sum_slice = slice;
338 sum_slice.set(Window::DimX, Window::Dimension(0, 1, 1));
339
340 unsigned int idx = 0;
341 // Set inputs
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000342 add_3D_tensor_argument(idx, src, slice);
343 add_3D_tensor_argument(idx, sum, sum_slice);
344 add_3D_tensor_argument(idx, dst, slice);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100345 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100346 }
steniu010d523cc2017-07-13 14:24:23 +0100347 while(window_collapsed.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100348}
Sang-Hoon Park201e0fe2021-01-27 13:14:56 +0000349} // namespace kernels
350} // namespace opencl
Giorgio Arena2d1a8352020-10-26 15:04:08 +0000351} // namespace arm_compute