blob: 731fcb8e048361666515a97483e3032714605862 [file] [log] [blame]
Sheri Zhangb18252d2020-04-07 11:04:57 +01001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2020-2021, 2023 Arm Limited.
Sheri Zhangb18252d2020-04-07 11:04:57 +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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLQLSTMLayerNormalizationKernel.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010025
Sheri Zhangb18252d2020-04-07 11:04:57 +010026#include "arm_compute/core/CL/ICLTensor.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000027#include "arm_compute/core/Utils.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010028#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000029#include "arm_compute/core/utils/StringUtils.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010030
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/helpers/AutoConfiguration.h"
32#include "src/core/helpers/WindowHelpers.h"
Sheri Zhangb18252d2020-04-07 11:04:57 +010033#include "support/StringSupport.h"
34
35namespace arm_compute
36{
37namespace
38{
Sheri Zhang3a353982020-04-21 13:10:24 +010039QuantizationInfo compute_output_qinfo()
40{
41 return QuantizationInfo(1.f / 4096);
42}
43
Sheri Zhangb18252d2020-04-07 11:04:57 +010044std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
45{
46 ARM_COMPUTE_ERROR_ON_NULLPTR(input);
47 // Output auto inizialitation if not yet initialized
48 auto_init_if_empty(*output, *input);
Sheri Zhang3a353982020-04-21 13:10:24 +010049 output->set_quantization_info(compute_output_qinfo());
Sheri Zhangb18252d2020-04-07 11:04:57 +010050
51 const uint32_t temp_num_elems_processed_per_iteration = max_cl_vector_width / input->element_size();
52 /* If width is less then step, then make step same as width to avoid global size being step instead of actual width. */
53 /* Or we should fix in arm_compute::enqueue() or arm_compute::calculate_max_window(). */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010054 const uint32_t num_elems_processed_per_iteration = (input->dimension(0) < temp_num_elems_processed_per_iteration)
55 ? input->dimension(0)
56 : temp_num_elems_processed_per_iteration;
Sheri Zhangb18252d2020-04-07 11:04:57 +010057
58 // This kernel doesn't need padding
59 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
Sheri Zhangb18252d2020-04-07 11:04:57 +010060
61 return std::make_pair(Status{}, win);
62}
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010063Status validate_arguments(const ITensorInfo *input,
64 const ITensorInfo *output,
65 const ITensorInfo *weight,
66 const ITensorInfo *bias)
Sheri Zhangb18252d2020-04-07 11:04:57 +010067{
68 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weight, bias, output);
69
70 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->num_dimensions() > 2, "Input tensor cannot have more than 2 dimensions");
71 ARM_COMPUTE_RETURN_ERROR_ON_MSG(weight->num_dimensions() > 1, "Weight tensor cannot have more than 1 dimensions");
72 ARM_COMPUTE_RETURN_ERROR_ON_MSG(bias->num_dimensions() > 1, "Bias tensor cannot have more than 1 dimensions");
73
74 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QSYMM16);
75 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(weight, 1, DataType::QSYMM16);
76 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
77
78 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape().x() != weight->tensor_shape().x());
79 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(weight, bias);
80
81 // Checks performed when output is configured
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010082 if (output->total_size() != 0)
Sheri Zhangb18252d2020-04-07 11:04:57 +010083 {
84 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
85 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
86 }
87 return Status{};
88}
89} // namespace
90
91CLQLSTMLayerNormalizationKernel::CLQLSTMLayerNormalizationKernel()
92 : _input(nullptr), _weight(nullptr), _bias(nullptr), _output(nullptr)
93{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010094 _type = CLKernelType::ELEMENTWISE;
Sheri Zhangb18252d2020-04-07 11:04:57 +010095}
96
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010097void CLQLSTMLayerNormalizationKernel::configure(const CLCompileContext &compile_context,
98 const ICLTensor *input,
99 ICLTensor *output,
100 const ICLTensor *weight,
101 const ICLTensor *bias)
Sheri Zhangb18252d2020-04-07 11:04:57 +0100102{
103 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weight, bias, output);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100104 auto padding_info = get_padding_info({input, weight, bias, output});
Sheri Zhangb18252d2020-04-07 11:04:57 +0100105
106 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), weight->info(), bias->info()));
107
108 _input = input;
109 _weight = weight;
110 _bias = bias;
111 _output = output;
112
113 const uint32_t num_elems_processed_per_iteration = max_cl_vector_width / input->info()->element_size();
114
115 int32_t output_multiplier{};
116 int32_t output_shift{};
117 const UniformQuantizationInfo quan_info = _weight->info()->quantization_info().uniform();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100118 const Status status =
119 quantization::calculate_quantized_multiplier(quan_info.scale, &output_multiplier, &output_shift);
Sheri Zhangb18252d2020-04-07 11:04:57 +0100120 output_shift *= -1;
121
122 // Set build options
123 CLBuildOptions build_opts;
124 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
125 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
126 build_opts.add_option("-DWIDTH=" + support::cpp11::to_string(input->info()->dimension(0)));
127 build_opts.add_option("-DOUTPUT_MULTIPLIER=" + support::cpp11::to_string(output_multiplier));
128 build_opts.add_option("-DOUTPUT_SHIFT=" + support::cpp11::to_string(output_shift));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100129 build_opts.add_option("-DMIN_BOUND=" +
130 support::cpp11::to_string(std::get<0>(
131 quantization::get_min_max_values_from_quantized_data_type(input->info()->data_type()))));
132 build_opts.add_option("-DMAX_BOUND=" +
133 support::cpp11::to_string(std::get<1>(
134 quantization::get_min_max_values_from_quantized_data_type(input->info()->data_type()))));
Sheri Zhangb18252d2020-04-07 11:04:57 +0100135
136 // Create kernel
137 _kernel = create_kernel(compile_context, "qlstm_layer_normalization", build_opts.options());
138
139 // Configure kernel window
140 auto win_config = validate_and_configure_window(input->info(), output->info());
141 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
142 ICLKernel::configure_internal(win_config.second);
143
144 // Set config_id for enabling LWS tuning
145 _config_id = "qlstm_layer_normalization_";
146 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
147 _config_id += "_";
148 _config_id += support::cpp11::to_string(input->info()->dimension(0));
149 _config_id += "_";
150 _config_id += support::cpp11::to_string(input->info()->dimension(1));
Manuel Bottinib6869dd2020-12-16 15:34:25 +0000151 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Sheri Zhangb18252d2020-04-07 11:04:57 +0100152}
153
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100154void CLQLSTMLayerNormalizationKernel::configure(const ICLTensor *input,
155 ICLTensor *output,
156 const ICLTensor *weight,
157 const ICLTensor *bias)
Sheri Zhangb18252d2020-04-07 11:04:57 +0100158{
159 configure(CLKernelLibrary::get().get_compile_context(), input, output, weight, bias);
160}
161
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100162Status CLQLSTMLayerNormalizationKernel::validate(const ITensorInfo *input,
163 const ITensorInfo *output,
164 const ITensorInfo *weight,
165 const ITensorInfo *bias)
Sheri Zhangb18252d2020-04-07 11:04:57 +0100166{
167 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, weight, bias));
168 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
169 return Status{};
170}
171
172void CLQLSTMLayerNormalizationKernel::run(const Window &window, cl::CommandQueue &queue)
173{
174 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
175 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
176
177 Window slice = window.first_slice_window_2D();
178 // Set slice step equal to width to force gws[0] to 1, as each thread normalizes across all rows
179 slice.set_dimension_step(Window::DimX, _input->info()->dimension(0));
180
181 Window weight_window;
182 Window weight_slice;
183
184 weight_window.use_tensor_dimensions(_weight->info()->tensor_shape());
185 weight_slice = weight_window.first_slice_window_1D();
186
187 do
188 {
189 unsigned int idx = 0;
190 add_2D_tensor_argument(idx, _input, slice);
191 add_1D_tensor_argument(idx, _weight, weight_slice);
192 add_1D_tensor_argument(idx, _bias, weight_slice);
193 add_2D_tensor_argument(idx, _output, slice);
194
195 enqueue(queue, *this, slice, lws_hint());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100196 } while (window.slide_window_slice_2D(slice));
Sheri Zhangb18252d2020-04-07 11:04:57 +0100197}
198} // namespace arm_compute