blob: e491cca91409f09df0c50f6913f69f0e82ec4405 [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Michele Di Giorgio142e4ca2021-04-14 16:50:03 +01002 * Copyright (c) 2017-2021 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 Pinitas4a578b92021-06-25 12:13:49 +010024#include "src/core/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"
30#include "arm_compute/core/Validate.h"
Georgios Pinitas4a578b92021-06-25 12:13:49 +010031
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010032#include "src/core/helpers/WindowHelpers.h"
Georgios Pinitas4a578b92021-06-25 12:13:49 +010033
34#include "support/Cast.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000035#include "support/StringSupport.h"
Gian Marco05288a22017-11-21 10:57:50 +000036
Gian Marco05288a22017-11-21 10:57:50 +000037namespace arm_compute
38{
Georgios Pinitas4a578b92021-06-25 12:13:49 +010039namespace opencl
40{
41namespace kernels
42{
Georgios Pinitas358ca202017-12-07 16:47:52 +000043namespace
44{
Gian Marco Iodice4b908652018-10-18 10:21:02 +010045Status validate_arguments(const ITensorInfo *mm_result, const ITensorInfo *vector_sum_col, const ITensorInfo *vector_sum_row, const ITensorInfo *bias,
Georgios Pinitas358ca202017-12-07 16:47:52 +000046 int32_t a_offset, int32_t b_offset)
47{
48 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(mm_result, 1, DataType::S32);
49
Gian Marco Iodice4b908652018-10-18 10:21:02 +010050 if(bias != nullptr)
51 {
52 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
53 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
54 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != bias->dimension(0));
55 }
56
Georgios Pinitas358ca202017-12-07 16:47:52 +000057 // If a_offset == 0, vector_sum_col can be a nullptr
58 if(a_offset != 0)
59 {
60 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_col, 1, DataType::S32);
61 ARM_COMPUTE_RETURN_ERROR_ON(vector_sum_col->dimension(0) != mm_result->dimension(0));
62 }
63
64 // If b_offset == 0, vector_sum_row can be a nullptr
65 if(b_offset != 0)
66 {
67 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_row, 1, DataType::S32);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010068
69 // Check if input is a 3D reinterpretation
Gian Marco Iodice4b908652018-10-18 10:21:02 +010070 const bool reinterpret_as_3d = mm_result->num_dimensions() > 1 && mm_result->tensor_shape().y() != vector_sum_row->tensor_shape().x();
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010071
72 // Validate input
73 ARM_COMPUTE_RETURN_ERROR_ON(reinterpret_as_3d && vector_sum_row->dimension(0) != (mm_result->dimension(1) * mm_result->dimension(2)));
Gian Marco Iodice4b908652018-10-18 10:21:02 +010074 ARM_COMPUTE_RETURN_ERROR_ON(!reinterpret_as_3d && vector_sum_row->dimension(0) != mm_result->dimension(1));
Georgios Pinitas358ca202017-12-07 16:47:52 +000075
76 TensorShape output_shape = mm_result->tensor_shape();
77 if(output_shape.num_dimensions() > 1)
78 {
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010079 const unsigned int output_batch_idx = reinterpret_as_3d ? 3 : 2;
80
Georgios Pinitas358ca202017-12-07 16:47:52 +000081 TensorShape vector_sum_row_shape = vector_sum_row->tensor_shape();
82 vector_sum_row_shape.collapse_from(1);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010083 output_shape.collapse_from(output_batch_idx);
Georgios Pinitas358ca202017-12-07 16:47:52 +000084
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010085 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_row_shape[1] != output_shape[output_batch_idx],
Georgios Pinitas358ca202017-12-07 16:47:52 +000086 "mm_result tensor must have the same number of batches of output tensor");
87
88 if(a_offset != 0)
89 {
90 TensorShape vector_sum_col_shape = vector_sum_col->tensor_shape();
91 vector_sum_col_shape.collapse_from(1);
92
93 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_col_shape[1] != 1 && vector_sum_col_shape[1] != vector_sum_row_shape[1],
94 "vector_sum_col tensor must have the same number of batches of vector_sum_row_shape or the number of batches must be set to 1");
95 }
96 }
97 }
98
99 return Status{};
100}
Georgios Pinitas358ca202017-12-07 16:47:52 +0000101} // namespace
102
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100103ClGemmLowpOffsetContributionKernel::ClGemmLowpOffsetContributionKernel()
Gian Marco05288a22017-11-21 10:57:50 +0000104{
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100105 _type = CLKernelType::ELEMENTWISE;
Gian Marco05288a22017-11-21 10:57:50 +0000106}
107
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100108void ClGemmLowpOffsetContributionKernel::configure(const CLCompileContext &compile_context,
109 const ITensorInfo *mm_result, const ITensorInfo *vector_sum_col, const ITensorInfo *vector_sum_row, const ITensorInfo *bias,
110 int32_t k, int32_t a_offset, int32_t b_offset)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100111{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000112 // Perform validate step
113 ARM_COMPUTE_ERROR_ON_NULLPTR(mm_result);
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100114 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 +0000115
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100116 auto padding_info = get_padding_info({ mm_result, vector_sum_col, vector_sum_row, bias });
117
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100118 // Check if input is a 3D reinterpretation
119 const bool reinterpret_as_3d = vector_sum_row != nullptr
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100120 && mm_result->num_dimensions() > 1
121 && mm_result->tensor_shape().y() != vector_sum_row->tensor_shape().x();
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100122
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100123 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(4, mm_result->dimension(0));
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100124
Gian Marco05288a22017-11-21 10:57:50 +0000125 // Set the arguments to pass at compile time
126 CLBuildOptions build_opts;
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100127 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100128 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(mm_result->dimension(0) % num_elems_processed_per_iteration));
Gian Marco05288a22017-11-21 10:57:50 +0000129
130 // If a_offset == 0, vector_sum_col can be a nullptr
131 if(a_offset != 0)
132 {
Gian Marco05288a22017-11-21 10:57:50 +0000133 build_opts.add_option("-DA_OFFSET=" + support::cpp11::to_string(a_offset));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100134 build_opts.add_option_if(vector_sum_col->tensor_shape().num_dimensions() > 1, "-DSUM_COL_HAS_BATCHES");
Gian Marco05288a22017-11-21 10:57:50 +0000135 }
Gian Marco05288a22017-11-21 10:57:50 +0000136 // If b_offset == 0, vector_sum_row can be a nullptr
Georgios Pinitas358ca202017-12-07 16:47:52 +0000137 build_opts.add_option_if(b_offset != 0, "-DB_OFFSET=" + support::cpp11::to_string(b_offset));
Gian Marco05288a22017-11-21 10:57:50 +0000138 build_opts.add_option("-DK_OFFSET=" + support::cpp11::to_string(a_offset * b_offset * k));
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100139 build_opts.add_option_if(reinterpret_as_3d, "-DHEIGHT_INPUT3D=" + support::cpp11::to_string(mm_result->dimension(1)));
140 build_opts.add_option_if(reinterpret_as_3d, "-DDEPTH_INPUT3D=" + support::cpp11::to_string(mm_result->dimension(2)));
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100141 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
142
143 std::string kernel_name("gemmlowp_offset_contribution");
Gian Marco05288a22017-11-21 10:57:50 +0000144
145 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100146 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000147
Gian Marco05288a22017-11-21 10:57:50 +0000148 // Configure kernel window
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100149 Window win = calculate_max_window(*mm_result, Steps(num_elems_processed_per_iteration));
150 IClKernel::configure_internal(win);
Gian Marco19835e52018-01-30 13:35:54 +0000151
152 // Set config_id for enabling LWS tuning
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100153 _config_id = kernel_name + "_";
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100154 _config_id += support::cpp11::to_string(mm_result->dimension(0));
Gian Marco19835e52018-01-30 13:35:54 +0000155 _config_id += "_";
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100156 _config_id += support::cpp11::to_string(mm_result->dimension(1));
Gian Marco19835e52018-01-30 13:35:54 +0000157 _config_id += "_";
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100158 _config_id += support::cpp11::to_string(mm_result->dimension(2));
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100159
160 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000161}
Gian Marco05288a22017-11-21 10:57:50 +0000162
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100163Status ClGemmLowpOffsetContributionKernel::validate(const ITensorInfo *mm_result, const ITensorInfo *vector_sum_col, const ITensorInfo *vector_sum_row, const ITensorInfo *bias,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000164 int32_t a_offset, int32_t b_offset)
165{
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100166 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(mm_result, vector_sum_col, vector_sum_row, bias, a_offset, b_offset));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000167 return Status{};
Gian Marco05288a22017-11-21 10:57:50 +0000168}
169
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100170void ClGemmLowpOffsetContributionKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Gian Marco05288a22017-11-21 10:57:50 +0000171{
172 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100173 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IClKernel::window(), window);
Gian Marco05288a22017-11-21 10:57:50 +0000174
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100175 const auto vector_sum_col = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_VEC_COL_SUM));
176 const auto vector_sum_row = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_VEC_ROW_SUM));
177 const auto bias = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_BIAS));
178 const auto mm_result = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_SRC_DST));
179
180 Window collapsed = window.collapse_if_possible(IClKernel::window(), Window::DimZ);
Gian Marco05288a22017-11-21 10:57:50 +0000181 Window slice = collapsed.first_slice_window_3D();
182
183 // Set window for vector_sum_col
184 Window win_vector_sum_col = slice;
185 win_vector_sum_col.set(Window::DimY, Window::Dimension(0, 0, 0));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100186 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000187
188 // Set window for vector_sum_row
189 Window win_vector_sum_row = slice;
190 win_vector_sum_row.set(Window::DimX, Window::Dimension(0, 0, 0));
191 win_vector_sum_row.set(Window::DimY, Window::Dimension(0, 0, 0));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100192 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000193
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100194 Window biases_slice = slice;
195 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
196 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
197
Gian Marco05288a22017-11-21 10:57:50 +0000198 do
199 {
200 unsigned int idx = 0;
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100201 add_3D_tensor_argument(idx, mm_result, slice);
202 add_2D_tensor_argument_if((vector_sum_col != nullptr), idx, vector_sum_col, win_vector_sum_col);
203 add_2D_tensor_argument_if((vector_sum_row != nullptr), idx, vector_sum_row, win_vector_sum_row);
204 add_1D_tensor_argument_if((bias != nullptr), idx, bias, biases_slice);
Michalis Spyroue1651a52019-07-11 15:00:49 +0100205
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100206 enqueue(queue, *this, slice, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000207 }
208 while(collapsed.slide_window_slice_3D(slice));
209}
Georgios Pinitas4a578b92021-06-25 12:13:49 +0100210} // namespace kernels
211} // namespace opencl
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100212} // namespace arm_compute