blob: 3888353ee75c0006babfb840def2e136f78c1c0b [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Gian Marco19835e52018-01-30 13:35:54 +00002 * Copyright (c) 2017-2018 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
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/ICLTensor.h"
28#include "arm_compute/core/Error.h"
29#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Types.h"
32#include "arm_compute/core/Utils.h"
33#include "arm_compute/core/Validate.h"
34#include "arm_compute/core/Window.h"
35#include "support/ToolchainSupport.h"
36
37#include <cstddef>
38#include <cstdint>
39
40using namespace arm_compute;
41
42namespace arm_compute
43{
44class Coordinates;
45} // namespace arm_compute
46
Georgios Pinitas358ca202017-12-07 16:47:52 +000047namespace
48{
49Status validate_arguments(const ITensorInfo *mm_result, const ITensorInfo *vector_sum_col, const ITensorInfo *vector_sum_row,
50 int32_t a_offset, int32_t b_offset)
51{
52 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(mm_result, 1, DataType::S32);
53
54 // If a_offset == 0, vector_sum_col can be a nullptr
55 if(a_offset != 0)
56 {
57 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_col, 1, DataType::S32);
58 ARM_COMPUTE_RETURN_ERROR_ON(vector_sum_col->dimension(0) != mm_result->dimension(0));
59 }
60
61 // If b_offset == 0, vector_sum_row can be a nullptr
62 if(b_offset != 0)
63 {
64 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(vector_sum_row, 1, DataType::S32);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010065
66 // Check if input is a 3D reinterpretation
67 const bool reinterpret_as_3d = vector_sum_row != nullptr && mm_result->num_dimensions() > 1 && mm_result->tensor_shape().y() != vector_sum_row->tensor_shape().x();
68
69 // Validate input
70 ARM_COMPUTE_RETURN_ERROR_ON(reinterpret_as_3d && vector_sum_row->dimension(0) != (mm_result->dimension(1) * mm_result->dimension(2)));
71 ARM_COMPUTE_RETURN_ERROR_ON(!reinterpret_as_3d && vector_sum_row != nullptr && vector_sum_row->dimension(0) != mm_result->dimension(1));
Georgios Pinitas358ca202017-12-07 16:47:52 +000072
73 TensorShape output_shape = mm_result->tensor_shape();
74 if(output_shape.num_dimensions() > 1)
75 {
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010076 const unsigned int output_batch_idx = reinterpret_as_3d ? 3 : 2;
77
Georgios Pinitas358ca202017-12-07 16:47:52 +000078 TensorShape vector_sum_row_shape = vector_sum_row->tensor_shape();
79 vector_sum_row_shape.collapse_from(1);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010080 output_shape.collapse_from(output_batch_idx);
Georgios Pinitas358ca202017-12-07 16:47:52 +000081
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +010082 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_row_shape[1] != output_shape[output_batch_idx],
Georgios Pinitas358ca202017-12-07 16:47:52 +000083 "mm_result tensor must have the same number of batches of output tensor");
84
85 if(a_offset != 0)
86 {
87 TensorShape vector_sum_col_shape = vector_sum_col->tensor_shape();
88 vector_sum_col_shape.collapse_from(1);
89
90 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_col_shape[1] != 1 && vector_sum_col_shape[1] != vector_sum_row_shape[1],
91 "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");
92 }
93 }
94 }
95
96 return Status{};
97}
98
99std::pair<Status, Window> validate_and_configure_window(ITensorInfo *mm_result, ITensorInfo *vector_sum_col, ITensorInfo *vector_sum_row,
100 int32_t a_offset, int32_t b_offset)
101{
Gian Marco19835e52018-01-30 13:35:54 +0000102 constexpr unsigned int num_elems_processed_per_iteration = 4;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000103 bool window_changed = false;
104
105 // Configure kernel window
106 Window win = calculate_max_window(*mm_result, Steps(num_elems_processed_per_iteration));
107
108 AccessWindowHorizontal mm_result_access(mm_result, 0, num_elems_processed_per_iteration);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100109 window_changed = window_changed || update_window_and_padding(win, mm_result_access);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000110
111 if(a_offset != 0)
112 {
113 AccessWindowHorizontal vector_sum_col_access(vector_sum_col, 0, num_elems_processed_per_iteration);
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100114 window_changed = window_changed || update_window_and_padding(win, vector_sum_col_access);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000115 }
116 if(b_offset != 0)
117 {
118 AccessWindowStatic vector_sum_row_access(vector_sum_row, 0, 0, vector_sum_row->dimension(0), 0); // NOLINT
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100119 window_changed = window_changed || update_window_and_padding(win, vector_sum_row_access);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000120 }
121
122 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
123 return std::make_pair(err, win);
124}
125} // namespace
126
Gian Marco05288a22017-11-21 10:57:50 +0000127CLGEMMLowpOffsetContributionKernel::CLGEMMLowpOffsetContributionKernel()
128 : _vector_sum_col(nullptr), _vector_sum_row(nullptr), _mm_result(nullptr)
129{
130}
131
132void CLGEMMLowpOffsetContributionKernel::configure(ICLTensor *mm_result, const ICLTensor *vector_sum_col, const ICLTensor *vector_sum_row, int32_t k, int32_t a_offset, int32_t b_offset)
133{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000134 // Perform validate step
135 ARM_COMPUTE_ERROR_ON_NULLPTR(mm_result);
136 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(mm_result->info(),
137 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
138 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
139 a_offset, b_offset)); // NOLINT
140
141 _vector_sum_col = vector_sum_col;
142 _vector_sum_row = vector_sum_row;
143 _mm_result = mm_result;
Gian Marco05288a22017-11-21 10:57:50 +0000144
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100145 // Check if input is a 3D reinterpretation
146 const bool reinterpret_as_3d = vector_sum_row != nullptr
147 && mm_result->info()->num_dimensions() > 1
148 && mm_result->info()->tensor_shape().y() != vector_sum_row->info()->tensor_shape().x();
149
Gian Marco05288a22017-11-21 10:57:50 +0000150 // Set the arguments to pass at compile time
151 CLBuildOptions build_opts;
152
153 // If a_offset == 0, vector_sum_col can be a nullptr
154 if(a_offset != 0)
155 {
Gian Marco05288a22017-11-21 10:57:50 +0000156 build_opts.add_option("-DA_OFFSET=" + support::cpp11::to_string(a_offset));
Chunosov5124be52017-11-22 20:42:13 +0700157 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 +0000158 }
Gian Marco05288a22017-11-21 10:57:50 +0000159 // If b_offset == 0, vector_sum_row can be a nullptr
Georgios Pinitas358ca202017-12-07 16:47:52 +0000160 build_opts.add_option_if(b_offset != 0, "-DB_OFFSET=" + support::cpp11::to_string(b_offset));
Gian Marco05288a22017-11-21 10:57:50 +0000161 build_opts.add_option("-DK_OFFSET=" + support::cpp11::to_string(a_offset * b_offset * k));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100162 build_opts.add_option_if(reinterpret_as_3d, "-DHEIGHT_INPUT3D=" + support::cpp11::to_string(mm_result->info()->dimension(1)));
163 build_opts.add_option_if(reinterpret_as_3d, "-DDEPTH_INPUT3D=" + support::cpp11::to_string(mm_result->info()->dimension(2)));
Gian Marco05288a22017-11-21 10:57:50 +0000164
165 // Create kernel
166 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gemmlowp_offset_contribution", build_opts.options()));
167
Gian Marco05288a22017-11-21 10:57:50 +0000168 // Configure kernel window
Georgios Pinitas358ca202017-12-07 16:47:52 +0000169 auto win_config = validate_and_configure_window(mm_result->info(),
170 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
171 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
172 a_offset, b_offset); // NOLINT
173 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100174 ICLKernel::configure_internal(win_config.second);
Gian Marco19835e52018-01-30 13:35:54 +0000175
176 // Set config_id for enabling LWS tuning
177 _config_id = "gemmlowp_offset_contribution_";
178 _config_id += support::cpp11::to_string(mm_result->info()->dimension(0));
179 _config_id += "_";
180 _config_id += support::cpp11::to_string(mm_result->info()->dimension(1));
181 _config_id += "_";
182 _config_id += support::cpp11::to_string(mm_result->info()->dimension(2));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000183}
Gian Marco05288a22017-11-21 10:57:50 +0000184
Georgios Pinitas358ca202017-12-07 16:47:52 +0000185Status CLGEMMLowpOffsetContributionKernel::validate(const ITensorInfo *mm_result, const ITensorInfo *vector_sum_col, const ITensorInfo *vector_sum_row,
186 int32_t a_offset, int32_t b_offset)
187{
188 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(mm_result, vector_sum_col, vector_sum_row, a_offset, b_offset));
189 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(mm_result->clone().get(),
190 vector_sum_col != nullptr ? vector_sum_col->clone().get() : nullptr,
191 vector_sum_row != nullptr ? vector_sum_row->clone().get() : nullptr,
192 a_offset, b_offset)
193 .first); // NOLINT
Gian Marco05288a22017-11-21 10:57:50 +0000194
Georgios Pinitas358ca202017-12-07 16:47:52 +0000195 return Status{};
Gian Marco05288a22017-11-21 10:57:50 +0000196}
197
198void CLGEMMLowpOffsetContributionKernel::run(const Window &window, cl::CommandQueue &queue)
199{
200 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
201 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
202
203 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
204 Window slice = collapsed.first_slice_window_3D();
205
206 // Set window for vector_sum_col
207 Window win_vector_sum_col = slice;
208 win_vector_sum_col.set(Window::DimY, Window::Dimension(0, 0, 0));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100209 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000210
211 // Set window for vector_sum_row
212 Window win_vector_sum_row = slice;
213 win_vector_sum_row.set(Window::DimX, Window::Dimension(0, 0, 0));
214 win_vector_sum_row.set(Window::DimY, Window::Dimension(0, 0, 0));
Georgios Pinitasebf6b8a2018-09-24 16:31:08 +0100215 win_vector_sum_col.set(Window::DimZ, Window::Dimension(0, 0, 0));
Gian Marco05288a22017-11-21 10:57:50 +0000216
217 do
218 {
219 unsigned int idx = 0;
220 add_3D_tensor_argument(idx, _mm_result, slice);
221 if(_vector_sum_col != nullptr)
222 {
223 add_2D_tensor_argument(idx, _vector_sum_col, win_vector_sum_col);
224 }
225 if(_vector_sum_row != nullptr)
226 {
227 add_2D_tensor_argument(idx, _vector_sum_row, win_vector_sum_row);
228 }
229 enqueue(queue, *this, slice);
230 }
231 while(collapsed.slide_window_slice_3D(slice));
232}