blob: e621323c5ff1c0c3be8840b71c0c13614a689de4 [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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/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"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000032#include "support/StringSupport.h"
Gian Marco05288a22017-11-21 10:57:50 +000033
Gian Marco05288a22017-11-21 10:57:50 +000034namespace arm_compute
35{
Georgios Pinitas358ca202017-12-07 16:47:52 +000036namespace
37{
Gian Marco Iodice4b908652018-10-18 10:21:02 +010038Status 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 +000039 int32_t a_offset, int32_t b_offset)
40{
41 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(mm_result, 1, DataType::S32);
42
Gian Marco Iodice4b908652018-10-18 10:21:02 +010043 if(bias != nullptr)
44 {
45 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
46 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
47 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != bias->dimension(0));
48 }
49
Georgios Pinitas358ca202017-12-07 16:47:52 +000050 // If a_offset == 0, vector_sum_col can be a nullptr
51 if(a_offset != 0)
52 {
53 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_col, 1, DataType::S32);
54 ARM_COMPUTE_RETURN_ERROR_ON(vector_sum_col->dimension(0) != mm_result->dimension(0));
55 }
56
57 // If b_offset == 0, vector_sum_row can be a nullptr
58 if(b_offset != 0)
59 {
60 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_row, 1, DataType::S32);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010061
62 // Check if input is a 3D reinterpretation
Gian Marco Iodice4b908652018-10-18 10:21:02 +010063 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 +010064
65 // Validate input
66 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 +010067 ARM_COMPUTE_RETURN_ERROR_ON(!reinterpret_as_3d && vector_sum_row->dimension(0) != mm_result->dimension(1));
Georgios Pinitas358ca202017-12-07 16:47:52 +000068
69 TensorShape output_shape = mm_result->tensor_shape();
70 if(output_shape.num_dimensions() > 1)
71 {
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010072 const unsigned int output_batch_idx = reinterpret_as_3d ? 3 : 2;
73
Georgios Pinitas358ca202017-12-07 16:47:52 +000074 TensorShape vector_sum_row_shape = vector_sum_row->tensor_shape();
75 vector_sum_row_shape.collapse_from(1);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010076 output_shape.collapse_from(output_batch_idx);
Georgios Pinitas358ca202017-12-07 16:47:52 +000077
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010078 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_row_shape[1] != output_shape[output_batch_idx],
Georgios Pinitas358ca202017-12-07 16:47:52 +000079 "mm_result tensor must have the same number of batches of output tensor");
80
81 if(a_offset != 0)
82 {
83 TensorShape vector_sum_col_shape = vector_sum_col->tensor_shape();
84 vector_sum_col_shape.collapse_from(1);
85
86 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_col_shape[1] != 1 && vector_sum_col_shape[1] != vector_sum_row_shape[1],
87 "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");
88 }
89 }
90 }
91
92 return Status{};
93}
Georgios Pinitas358ca202017-12-07 16:47:52 +000094} // namespace
95
Gian Marco05288a22017-11-21 10:57:50 +000096CLGEMMLowpOffsetContributionKernel::CLGEMMLowpOffsetContributionKernel()
Gian Marco Iodice4b908652018-10-18 10:21:02 +010097 : _vector_sum_col(nullptr), _vector_sum_row(nullptr), _mm_result(nullptr), _bias(nullptr)
Gian Marco05288a22017-11-21 10:57:50 +000098{
99}
100
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100101void CLGEMMLowpOffsetContributionKernel::configure(ICLTensor *mm_result, const ICLTensor *vector_sum_col, const ICLTensor *vector_sum_row, const ICLTensor *bias, int32_t k, int32_t a_offset,
102 int32_t b_offset)
Gian Marco05288a22017-11-21 10:57:50 +0000103{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100104 configure(CLKernelLibrary::get().get_compile_context(), mm_result, vector_sum_col, vector_sum_row, bias, k, a_offset, b_offset);
105}
106
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100107void CLGEMMLowpOffsetContributionKernel::configure(const CLCompileContext &compile_context, ICLTensor *mm_result, const ICLTensor *vector_sum_col, const ICLTensor *vector_sum_row,
108 const ICLTensor *bias,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100109 int32_t k, int32_t a_offset,
110 int32_t b_offset)
111{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000112 // Perform validate step
113 ARM_COMPUTE_ERROR_ON_NULLPTR(mm_result);
114 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(mm_result->info(),
115 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
116 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100117 bias != nullptr ? bias->info() : nullptr,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000118 a_offset, b_offset)); // NOLINT
119
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100120 auto padding_info = get_padding_info({ mm_result, vector_sum_col, vector_sum_row, bias });
121
Georgios Pinitas358ca202017-12-07 16:47:52 +0000122 _vector_sum_col = vector_sum_col;
123 _vector_sum_row = vector_sum_row;
124 _mm_result = mm_result;
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100125 _bias = bias;
Gian Marco05288a22017-11-21 10:57:50 +0000126
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100127 // Check if input is a 3D reinterpretation
128 const bool reinterpret_as_3d = vector_sum_row != nullptr
129 && mm_result->info()->num_dimensions() > 1
130 && mm_result->info()->tensor_shape().y() != vector_sum_row->info()->tensor_shape().x();
131
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100132 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(4, mm_result->info()->dimension(0));
133
Gian Marco05288a22017-11-21 10:57:50 +0000134 // Set the arguments to pass at compile time
135 CLBuildOptions build_opts;
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100136 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
137 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(mm_result->info()->dimension(0) % num_elems_processed_per_iteration));
Gian Marco05288a22017-11-21 10:57:50 +0000138
139 // If a_offset == 0, vector_sum_col can be a nullptr
140 if(a_offset != 0)
141 {
Gian Marco05288a22017-11-21 10:57:50 +0000142 build_opts.add_option("-DA_OFFSET=" + support::cpp11::to_string(a_offset));
Chunosov5124be52017-11-22 20:42:13 +0700143 build_opts.add_option_if(vector_sum_col->info()->tensor_shape().num_dimensions() > 1, "-DSUM_COL_HAS_BATCHES");
Gian Marco05288a22017-11-21 10:57:50 +0000144 }
Gian Marco05288a22017-11-21 10:57:50 +0000145 // If b_offset == 0, vector_sum_row can be a nullptr
Georgios Pinitas358ca202017-12-07 16:47:52 +0000146 build_opts.add_option_if(b_offset != 0, "-DB_OFFSET=" + support::cpp11::to_string(b_offset));
Gian Marco05288a22017-11-21 10:57:50 +0000147 build_opts.add_option("-DK_OFFSET=" + support::cpp11::to_string(a_offset * b_offset * k));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100148 build_opts.add_option_if(reinterpret_as_3d, "-DHEIGHT_INPUT3D=" + support::cpp11::to_string(mm_result->info()->dimension(1)));
149 build_opts.add_option_if(reinterpret_as_3d, "-DDEPTH_INPUT3D=" + support::cpp11::to_string(mm_result->info()->dimension(2)));
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100150 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
151
152 std::string kernel_name("gemmlowp_offset_contribution");
Gian Marco05288a22017-11-21 10:57:50 +0000153
154 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100155 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000156
Gian Marco05288a22017-11-21 10:57:50 +0000157 // Configure kernel window
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100158 Window win = calculate_max_window(*mm_result->info(), Steps(num_elems_processed_per_iteration));
159 ICLKernel::configure_internal(win);
Gian Marco19835e52018-01-30 13:35:54 +0000160
161 // Set config_id for enabling LWS tuning
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100162 _config_id = kernel_name + "_";
Gian Marco19835e52018-01-30 13:35:54 +0000163 _config_id += support::cpp11::to_string(mm_result->info()->dimension(0));
164 _config_id += "_";
165 _config_id += support::cpp11::to_string(mm_result->info()->dimension(1));
166 _config_id += "_";
167 _config_id += support::cpp11::to_string(mm_result->info()->dimension(2));
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100168
169 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000170}
Gian Marco05288a22017-11-21 10:57:50 +0000171
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100172Status 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 +0000173 int32_t a_offset, int32_t b_offset)
174{
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100175 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 +0000176 return Status{};
Gian Marco05288a22017-11-21 10:57:50 +0000177}
178
179void CLGEMMLowpOffsetContributionKernel::run(const Window &window, cl::CommandQueue &queue)
180{
181 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
182 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
183
184 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
185 Window slice = collapsed.first_slice_window_3D();
186
187 // Set window for vector_sum_col
188 Window win_vector_sum_col = slice;
189 win_vector_sum_col.set(Window::DimY, Window::Dimension(0, 0, 0));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100190 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000191
192 // Set window for vector_sum_row
193 Window win_vector_sum_row = slice;
194 win_vector_sum_row.set(Window::DimX, Window::Dimension(0, 0, 0));
195 win_vector_sum_row.set(Window::DimY, Window::Dimension(0, 0, 0));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100196 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000197
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100198 Window biases_slice = slice;
199 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
200 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
201
Gian Marco05288a22017-11-21 10:57:50 +0000202 do
203 {
204 unsigned int idx = 0;
205 add_3D_tensor_argument(idx, _mm_result, slice);
Michalis Spyroue1651a52019-07-11 15:00:49 +0100206 add_2D_tensor_argument_if((_vector_sum_col != nullptr), idx, _vector_sum_col, win_vector_sum_col);
207 add_2D_tensor_argument_if((_vector_sum_row != nullptr), idx, _vector_sum_row, win_vector_sum_row);
208 add_1D_tensor_argument_if((_bias != nullptr), idx, _bias, biases_slice);
209
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100210 enqueue(queue, *this, slice, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000211 }
212 while(collapsed.slide_window_slice_3D(slice));
213}
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100214} // namespace arm_compute