blob: d05939fcf556f25435395e8ba9c15660ae99afe1 [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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);
65 ARM_COMPUTE_RETURN_ERROR_ON(vector_sum_row->dimension(0) != mm_result->dimension(1));
66
67 TensorShape output_shape = mm_result->tensor_shape();
68 if(output_shape.num_dimensions() > 1)
69 {
70 TensorShape vector_sum_row_shape = vector_sum_row->tensor_shape();
71 vector_sum_row_shape.collapse_from(1);
72 output_shape.collapse_from(2);
73
74 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_row_shape[1] != output_shape[2],
75 "mm_result tensor must have the same number of batches of output tensor");
76
77 if(a_offset != 0)
78 {
79 TensorShape vector_sum_col_shape = vector_sum_col->tensor_shape();
80 vector_sum_col_shape.collapse_from(1);
81
82 ARM_COMPUTE_RETURN_ERROR_ON_MSG(vector_sum_col_shape[1] != 1 && vector_sum_col_shape[1] != vector_sum_row_shape[1],
83 "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");
84 }
85 }
86 }
87
88 return Status{};
89}
90
91std::pair<Status, Window> validate_and_configure_window(ITensorInfo *mm_result, ITensorInfo *vector_sum_col, ITensorInfo *vector_sum_row,
92 int32_t a_offset, int32_t b_offset)
93{
94 constexpr unsigned int num_elems_processed_per_iteration = 16;
95 bool window_changed = false;
96
97 // Configure kernel window
98 Window win = calculate_max_window(*mm_result, Steps(num_elems_processed_per_iteration));
99
100 AccessWindowHorizontal mm_result_access(mm_result, 0, num_elems_processed_per_iteration);
101 window_changed = window_changed || update_window_and_padding(win,
102 mm_result_access);
103
104 if(a_offset != 0)
105 {
106 AccessWindowHorizontal vector_sum_col_access(vector_sum_col, 0, num_elems_processed_per_iteration);
107 window_changed = window_changed || update_window_and_padding(win,
108 vector_sum_col_access);
109 }
110 if(b_offset != 0)
111 {
112 AccessWindowStatic vector_sum_row_access(vector_sum_row, 0, 0, vector_sum_row->dimension(0), 0); // NOLINT
113 window_changed = window_changed || update_window_and_padding(win,
114 vector_sum_row_access);
115 }
116
117 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
118 return std::make_pair(err, win);
119}
120} // namespace
121
Gian Marco05288a22017-11-21 10:57:50 +0000122CLGEMMLowpOffsetContributionKernel::CLGEMMLowpOffsetContributionKernel()
123 : _vector_sum_col(nullptr), _vector_sum_row(nullptr), _mm_result(nullptr)
124{
125}
126
127void 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)
128{
Georgios Pinitas358ca202017-12-07 16:47:52 +0000129 // Perform validate step
130 ARM_COMPUTE_ERROR_ON_NULLPTR(mm_result);
131 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(mm_result->info(),
132 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
133 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
134 a_offset, b_offset)); // NOLINT
135
136 _vector_sum_col = vector_sum_col;
137 _vector_sum_row = vector_sum_row;
138 _mm_result = mm_result;
Gian Marco05288a22017-11-21 10:57:50 +0000139
140 // Set the arguments to pass at compile time
141 CLBuildOptions build_opts;
142
143 // If a_offset == 0, vector_sum_col can be a nullptr
144 if(a_offset != 0)
145 {
Gian Marco05288a22017-11-21 10:57:50 +0000146 build_opts.add_option("-DA_OFFSET=" + support::cpp11::to_string(a_offset));
Chunosov5124be52017-11-22 20:42:13 +0700147 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 +0000148 }
Gian Marco05288a22017-11-21 10:57:50 +0000149 // If b_offset == 0, vector_sum_row can be a nullptr
Georgios Pinitas358ca202017-12-07 16:47:52 +0000150 build_opts.add_option_if(b_offset != 0, "-DB_OFFSET=" + support::cpp11::to_string(b_offset));
Gian Marco05288a22017-11-21 10:57:50 +0000151 build_opts.add_option("-DK_OFFSET=" + support::cpp11::to_string(a_offset * b_offset * k));
152
153 // Create kernel
154 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("gemmlowp_offset_contribution", build_opts.options()));
155
Gian Marco05288a22017-11-21 10:57:50 +0000156 // Configure kernel window
Georgios Pinitas358ca202017-12-07 16:47:52 +0000157 auto win_config = validate_and_configure_window(mm_result->info(),
158 vector_sum_col != nullptr ? vector_sum_col->info() : nullptr,
159 vector_sum_row != nullptr ? vector_sum_row->info() : nullptr,
160 a_offset, b_offset); // NOLINT
161 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
162 ICLKernel::configure(win_config.second);
163}
Gian Marco05288a22017-11-21 10:57:50 +0000164
Georgios Pinitas358ca202017-12-07 16:47:52 +0000165Status CLGEMMLowpOffsetContributionKernel::validate(const ITensorInfo *mm_result, const ITensorInfo *vector_sum_col, const ITensorInfo *vector_sum_row,
166 int32_t a_offset, int32_t b_offset)
167{
168 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(mm_result, vector_sum_col, vector_sum_row, a_offset, b_offset));
169 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(mm_result->clone().get(),
170 vector_sum_col != nullptr ? vector_sum_col->clone().get() : nullptr,
171 vector_sum_row != nullptr ? vector_sum_row->clone().get() : nullptr,
172 a_offset, b_offset)
173 .first); // NOLINT
Gian Marco05288a22017-11-21 10:57:50 +0000174
Georgios Pinitas358ca202017-12-07 16:47:52 +0000175 return Status{};
Gian Marco05288a22017-11-21 10:57:50 +0000176}
177
178void CLGEMMLowpOffsetContributionKernel::run(const Window &window, cl::CommandQueue &queue)
179{
180 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
181 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
182
183 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
184 Window slice = collapsed.first_slice_window_3D();
185
186 // Set window for vector_sum_col
187 Window win_vector_sum_col = slice;
188 win_vector_sum_col.set(Window::DimY, Window::Dimension(0, 0, 0));
189
190 // Set window for vector_sum_row
191 Window win_vector_sum_row = slice;
192 win_vector_sum_row.set(Window::DimX, Window::Dimension(0, 0, 0));
193 win_vector_sum_row.set(Window::DimY, Window::Dimension(0, 0, 0));
194
195 do
196 {
197 unsigned int idx = 0;
198 add_3D_tensor_argument(idx, _mm_result, slice);
199 if(_vector_sum_col != nullptr)
200 {
201 add_2D_tensor_argument(idx, _vector_sum_col, win_vector_sum_col);
202 }
203 if(_vector_sum_row != nullptr)
204 {
205 add_2D_tensor_argument(idx, _vector_sum_row, win_vector_sum_row);
206 }
207 enqueue(queue, *this, slice);
208 }
209 while(collapsed.slide_window_slice_3D(slice));
210}