blob: d93dbde95a8cb5005d3bf8414df53ee215a3ab78 [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2017-2023 Arm Limited.
Gian Marco05288a22017-11-21 10:57:50 +00003 *
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/ClGemmLowpOffsetContributionKernel.h"
Gian Marco05288a22017-11-21 10:57:50 +000025
Gian Marco05288a22017-11-21 10:57:50 +000026#include "arm_compute/core/CL/ICLTensor.h"
Gian Marco05288a22017-11-21 10:57:50 +000027#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/TensorInfo.h"
Gian Marco05288a22017-11-21 10:57:50 +000029#include "arm_compute/core/Utils.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000030#include "arm_compute/core/utils/helpers/AdjustVecSize.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000031#include "arm_compute/core/utils/StringUtils.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010032#include "arm_compute/core/Validate.h"
Georgios Pinitas4a578b92021-06-25 12:13:49 +010033
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010034#include "src/core/helpers/WindowHelpers.h"
Georgios Pinitas4a578b92021-06-25 12:13:49 +010035#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000036#include "support/StringSupport.h"
Gian Marco05288a22017-11-21 10:57:50 +000037
Gian Marco05288a22017-11-21 10:57:50 +000038namespace arm_compute
39{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010040namespace opencl
41{
42namespace kernels
43{
Georgios Pinitas358ca202017-12-07 16:47:52 +000044namespace
45{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010046Status validate_arguments(const ITensorInfo *mm_result,
47 const ITensorInfo *vector_sum_col,
48 const ITensorInfo *vector_sum_row,
49 const ITensorInfo *bias,
50 int32_t a_offset,
51 int32_t b_offset)
Georgios Pinitas358ca202017-12-07 16:47:52 +000052{
53 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(mm_result, 1, DataType::S32);
54
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010055 if (bias != nullptr)
Gian Marco Iodice4b908652018-10-18 10:21:02 +010056 {
57 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
58 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
59 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != bias->dimension(0));
60 }
61
Georgios Pinitas358ca202017-12-07 16:47:52 +000062 // If a_offset == 0, vector_sum_col can be a nullptr
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010063 if (a_offset != 0)
Georgios Pinitas358ca202017-12-07 16:47:52 +000064 {
65 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_col, 1, DataType::S32);
66 ARM_COMPUTE_RETURN_ERROR_ON(vector_sum_col->dimension(0) != mm_result->dimension(0));
67 }
68
69 // If b_offset == 0, vector_sum_row can be a nullptr
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010070 if (b_offset != 0)
Georgios Pinitas358ca202017-12-07 16:47:52 +000071 {
72 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_row, 1, DataType::S32);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010073
74 // Check if input is a 3D reinterpretation
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010075 const bool reinterpret_as_3d =
76 mm_result->num_dimensions() > 1 && mm_result->tensor_shape().y() != vector_sum_row->tensor_shape().x();
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010077
78 // Validate input
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010079 ARM_COMPUTE_RETURN_ERROR_ON(reinterpret_as_3d && vector_sum_row->dimension(0) !=
80 (mm_result->dimension(1) * mm_result->dimension(2)));
Gian Marco Iodice4b908652018-10-18 10:21:02 +010081 ARM_COMPUTE_RETURN_ERROR_ON(!reinterpret_as_3d && vector_sum_row->dimension(0) != mm_result->dimension(1));
Georgios Pinitas358ca202017-12-07 16:47:52 +000082
83 TensorShape output_shape = mm_result->tensor_shape();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010084 if (output_shape.num_dimensions() > 1)
Georgios Pinitas358ca202017-12-07 16:47:52 +000085 {
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010086 const unsigned int output_batch_idx = reinterpret_as_3d ? 3 : 2;
87
Georgios Pinitas358ca202017-12-07 16:47:52 +000088 TensorShape vector_sum_row_shape = vector_sum_row->tensor_shape();
89 vector_sum_row_shape.collapse_from(1);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010090 output_shape.collapse_from(output_batch_idx);
Georgios Pinitas358ca202017-12-07 16:47:52 +000091
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010092 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_row_shape[1] != output_shape[output_batch_idx],
Georgios Pinitas358ca202017-12-07 16:47:52 +000093 "mm_result tensor must have the same number of batches of output tensor");
94
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010095 if (a_offset != 0)
Georgios Pinitas358ca202017-12-07 16:47:52 +000096 {
97 TensorShape vector_sum_col_shape = vector_sum_col->tensor_shape();
98 vector_sum_col_shape.collapse_from(1);
99
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100100 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_col_shape[1] != 1 &&
101 vector_sum_col_shape[1] != vector_sum_row_shape[1],
102 "vector_sum_col tensor must have the same number of batches of "
103 "vector_sum_row_shape or the number of batches must be set to 1");
Georgios Pinitas358ca202017-12-07 16:47:52 +0000104 }
105 }
106 }
107
108 return Status{};
109}
Georgios Pinitas358ca202017-12-07 16:47:52 +0000110} // namespace
111
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100112ClGemmLowpOffsetContributionKernel::ClGemmLowpOffsetContributionKernel()
Gian Marco05288a22017-11-21 10:57:50 +0000113{
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100114 _type = CLKernelType::ELEMENTWISE;
Gian Marco05288a22017-11-21 10:57:50 +0000115}
116
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100117void ClGemmLowpOffsetContributionKernel::configure(const CLCompileContext &compile_context,
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100118 const ITensorInfo *mm_result,
119 const ITensorInfo *vector_sum_col,
120 const ITensorInfo *vector_sum_row,
121 const ITensorInfo *bias,
122 int32_t k,
123 int32_t a_offset,
124 int32_t b_offset)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100125{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000126 // Perform validate step
127 ARM_COMPUTE_ERROR_ON_NULLPTR(mm_result);
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100128 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(mm_result, vector_sum_col, vector_sum_row, bias, a_offset, b_offset));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000129
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100130 auto padding_info = get_padding_info({mm_result, vector_sum_col, vector_sum_row, bias});
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100131
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100132 // Check if input is a 3D reinterpretation
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100133 const bool reinterpret_as_3d = vector_sum_row != nullptr && mm_result->num_dimensions() > 1 &&
134 mm_result->tensor_shape().y() != vector_sum_row->tensor_shape().x();
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100135
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100136 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(4, mm_result->dimension(0));
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100137
Gian Marco05288a22017-11-21 10:57:50 +0000138 // Set the arguments to pass at compile time
139 CLBuildOptions build_opts;
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100140 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100141 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" +
142 support::cpp11::to_string(mm_result->dimension(0) % num_elems_processed_per_iteration));
Gian Marco05288a22017-11-21 10:57:50 +0000143
144 // If a_offset == 0, vector_sum_col can be a nullptr
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100145 if (a_offset != 0)
Gian Marco05288a22017-11-21 10:57:50 +0000146 {
Gian Marco05288a22017-11-21 10:57:50 +0000147 build_opts.add_option("-DA_OFFSET=" + support::cpp11::to_string(a_offset));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100148 build_opts.add_option_if(vector_sum_col->tensor_shape().num_dimensions() > 1, "-DSUM_COL_HAS_BATCHES");
Gian Marco05288a22017-11-21 10:57:50 +0000149 }
Gian Marco05288a22017-11-21 10:57:50 +0000150 // If b_offset == 0, vector_sum_row can be a nullptr
Georgios Pinitas358ca202017-12-07 16:47:52 +0000151 build_opts.add_option_if(b_offset != 0, "-DB_OFFSET=" + support::cpp11::to_string(b_offset));
Gian Marco05288a22017-11-21 10:57:50 +0000152 build_opts.add_option("-DK_OFFSET=" + support::cpp11::to_string(a_offset * b_offset * k));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100153 build_opts.add_option_if(reinterpret_as_3d,
154 "-DHEIGHT_INPUT3D=" + support::cpp11::to_string(mm_result->dimension(1)));
155 build_opts.add_option_if(reinterpret_as_3d,
156 "-DDEPTH_INPUT3D=" + support::cpp11::to_string(mm_result->dimension(2)));
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100157 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
158
159 std::string kernel_name("gemmlowp_offset_contribution");
Gian Marco05288a22017-11-21 10:57:50 +0000160
Gian Marco Iodiced11de982022-09-05 15:35:35 +0100161 // A macro guard to compile ONLY the kernel of interest
162 build_opts.add_option("-D" + upper_string(kernel_name));
163
Gian Marco05288a22017-11-21 10:57:50 +0000164 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100165 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000166
Gian Marco05288a22017-11-21 10:57:50 +0000167 // Configure kernel window
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100168 Window win = calculate_max_window(*mm_result, Steps(num_elems_processed_per_iteration));
169 IClKernel::configure_internal(win);
Gian Marco19835e52018-01-30 13:35:54 +0000170
171 // Set config_id for enabling LWS tuning
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100172 _config_id = kernel_name + "_";
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100173 _config_id += support::cpp11::to_string(mm_result->dimension(0));
Gian Marco19835e52018-01-30 13:35:54 +0000174 _config_id += "_";
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100175 _config_id += support::cpp11::to_string(mm_result->dimension(1));
Gian Marco19835e52018-01-30 13:35:54 +0000176 _config_id += "_";
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100177 _config_id += support::cpp11::to_string(mm_result->dimension(2));
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100178
179 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000180}
Gian Marco05288a22017-11-21 10:57:50 +0000181
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100182Status ClGemmLowpOffsetContributionKernel::validate(const ITensorInfo *mm_result,
183 const ITensorInfo *vector_sum_col,
184 const ITensorInfo *vector_sum_row,
185 const ITensorInfo *bias,
186 int32_t a_offset,
187 int32_t b_offset)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000188{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100189 ARM_COMPUTE_RETURN_ON_ERROR(
190 validate_arguments(mm_result, vector_sum_col, vector_sum_row, bias, a_offset, b_offset));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000191 return Status{};
Gian Marco05288a22017-11-21 10:57:50 +0000192}
193
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100194void ClGemmLowpOffsetContributionKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Gian Marco05288a22017-11-21 10:57:50 +0000195{
196 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100197 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IClKernel::window(), window);
Gian Marco05288a22017-11-21 10:57:50 +0000198
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100199 const auto vector_sum_col =
200 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_VEC_COL_SUM));
201 const auto vector_sum_row =
202 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_VEC_ROW_SUM));
203 const auto bias =
204 utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_BIAS));
205 const auto mm_result = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_SRC_DST));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100206
207 Window collapsed = window.collapse_if_possible(IClKernel::window(), Window::DimZ);
Gian Marco05288a22017-11-21 10:57:50 +0000208 Window slice = collapsed.first_slice_window_3D();
209
210 // Set window for vector_sum_col
211 Window win_vector_sum_col = slice;
212 win_vector_sum_col.set(Window::DimY, Window::Dimension(0, 0, 0));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100213 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000214
215 // Set window for vector_sum_row
216 Window win_vector_sum_row = slice;
217 win_vector_sum_row.set(Window::DimX, Window::Dimension(0, 0, 0));
218 win_vector_sum_row.set(Window::DimY, Window::Dimension(0, 0, 0));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100219 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000220
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100221 Window biases_slice = slice;
222 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
223 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
224
Gian Marco05288a22017-11-21 10:57:50 +0000225 do
226 {
227 unsigned int idx = 0;
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100228 add_3D_tensor_argument(idx, mm_result, slice);
229 add_2D_tensor_argument_if((vector_sum_col != nullptr), idx, vector_sum_col, win_vector_sum_col);
230 add_2D_tensor_argument_if((vector_sum_row != nullptr), idx, vector_sum_row, win_vector_sum_row);
231 add_1D_tensor_argument_if((bias != nullptr), idx, bias, biases_slice);
Michalis Spyroue1651a52019-07-11 15:00:49 +0100232
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100233 enqueue(queue, *this, slice, lws_hint());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100234 } while (collapsed.slide_window_slice_3D(slice));
Gian Marco05288a22017-11-21 10:57:50 +0000235}
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100236} // namespace kernels
237} // namespace opencl
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100238} // namespace arm_compute