blob: aa4eea60cac6192474f80401d1877d20bb4345bb [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
Gian Marco05288a22017-11-21 10:57:50 +000035namespace arm_compute
36{
Georgios Pinitas358ca202017-12-07 16:47:52 +000037namespace
38{
Gian Marco Iodice4b908652018-10-18 10:21:02 +010039Status 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 +000040 int32_t a_offset, int32_t b_offset)
41{
42 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(mm_result, 1, DataType::S32);
43
Gian Marco Iodice4b908652018-10-18 10:21:02 +010044 if(bias != nullptr)
45 {
46 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(bias, 1, DataType::S32);
47 ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1);
48 ARM_COMPUTE_RETURN_ERROR_ON(mm_result->dimension(0) != bias->dimension(0));
49 }
50
Georgios Pinitas358ca202017-12-07 16:47:52 +000051 // If a_offset == 0, vector_sum_col can be a nullptr
52 if(a_offset != 0)
53 {
54 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_col, 1, DataType::S32);
55 ARM_COMPUTE_RETURN_ERROR_ON(vector_sum_col->dimension(0) != mm_result->dimension(0));
56 }
57
58 // If b_offset == 0, vector_sum_row can be a nullptr
59 if(b_offset != 0)
60 {
61 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_row, 1, DataType::S32);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010062
63 // Check if input is a 3D reinterpretation
Gian Marco Iodice4b908652018-10-18 10:21:02 +010064 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 +010065
66 // Validate input
67 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 +010068 ARM_COMPUTE_RETURN_ERROR_ON(!reinterpret_as_3d && vector_sum_row->dimension(0) != mm_result->dimension(1));
Georgios Pinitas358ca202017-12-07 16:47:52 +000069
70 TensorShape output_shape = mm_result->tensor_shape();
71 if(output_shape.num_dimensions() > 1)
72 {
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010073 const unsigned int output_batch_idx = reinterpret_as_3d ? 3 : 2;
74
Georgios Pinitas358ca202017-12-07 16:47:52 +000075 TensorShape vector_sum_row_shape = vector_sum_row->tensor_shape();
76 vector_sum_row_shape.collapse_from(1);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010077 output_shape.collapse_from(output_batch_idx);
Georgios Pinitas358ca202017-12-07 16:47:52 +000078
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010079 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_row_shape[1] != output_shape[output_batch_idx],
Georgios Pinitas358ca202017-12-07 16:47:52 +000080 "mm_result tensor must have the same number of batches of output tensor");
81
82 if(a_offset != 0)
83 {
84 TensorShape vector_sum_col_shape = vector_sum_col->tensor_shape();
85 vector_sum_col_shape.collapse_from(1);
86
87 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_col_shape[1] != 1 && vector_sum_col_shape[1] != vector_sum_row_shape[1],
88 "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");
89 }
90 }
91 }
92
93 return Status{};
94}
Georgios Pinitas358ca202017-12-07 16:47:52 +000095} // namespace
96
Gian Marco05288a22017-11-21 10:57:50 +000097CLGEMMLowpOffsetContributionKernel::CLGEMMLowpOffsetContributionKernel()
Gian Marco Iodice4b908652018-10-18 10:21:02 +010098 : _vector_sum_col(nullptr), _vector_sum_row(nullptr), _mm_result(nullptr), _bias(nullptr)
Gian Marco05288a22017-11-21 10:57:50 +000099{
100}
101
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100102void 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,
103 int32_t b_offset)
Gian Marco05288a22017-11-21 10:57:50 +0000104{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100105 configure(CLKernelLibrary::get().get_compile_context(), mm_result, vector_sum_col, vector_sum_row, bias, k, a_offset, b_offset);
106}
107
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +0100108void CLGEMMLowpOffsetContributionKernel::configure(const CLCompileContext &compile_context, ICLTensor *mm_result, const ICLTensor *vector_sum_col, const ICLTensor *vector_sum_row,
109 const ICLTensor *bias,
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100110 int32_t k, int32_t a_offset,
111 int32_t b_offset)
112{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000113 // Perform validate step
114 ARM_COMPUTE_ERROR_ON_NULLPTR(mm_result);
115 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(mm_result->info(),
116 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
117 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100118 bias != nullptr ? bias->info() : nullptr,
Georgios Pinitas358ca202017-12-07 16:47:52 +0000119 a_offset, b_offset)); // NOLINT
120
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100121 auto padding_info = get_padding_info({ mm_result, vector_sum_col, vector_sum_row, bias });
122
Georgios Pinitas358ca202017-12-07 16:47:52 +0000123 _vector_sum_col = vector_sum_col;
124 _vector_sum_row = vector_sum_row;
125 _mm_result = mm_result;
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100126 _bias = bias;
Gian Marco05288a22017-11-21 10:57:50 +0000127
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100128 // Check if input is a 3D reinterpretation
129 const bool reinterpret_as_3d = vector_sum_row != nullptr
130 && mm_result->info()->num_dimensions() > 1
131 && mm_result->info()->tensor_shape().y() != vector_sum_row->info()->tensor_shape().x();
132
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100133 const unsigned int num_elems_processed_per_iteration = adjust_vec_size(4, mm_result->info()->dimension(0));
134
Gian Marco05288a22017-11-21 10:57:50 +0000135 // Set the arguments to pass at compile time
136 CLBuildOptions build_opts;
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100137 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(num_elems_processed_per_iteration));
138 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 +0000139
140 // If a_offset == 0, vector_sum_col can be a nullptr
141 if(a_offset != 0)
142 {
Gian Marco05288a22017-11-21 10:57:50 +0000143 build_opts.add_option("-DA_OFFSET=" + support::cpp11::to_string(a_offset));
Chunosov5124be52017-11-22 20:42:13 +0700144 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 +0000145 }
Gian Marco05288a22017-11-21 10:57:50 +0000146 // If b_offset == 0, vector_sum_row can be a nullptr
Georgios Pinitas358ca202017-12-07 16:47:52 +0000147 build_opts.add_option_if(b_offset != 0, "-DB_OFFSET=" + support::cpp11::to_string(b_offset));
Gian Marco05288a22017-11-21 10:57:50 +0000148 build_opts.add_option("-DK_OFFSET=" + support::cpp11::to_string(a_offset * b_offset * k));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100149 build_opts.add_option_if(reinterpret_as_3d, "-DHEIGHT_INPUT3D=" + support::cpp11::to_string(mm_result->info()->dimension(1)));
150 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 +0100151 build_opts.add_option_if(bias != nullptr, "-DADD_BIAS");
152
153 std::string kernel_name("gemmlowp_offset_contribution");
Gian Marco05288a22017-11-21 10:57:50 +0000154
155 // Create kernel
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100156 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco05288a22017-11-21 10:57:50 +0000157
Gian Marco05288a22017-11-21 10:57:50 +0000158 // Configure kernel window
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100159 Window win = calculate_max_window(*mm_result->info(), Steps(num_elems_processed_per_iteration));
160 ICLKernel::configure_internal(win);
Gian Marco19835e52018-01-30 13:35:54 +0000161
162 // Set config_id for enabling LWS tuning
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100163 _config_id = kernel_name + "_";
Gian Marco19835e52018-01-30 13:35:54 +0000164 _config_id += support::cpp11::to_string(mm_result->info()->dimension(0));
165 _config_id += "_";
166 _config_id += support::cpp11::to_string(mm_result->info()->dimension(1));
167 _config_id += "_";
168 _config_id += support::cpp11::to_string(mm_result->info()->dimension(2));
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100169
170 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000171}
Gian Marco05288a22017-11-21 10:57:50 +0000172
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100173Status 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 +0000174 int32_t a_offset, int32_t b_offset)
175{
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100176 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 +0000177 return Status{};
Gian Marco05288a22017-11-21 10:57:50 +0000178}
179
180void CLGEMMLowpOffsetContributionKernel::run(const Window &window, cl::CommandQueue &queue)
181{
182 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
183 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
184
185 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
186 Window slice = collapsed.first_slice_window_3D();
187
188 // Set window for vector_sum_col
189 Window win_vector_sum_col = slice;
190 win_vector_sum_col.set(Window::DimY, Window::Dimension(0, 0, 0));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100191 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000192
193 // Set window for vector_sum_row
194 Window win_vector_sum_row = slice;
195 win_vector_sum_row.set(Window::DimX, Window::Dimension(0, 0, 0));
196 win_vector_sum_row.set(Window::DimY, Window::Dimension(0, 0, 0));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100197 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000198
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100199 Window biases_slice = slice;
200 biases_slice.set(Window::DimY, Window::Dimension(0, 1, 1));
201 biases_slice.set(Window::DimZ, Window::Dimension(0, 1, 1));
202
Gian Marco05288a22017-11-21 10:57:50 +0000203 do
204 {
205 unsigned int idx = 0;
206 add_3D_tensor_argument(idx, _mm_result, slice);
Michalis Spyroue1651a52019-07-11 15:00:49 +0100207 add_2D_tensor_argument_if((_vector_sum_col != nullptr), idx, _vector_sum_col, win_vector_sum_col);
208 add_2D_tensor_argument_if((_vector_sum_row != nullptr), idx, _vector_sum_row, win_vector_sum_row);
209 add_1D_tensor_argument_if((_bias != nullptr), idx, _bias, biases_slice);
210
Gian Marco Iodice4b908652018-10-18 10:21:02 +0100211 enqueue(queue, *this, slice, lws_hint());
Gian Marco05288a22017-11-21 10:57:50 +0000212 }
213 while(collapsed.slide_window_slice_3D(slice));
214}
Michele Di Giorgio0bfe39f2020-10-21 11:36:21 +0100215} // namespace arm_compute