blob: ff6cc86103858f28b34be2d951f291635635a459 [file] [log] [blame]
Sheri Zhangb18252d2020-04-07 11:04:57 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2020 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 */
24#include "arm_compute/core/CL/kernels/CLQLSTMLayerNormalizationKernel.h"
25#include "arm_compute/core/CL/ICLTensor.h"
Sheri Zhangb18252d2020-04-07 11:04:57 +010026#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010027#include "src/core/helpers/AutoConfiguration.h"
28#include "src/core/helpers/WindowHelpers.h"
Sheri Zhangb18252d2020-04-07 11:04:57 +010029#include "support/StringSupport.h"
30
31namespace arm_compute
32{
33namespace
34{
Sheri Zhang3a353982020-04-21 13:10:24 +010035QuantizationInfo compute_output_qinfo()
36{
37 return QuantizationInfo(1.f / 4096);
38}
39
Sheri Zhangb18252d2020-04-07 11:04:57 +010040std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
41{
42 ARM_COMPUTE_ERROR_ON_NULLPTR(input);
43 // Output auto inizialitation if not yet initialized
44 auto_init_if_empty(*output, *input);
Sheri Zhang3a353982020-04-21 13:10:24 +010045 output->set_quantization_info(compute_output_qinfo());
Sheri Zhangb18252d2020-04-07 11:04:57 +010046
47 const uint32_t temp_num_elems_processed_per_iteration = max_cl_vector_width / input->element_size();
48 /* If width is less then step, then make step same as width to avoid global size being step instead of actual width. */
49 /* Or we should fix in arm_compute::enqueue() or arm_compute::calculate_max_window(). */
50 const uint32_t num_elems_processed_per_iteration = (input->dimension(0) < temp_num_elems_processed_per_iteration) ? input->dimension(0) : temp_num_elems_processed_per_iteration;
51
52 // This kernel doesn't need padding
53 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration));
54 output->set_valid_region(ValidRegion(Coordinates(), output->tensor_shape()));
55
56 return std::make_pair(Status{}, win);
57}
Sheri Zhang3a353982020-04-21 13:10:24 +010058Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *weight, const ITensorInfo *bias)
Sheri Zhangb18252d2020-04-07 11:04:57 +010059{
60 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, weight, bias, output);
61
62 ARM_COMPUTE_RETURN_ERROR_ON_MSG(input->num_dimensions() > 2, "Input tensor cannot have more than 2 dimensions");
63 ARM_COMPUTE_RETURN_ERROR_ON_MSG(weight->num_dimensions() > 1, "Weight tensor cannot have more than 1 dimensions");
64 ARM_COMPUTE_RETURN_ERROR_ON_MSG(bias->num_dimensions() > 1, "Bias tensor cannot have more than 1 dimensions");
65
66 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QSYMM16);
67 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(weight, 1, DataType::QSYMM16);
68 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
69
70 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape().x() != weight->tensor_shape().x());
71 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(weight, bias);
72
73 // Checks performed when output is configured
74 if(output->total_size() != 0)
75 {
76 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
77 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
78 }
79 return Status{};
80}
81} // namespace
82
83CLQLSTMLayerNormalizationKernel::CLQLSTMLayerNormalizationKernel()
84 : _input(nullptr), _weight(nullptr), _bias(nullptr), _output(nullptr)
85{
86}
87
Manuel Bottini679fc962020-04-21 16:08:53 +010088void CLQLSTMLayerNormalizationKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const ICLTensor *weight, const ICLTensor *bias)
Sheri Zhangb18252d2020-04-07 11:04:57 +010089{
90 ARM_COMPUTE_ERROR_ON_NULLPTR(input, weight, bias, output);
91
92 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), weight->info(), bias->info()));
93
94 _input = input;
95 _weight = weight;
96 _bias = bias;
97 _output = output;
98
99 const uint32_t num_elems_processed_per_iteration = max_cl_vector_width / input->info()->element_size();
100
101 int32_t output_multiplier{};
102 int32_t output_shift{};
103 const UniformQuantizationInfo quan_info = _weight->info()->quantization_info().uniform();
104 const Status status = quantization::calculate_quantized_multiplier(quan_info.scale, &output_multiplier, &output_shift);
105 output_shift *= -1;
106
107 // Set build options
108 CLBuildOptions build_opts;
109 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
110 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
111 build_opts.add_option("-DWIDTH=" + support::cpp11::to_string(input->info()->dimension(0)));
112 build_opts.add_option("-DOUTPUT_MULTIPLIER=" + support::cpp11::to_string(output_multiplier));
113 build_opts.add_option("-DOUTPUT_SHIFT=" + support::cpp11::to_string(output_shift));
114 build_opts.add_option("-DMIN_BOUND=" + support::cpp11::to_string(std::get<0>(quantization::get_min_max_values_from_quantized_data_type(input->info()->data_type()))));
115 build_opts.add_option("-DMAX_BOUND=" + support::cpp11::to_string(std::get<1>(quantization::get_min_max_values_from_quantized_data_type(input->info()->data_type()))));
116
117 // Create kernel
118 _kernel = create_kernel(compile_context, "qlstm_layer_normalization", build_opts.options());
119
120 // Configure kernel window
121 auto win_config = validate_and_configure_window(input->info(), output->info());
122 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
123 ICLKernel::configure_internal(win_config.second);
124
125 // Set config_id for enabling LWS tuning
126 _config_id = "qlstm_layer_normalization_";
127 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
128 _config_id += "_";
129 _config_id += support::cpp11::to_string(input->info()->dimension(0));
130 _config_id += "_";
131 _config_id += support::cpp11::to_string(input->info()->dimension(1));
132}
133
134void CLQLSTMLayerNormalizationKernel::configure(const ICLTensor *input, ICLTensor *output, const ICLTensor *weight, const ICLTensor *bias)
135{
136 configure(CLKernelLibrary::get().get_compile_context(), input, output, weight, bias);
137}
138
Sheri Zhang3a353982020-04-21 13:10:24 +0100139Status CLQLSTMLayerNormalizationKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const ITensorInfo *weight, const ITensorInfo *bias)
Sheri Zhangb18252d2020-04-07 11:04:57 +0100140{
141 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, weight, bias));
142 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
143 return Status{};
144}
145
146void CLQLSTMLayerNormalizationKernel::run(const Window &window, cl::CommandQueue &queue)
147{
148 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
149 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
150
151 Window slice = window.first_slice_window_2D();
152 // Set slice step equal to width to force gws[0] to 1, as each thread normalizes across all rows
153 slice.set_dimension_step(Window::DimX, _input->info()->dimension(0));
154
155 Window weight_window;
156 Window weight_slice;
157
158 weight_window.use_tensor_dimensions(_weight->info()->tensor_shape());
159 weight_slice = weight_window.first_slice_window_1D();
160
161 do
162 {
163 unsigned int idx = 0;
164 add_2D_tensor_argument(idx, _input, slice);
165 add_1D_tensor_argument(idx, _weight, weight_slice);
166 add_1D_tensor_argument(idx, _bias, weight_slice);
167 add_2D_tensor_argument(idx, _output, slice);
168
169 enqueue(queue, *this, slice, lws_hint());
170 }
171 while(window.slide_window_slice_2D(slice));
172}
173} // namespace arm_compute