blob: 7ab96e5fa9fc4539b8060ee7b9162e71860efffc [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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 */
24#include "arm_compute/core/CL/kernels/CLGEMMLowpOffsetContributionKernel.h"
25
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/AccessWindowStatic.h"
32#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000033#include "support/StringSupport.h"
Gian Marco05288a22017-11-21 10:57:50 +000034
35#include <cstddef>
36#include <cstdint>
37
38using namespace arm_compute;
39
40namespace arm_compute
41{
42class Coordinates;
43} // namespace arm_compute
44
Georgios Pinitas358ca202017-12-07 16:47:52 +000045namespace
46{
Gian Marco Iodice4b908652018-10-18 10:21:02 +010047Status 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 +000048 int32_t a_offset, int32_t b_offset)
49{
50 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(mm_result, 1, DataType::S32);
51
Gian Marco Iodice4b908652018-10-18 10:21:02 +010052 if(bias != nullptr)
53 {
54 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
55 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
56 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != bias->dimension(0));
57 }
58
Georgios Pinitas358ca202017-12-07 16:47:52 +000059 // If a_offset == 0, vector_sum_col can be a nullptr
60 if(a_offset != 0)
61 {
62 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_col, 1, DataType::S32);
63 ARM_COMPUTE_RETURN_ERROR_ON(vector_sum_col->dimension(0) != mm_result->dimension(0));
64 }
65
66 // If b_offset == 0, vector_sum_row can be a nullptr
67 if(b_offset != 0)
68 {
69 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_row, 1, DataType::S32);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010070
71 // Check if input is a 3D reinterpretation
Gian Marco Iodice4b908652018-10-18 10:21:02 +010072 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 +010073
74 // Validate input
75 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 +010076 ARM_COMPUTE_RETURN_ERROR_ON(!reinterpret_as_3d && vector_sum_row->dimension(0) != mm_result->dimension(1));
Georgios Pinitas358ca202017-12-07 16:47:52 +000077
78 TensorShape output_shape = mm_result->tensor_shape();
79 if(output_shape.num_dimensions() > 1)
80 {
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010081 const unsigned int output_batch_idx = reinterpret_as_3d ? 3 : 2;
82
Georgios Pinitas358ca202017-12-07 16:47:52 +000083 TensorShape vector_sum_row_shape = vector_sum_row->tensor_shape();
84 vector_sum_row_shape.collapse_from(1);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010085 output_shape.collapse_from(output_batch_idx);
Georgios Pinitas358ca202017-12-07 16:47:52 +000086
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010087 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_row_shape[1] != output_shape[output_batch_idx],
Georgios Pinitas358ca202017-12-07 16:47:52 +000088 "mm_result tensor must have the same number of batches of output tensor");
89
90 if(a_offset != 0)
91 {
92 TensorShape vector_sum_col_shape = vector_sum_col->tensor_shape();
93 vector_sum_col_shape.collapse_from(1);
94
95 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_col_shape[1] != 1 && vector_sum_col_shape[1] != vector_sum_row_shape[1],
96 "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");
97 }
98 }
99 }
100
101 return Status{};
102}
103
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100104std::pair<Status, Window> validate_and_configure_window(ITensorInfo *mm_result, ITensorInfo *vector_sum_col, ITensorInfo *vector_sum_row, ITensorInfo *bias,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000105 int32_t a_offset, int32_t b_offset)
106{
Gian Marco19835e52018-01-30 13:35:54 +0000107 constexpr unsigned int num_elems_processed_per_iteration = 4;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000108 bool window_changed = false;
109
110 // Configure kernel window
111 Window win = calculate_max_window(*mm_result, Steps(num_elems_processed_per_iteration));
112
113 AccessWindowHorizontal mm_result_access(mm_result, 0, num_elems_processed_per_iteration);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100114 window_changed = window_changed || update_window_and_padding(win, mm_result_access);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000115
116 if(a_offset != 0)
117 {
118 AccessWindowHorizontal vector_sum_col_access(vector_sum_col, 0, num_elems_processed_per_iteration);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100119 window_changed = window_changed || update_window_and_padding(win, vector_sum_col_access);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000120 }
121 if(b_offset != 0)
122 {
123 AccessWindowStatic vector_sum_row_access(vector_sum_row, 0, 0, vector_sum_row->dimension(0), 0); // NOLINT
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100124 window_changed = window_changed || update_window_and_padding(win, vector_sum_row_access);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000125 }
126
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100127 if(bias != nullptr)
128 {
129 AccessWindowStatic bias_access(bias, 0, 0, ceil_to_multiple(bias->dimension(0), num_elems_processed_per_iteration), bias->tensor_shape()[1]);
130 window_changed = window_changed || update_window_and_padding(win, bias_access);
131 }
132
Georgios Pinitas358ca202017-12-07 16:47:52 +0000133 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
134 return std::make_pair(err, win);
135}
136} // namespace
137
Gian Marco05288a22017-11-21 10:57:50 +0000138CLGEMMLowpOffsetContributionKernel::CLGEMMLowpOffsetContributionKernel()
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100139 : _vector_sum_col(nullptr), _vector_sum_row(nullptr), _mm_result(nullptr), _bias(nullptr)
Gian Marco05288a22017-11-21 10:57:50 +0000140{
141}
142
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100143void 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,
144 int32_t b_offset)
Gian Marco05288a22017-11-21 10:57:50 +0000145{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100146 configure(CLKernelLibrary::get().get_compile_context(), mm_result, vector_sum_col, vector_sum_row, bias, k, a_offset, b_offset);
147}
148
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100149void CLGEMMLowpOffsetContributionKernel::configure(const CLCompileContext &compile_context, ICLTensor *mm_result, const ICLTensor *vector_sum_col, const ICLTensor *vector_sum_row,
150 const ICLTensor *bias,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100151 int32_t k, int32_t a_offset,
152 int32_t b_offset)
153{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000154 // Perform validate step
155 ARM_COMPUTE_ERROR_ON_NULLPTR(mm_result);
156 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(mm_result->info(),
157 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
158 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100159 bias != nullptr ? bias->info() : nullptr,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000160 a_offset, b_offset)); // NOLINT
161
162 _vector_sum_col = vector_sum_col;
163 _vector_sum_row = vector_sum_row;
164 _mm_result = mm_result;
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100165 _bias = bias;
Gian Marco05288a22017-11-21 10:57:50 +0000166
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100167 // Check if input is a 3D reinterpretation
168 const bool reinterpret_as_3d = vector_sum_row != nullptr
169 && mm_result->info()->num_dimensions() > 1
170 && mm_result->info()->tensor_shape().y() != vector_sum_row->info()->tensor_shape().x();
171
Gian Marco05288a22017-11-21 10:57:50 +0000172 // Set the arguments to pass at compile time
173 CLBuildOptions build_opts;
174
175 // If a_offset == 0, vector_sum_col can be a nullptr
176 if(a_offset != 0)
177 {
Gian Marco05288a22017-11-21 10:57:50 +0000178 build_opts.add_option("-DA_OFFSET=" + support::cpp11::to_string(a_offset));
Chunosov5124be52017-11-22 20:42:13 +0700179 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 +0000180 }
Gian Marco05288a22017-11-21 10:57:50 +0000181 // If b_offset == 0, vector_sum_row can be a nullptr
Georgios Pinitas358ca202017-12-07 16:47:52 +0000182 build_opts.add_option_if(b_offset != 0, "-DB_OFFSET=" + support::cpp11::to_string(b_offset));
Gian Marco05288a22017-11-21 10:57:50 +0000183 build_opts.add_option("-DK_OFFSET=" + support::cpp11::to_string(a_offset * b_offset * k));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100184 build_opts.add_option_if(reinterpret_as_3d, "-DHEIGHT_INPUT3D=" + support::cpp11::to_string(mm_result->info()->dimension(1)));
185 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 +0100186 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
187
188 std::string kernel_name("gemmlowp_offset_contribution");
Gian Marco05288a22017-11-21 10:57:50 +0000189
190 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100191 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000192
Gian Marco05288a22017-11-21 10:57:50 +0000193 // Configure kernel window
Georgios Pinitas358ca202017-12-07 16:47:52 +0000194 auto win_config = validate_and_configure_window(mm_result->info(),
195 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
196 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100197 bias != nullptr ? bias->info() : nullptr,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000198 a_offset, b_offset); // NOLINT
199 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100200 ICLKernel::configure_internal(win_config.second);
Gian Marco19835e52018-01-30 13:35:54 +0000201
202 // Set config_id for enabling LWS tuning
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100203 _config_id = kernel_name + "_";
Gian Marco19835e52018-01-30 13:35:54 +0000204 _config_id += support::cpp11::to_string(mm_result->info()->dimension(0));
205 _config_id += "_";
206 _config_id += support::cpp11::to_string(mm_result->info()->dimension(1));
207 _config_id += "_";
208 _config_id += support::cpp11::to_string(mm_result->info()->dimension(2));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000209}
Gian Marco05288a22017-11-21 10:57:50 +0000210
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100211Status 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 +0000212 int32_t a_offset, int32_t b_offset)
213{
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100214 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 +0000215 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(mm_result->clone().get(),
216 vector_sum_col != nullptr ? vector_sum_col->clone().get() : nullptr,
217 vector_sum_row != nullptr ? vector_sum_row->clone().get() : nullptr,
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100218 bias != nullptr ? bias->clone().get() : nullptr,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000219 a_offset, b_offset)
220 .first); // NOLINT
Gian Marco05288a22017-11-21 10:57:50 +0000221
Georgios Pinitas358ca202017-12-07 16:47:52 +0000222 return Status{};
Gian Marco05288a22017-11-21 10:57:50 +0000223}
224
225void CLGEMMLowpOffsetContributionKernel::run(const Window &window, cl::CommandQueue &queue)
226{
227 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
228 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
229
230 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
231 Window slice = collapsed.first_slice_window_3D();
232
233 // Set window for vector_sum_col
234 Window win_vector_sum_col = slice;
235 win_vector_sum_col.set(Window::DimY, Window::Dimension(0, 0, 0));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100236 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000237
238 // Set window for vector_sum_row
239 Window win_vector_sum_row = slice;
240 win_vector_sum_row.set(Window::DimX, Window::Dimension(0, 0, 0));
241 win_vector_sum_row.set(Window::DimY, Window::Dimension(0, 0, 0));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100242 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000243
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100244 Window biases_slice = slice;
245 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
246 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
247
Gian Marco05288a22017-11-21 10:57:50 +0000248 do
249 {
250 unsigned int idx = 0;
251 add_3D_tensor_argument(idx, _mm_result, slice);
Michalis Spyroue1651a52019-07-11 15:00:49 +0100252 add_2D_tensor_argument_if((_vector_sum_col != nullptr), idx, _vector_sum_col, win_vector_sum_col);
253 add_2D_tensor_argument_if((_vector_sum_row != nullptr), idx, _vector_sum_row, win_vector_sum_row);
254 add_1D_tensor_argument_if((_bias != nullptr), idx, _bias, biases_slice);
255
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100256 enqueue(queue, *this, slice, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000257 }
258 while(collapsed.slide_window_slice_3D(slice));
259}