blob: 711b006ede7979565526f9c3c26abee12937ecdc [file] [log] [blame]
Gian Marco05288a22017-11-21 10:57:50 +00001/*
Gian Marco7b4d5472018-01-10 15:56:30 +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/runtime/CL/functions/CLGEMMLowpMatrixMultiplyCore.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/Helpers.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Types.h"
31#include "arm_compute/core/Validate.h"
Georgios Pinitas358ca202017-12-07 16:47:52 +000032#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Gian Marco05288a22017-11-21 10:57:50 +000033#include "arm_compute/runtime/CL/CLScheduler.h"
34
35using namespace arm_compute;
Georgios Pinitas358ca202017-12-07 16:47:52 +000036using namespace arm_compute::misc::shape_calculator;
Gian Marco05288a22017-11-21 10:57:50 +000037
Gian Marco19835e52018-01-30 13:35:54 +000038namespace
39{
40inline bool is_interleaved_transposed(int m, int n, int k, bool reshape_b_only_on_first_run, GPUTarget gpu_target)
41{
42 bool flag = true;
43
Sam Laynton56e8e862018-04-05 13:26:08 +010044 if(gpu_target_is_in(gpu_target, GPUTarget::G71, GPUTarget::G72, GPUTarget::G51, GPUTarget::G51BIG, GPUTarget::G51LIT, GPUTarget::TNOX))
Gian Marco19835e52018-01-30 13:35:54 +000045 {
46 // COMPMID-852
47 if(k > 256 && m > 4 && reshape_b_only_on_first_run)
48 {
49 flag = ((0.72f + n * 0.10766f) < (n * 0.1284f));
50 }
51 else
52 {
53 flag = false;
54 }
55 }
56
57 return flag;
58}
59} // namespace
60
Gian Marco05288a22017-11-21 10:57:50 +000061CLGEMMLowpMatrixMultiplyCore::CLGEMMLowpMatrixMultiplyCore(std::shared_ptr<IMemoryManager> memory_manager)
62 : _memory_group(std::move(memory_manager)), _mm_kernel(), _mtx_a_reshape_kernel(), _mtx_b_reshape_kernel(), _mtx_a_reduction_kernel(), _mtx_b_reduction_kernel(), _offset_contribution_kernel(),
Chunosov5124be52017-11-22 20:42:13 +070063 _vector_sum_col(), _vector_sum_row(), _tmp_a(), _tmp_b(), _a_offset(0), _b_offset(0), _is_interleaved_transposed(true), _is_first_run(true), _reshape_b_only_on_first_run(false)
Gian Marco05288a22017-11-21 10:57:50 +000064{
65}
66
Chunosov5124be52017-11-22 20:42:13 +070067void CLGEMMLowpMatrixMultiplyCore::configure(const ICLTensor *a, const ICLTensor *b, ICLTensor *output, const GEMMInfo &gemm_info)
Gian Marco05288a22017-11-21 10:57:50 +000068{
Georgios Pinitas358ca202017-12-07 16:47:52 +000069 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, output);
70 ARM_COMPUTE_UNUSED(gemm_info);
71 ARM_COMPUTE_ERROR_THROW_ON(CLGEMMLowpMatrixMultiplyCore::validate(a->info(), b->info(), output->info(), gemm_info));
Gian Marco05288a22017-11-21 10:57:50 +000072
Chunosov5124be52017-11-22 20:42:13 +070073 _reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
74 _a_offset = a->info()->quantization_info().offset;
75 _b_offset = b->info()->quantization_info().offset;
Gian Marco05288a22017-11-21 10:57:50 +000076
Gian Marco19835e52018-01-30 13:35:54 +000077 // Get the GPU target
78 const GPUTarget gpu_target = CLScheduler::get().target();
Gian Marco7b4d5472018-01-10 15:56:30 +000079
Gian Marco19835e52018-01-30 13:35:54 +000080 // Set the target for the kernels
81 _mtx_a_reshape_kernel.set_target(gpu_target);
82 _mm_kernel.set_target(gpu_target);
Gian Marco05288a22017-11-21 10:57:50 +000083
84 const ICLTensor *matrix_a = a;
85 const ICLTensor *matrix_b = b;
86
Gian Marco19835e52018-01-30 13:35:54 +000087 // Arguments used by GEMMReshapeInfo
88 // If we pass the matrix A and matrix B reshaped to CLGEMMMatrixMultiplyKernel, we need to pass m, n, k, mult_transpose1xW_width and mult_interleave4x4_height to CLGEMMReshapeInfo
89 // in order to know how the matrices have been reshaped
90 const int m = a->info()->dimension(1);
91 const int n = b->info()->dimension(0);
92 const int k = a->info()->dimension(0);
93 constexpr int mult_transpose1xW_width = 1;
94 constexpr int mult_interleave4x4_height = 1;
95
96 // Check if we need to reshape the matrix A and matrix B
97 _is_interleaved_transposed = is_interleaved_transposed(m, n, k, _reshape_b_only_on_first_run, gpu_target);
98
Gian Marco05288a22017-11-21 10:57:50 +000099 if(_is_interleaved_transposed)
100 {
101 matrix_a = &_tmp_a;
102 matrix_b = &_tmp_b;
103
Gian Marco05288a22017-11-21 10:57:50 +0000104 _memory_group.manage(&_tmp_a);
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100105 if(!_reshape_b_only_on_first_run)
106 {
107 _memory_group.manage(&_tmp_b);
108 }
Gian Marco05288a22017-11-21 10:57:50 +0000109
110 // Configure interleave kernel
Gian Marco19835e52018-01-30 13:35:54 +0000111 _mtx_a_reshape_kernel.configure(a, &_tmp_a, mult_interleave4x4_height);
Gian Marco05288a22017-11-21 10:57:50 +0000112
113 // Configure transpose kernel
Gian Marco19835e52018-01-30 13:35:54 +0000114 _mtx_b_reshape_kernel.configure(b, &_tmp_b, mult_transpose1xW_width);
Gian Marco05288a22017-11-21 10:57:50 +0000115 }
116
117 // Configure matrix multiply kernel
Gian Marco19835e52018-01-30 13:35:54 +0000118 _mm_kernel.configure(matrix_a, matrix_b, output, _is_interleaved_transposed, GEMMReshapeInfo(m, n, k, mult_transpose1xW_width, mult_interleave4x4_height));
Gian Marco05288a22017-11-21 10:57:50 +0000119
120 // Initialize matrix B reduction kernel only if _a_offset is not equal to 0
121 if(_a_offset != 0)
122 {
Georgios Pinitas358ca202017-12-07 16:47:52 +0000123 TensorInfo info_vector_sum_col(compute_reductionA_shape(*b->info()), 1, DataType::S32);
Gian Marco05288a22017-11-21 10:57:50 +0000124 _vector_sum_col.allocator()->init(info_vector_sum_col);
Giorgio Arenabb54e4e2018-04-05 17:20:34 +0100125 if(!_reshape_b_only_on_first_run)
126 {
127 _memory_group.manage(&_vector_sum_col);
128 }
Gian Marco05288a22017-11-21 10:57:50 +0000129
130 // Configure Matrix B reduction kernel
131 _mtx_b_reduction_kernel.configure(b, &_vector_sum_col);
132 }
133
134 // Initialize Matrix A reduction kernel only if _b_offset is not equal to 0
135 if(_b_offset != 0)
136 {
Georgios Pinitas358ca202017-12-07 16:47:52 +0000137 TensorInfo info_vector_sum_row(compute_reductionB_shape(*a->info()), 1, DataType::S32);
Gian Marco05288a22017-11-21 10:57:50 +0000138 _vector_sum_row.allocator()->init(info_vector_sum_row);
139 _memory_group.manage(&_vector_sum_row);
140
141 // Configure matrix A reduction kernel
142 _mtx_a_reduction_kernel.configure(a, &_vector_sum_row);
143 }
144
145 // Configure offset contribution kernel
146 _offset_contribution_kernel.configure(output, _a_offset == 0 ? nullptr : &_vector_sum_col, _b_offset == 0 ? nullptr : &_vector_sum_row, a->info()->dimension(0), _a_offset, _b_offset);
147
148 // Allocate tensors
149 if(_is_interleaved_transposed)
150 {
151 _tmp_a.allocator()->allocate();
152 _tmp_b.allocator()->allocate();
153 }
154
155 if(_a_offset != 0)
156 {
157 _vector_sum_col.allocator()->allocate();
158 }
159
160 if(_b_offset != 0)
161 {
162 _vector_sum_row.allocator()->allocate();
163 }
164}
165
Georgios Pinitas358ca202017-12-07 16:47:52 +0000166Status CLGEMMLowpMatrixMultiplyCore::validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *output, const GEMMInfo &gemm_info)
167{
168 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::QASYMM8);
169 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S32);
170 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(a, b);
171 ARM_COMPUTE_RETURN_ERROR_ON_MSG((a)->dimension(0) != (b)->dimension(1),
172 "The product AB is defined only if the number of columns in A is equal to the number of rows in B");
173 ARM_COMPUTE_RETURN_ERROR_ON_MSG((a)->dimension(1) != (output)->dimension(1),
174 "The output matrix must have the same number of rows as the matrix A");
175 ARM_COMPUTE_RETURN_ERROR_ON_MSG((b)->dimension(0) != (output)->dimension(0),
176 "The output matrix must have the same number of columns as the matrix B");
177 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.is_a_reshaped(), "Matrix A already reshaped is not supported");
178 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.is_b_reshaped(), "Matrix B already reshaped is not supported");
179
Gian Marco19835e52018-01-30 13:35:54 +0000180 int32_t a_offset = a->quantization_info().offset;
181 int32_t b_offset = b->quantization_info().offset;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000182
Gian Marco19835e52018-01-30 13:35:54 +0000183 const int m = a->dimension(1);
184 const int n = b->dimension(0);
185 const int k = a->dimension(0);
186 constexpr int mult_transpose1xW_width = 1;
187 constexpr int mult_interleave4x4_height = 1;
188 const GEMMReshapeInfo reshape_info(m, n, k, mult_transpose1xW_width, mult_interleave4x4_height);
189
190 bool reshape_matrices = is_interleaved_transposed(m, n, k, gemm_info.reshape_b_only_on_first_run(), CLScheduler::get().target());
191
192 if(reshape_matrices)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000193 {
Gian Marco19835e52018-01-30 13:35:54 +0000194 TensorInfo info_a(compute_interleaved_shape(*a, mult_interleave4x4_height), 1, a->data_type());
195 TensorInfo info_b(compute_transpose1xW_with_element_size_shape(*b, mult_transpose1xW_width), 1, b->data_type());
Georgios Pinitas358ca202017-12-07 16:47:52 +0000196
Gian Marco19835e52018-01-30 13:35:54 +0000197 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMInterleave4x4Kernel::validate(a, &info_a, mult_interleave4x4_height));
198 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMTranspose1xWKernel::validate(b, &info_b, mult_transpose1xW_width));
199 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMLowpMatrixMultiplyKernel::validate(&info_a, &info_b, output, reshape_matrices, reshape_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000200 }
201 else
202 {
Gian Marco19835e52018-01-30 13:35:54 +0000203 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMLowpMatrixMultiplyKernel::validate(a, b, output, reshape_matrices, reshape_info));
Georgios Pinitas358ca202017-12-07 16:47:52 +0000204 }
205
206 TensorInfo info_vector_sum_col, info_vector_sum_row;
207
208 // Validate matrix B reduction kernel only if _a_offset is not equal to 0
209 if(a_offset != 0)
210 {
211 info_vector_sum_col = TensorInfo(compute_reductionA_shape(*b), 1, DataType::S32);
212
213 // Configure Matrix B reduction kernel
214 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMLowpMatrixBReductionKernel::validate(b, &info_vector_sum_col));
215 }
216
217 // Validate Matrix A reduction kernel only if _b_offset is not equal to 0
218 if(b_offset != 0)
219 {
220 info_vector_sum_row = TensorInfo(compute_reductionB_shape(*a), 1, DataType::S32);
221
222 // Configure matrix A reduction kernel
223 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMLowpMatrixAReductionKernel::validate(a, &info_vector_sum_row));
224 }
225
226 // Validate offset contribution kernel
227 ARM_COMPUTE_RETURN_ON_ERROR(CLGEMMLowpOffsetContributionKernel::validate(output,
228 a_offset == 0 ? nullptr : &info_vector_sum_col,
229 b_offset == 0 ? nullptr : &info_vector_sum_row,
230 a_offset, b_offset));
231
232 return Status{};
233}
234
Gian Marco05288a22017-11-21 10:57:50 +0000235void CLGEMMLowpMatrixMultiplyCore::run()
236{
237 _memory_group.acquire();
238
239 if(_is_interleaved_transposed)
240 {
241 // Run reshape matrix A
242 CLScheduler::get().enqueue(_mtx_a_reshape_kernel, false);
243
Chunosov5124be52017-11-22 20:42:13 +0700244 if(_is_first_run || !_reshape_b_only_on_first_run)
245 {
246 // Run reshape matrix B
247 CLScheduler::get().enqueue(_mtx_b_reshape_kernel, false);
248 }
249 }
250
251 // Note: if _reshape_b_only_on_first_run = true, the reduction kernel can be executed only once
252 if(_is_first_run || !_reshape_b_only_on_first_run)
253 {
254 // Run matrix B reduction kernel only if _a_offset is not equal to 0
255 if(_a_offset != 0)
256 {
257 CLScheduler::get().enqueue(_mtx_b_reduction_kernel, false);
258 }
Gian Marco05288a22017-11-21 10:57:50 +0000259 }
260
261 // Run matrix multiply
262 CLScheduler::get().enqueue(_mm_kernel, false);
263
264 // Run matrix A reduction kernel only if _b_offset is not equal to 0
265 if(_b_offset != 0)
266 {
267 CLScheduler::get().enqueue(_mtx_a_reduction_kernel, false);
268 }
269
Gian Marco05288a22017-11-21 10:57:50 +0000270 // Run offset contribution kernel
271 CLScheduler::get().enqueue(_offset_contribution_kernel, true);
272
273 _memory_group.release();
Chunosov5124be52017-11-22 20:42:13 +0700274
275 _is_first_run = false;
Gian Marco05288a22017-11-21 10:57:50 +0000276}