blob: 172facfa78aa7dbd2af4c4426804e2a02e850f95 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Gian Marco20d78482018-01-11 15:10:58 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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/CLGEMM.h"
25
26#include "arm_compute/core/CL/ICLTensor.h"
27#include "arm_compute/core/CL/kernels/CLGEMMInterleave4x4Kernel.h"
28#include "arm_compute/core/CL/kernels/CLGEMMMatrixAdditionKernel.h"
29#include "arm_compute/core/CL/kernels/CLGEMMMatrixMultiplyKernel.h"
30#include "arm_compute/core/CL/kernels/CLGEMMTranspose1xWKernel.h"
31#include "arm_compute/core/Error.h"
32#include "arm_compute/core/Helpers.h"
33#include "arm_compute/core/TensorInfo.h"
34#include "arm_compute/core/Types.h"
35#include "arm_compute/core/Validate.h"
36#include "arm_compute/runtime/CL/CLScheduler.h"
37#include "arm_compute/runtime/ITensorAllocator.h"
38
39using namespace arm_compute;
40
Gian Marco36a0a462018-01-12 10:21:40 +000041namespace
42{
43inline bool is_interleaved_transposed(int m, int n, int k, DataType data_type, bool reshape_b_only_on_first_run, GPUTarget gpu_target)
44{
45 bool flag = true;
46
Michalis Spyroua9676112018-02-22 18:07:43 +000047 if(gpu_target_is_in(gpu_target, GPUTarget::G71, GPUTarget::G72))
Gian Marco36a0a462018-01-12 10:21:40 +000048 {
49 // COMPMID-852
50 if(k > 256 && m > 4 && data_type == DataType::F32 && reshape_b_only_on_first_run)
51 {
52 const float scale = k < 1024 ? 2.0f : 2.5f;
Gian Marco19835e52018-01-30 13:35:54 +000053 flag = (scale * n) > ((1.66f * n) + 38.4f);
Gian Marco36a0a462018-01-12 10:21:40 +000054 }
55 else
56 {
57 flag = false;
58 }
59 }
60
61 return flag;
62}
Georgios Pinitas78c00902018-01-09 17:33:11 +000063
64Status validate_arguments(const ITensorInfo *a, const ITensorInfo *b, const ICLTensor *c, const ITensorInfo *output, const float alpha, const float beta, const GEMMInfo &gemm_info = GEMMInfo())
65{
66 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, output);
67
68 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000069 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(a, b);
Georgios Pinitas78c00902018-01-09 17:33:11 +000070 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.is_a_reshaped(), "Matrix A already reshaped is not supported");
71 ARM_COMPUTE_RETURN_ERROR_ON_MSG(gemm_info.is_b_reshaped(), "Matrix B already reshaped is not supported");
72
73 if(c != nullptr)
74 {
75 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(a, c->info());
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000076 ARM_COMPUTE_RETURN_ERROR_ON_MSG(a->dimension(1) != c->info()->dimension(1), "The matrix C must have the same number of rows as the matrix A");
77 ARM_COMPUTE_RETURN_ERROR_ON_MSG(b->dimension(0) != c->info()->dimension(0), "The matrix C must have the same number of columns as the matrix B");
78 }
79
80 if(output->total_size() != 0)
81 {
82 ARM_COMPUTE_RETURN_ERROR_ON_MSG(b->dimension(0) != output->dimension(0), "The output matrix must have the same number of columns as the matrix B");
83 ARM_COMPUTE_RETURN_ERROR_ON_MSG(a->dimension(1) != output->dimension(1), "The output matrix must have the same number of rows as the matrix A");
Georgios Pinitas78c00902018-01-09 17:33:11 +000084 }
85
86 ARM_COMPUTE_RETURN_ERROR_ON_MSG(a->dimension(0) != b->dimension(1), "The product AB is defined only if the number of columns in A is equal to the number of rows in B");
87
88 ARM_COMPUTE_UNUSED(alpha);
89 ARM_COMPUTE_UNUSED(beta);
90 return Status{};
91}
Gian Marco36a0a462018-01-12 10:21:40 +000092} // namespace
93
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010094CLGEMM::CLGEMM(std::shared_ptr<IMemoryManager> memory_manager)
Gian Marco1d25ed52017-12-16 19:33:50 +000095 : _memory_group(std::move(memory_manager)), _interleave_kernel(), _transpose_kernel(), _mm_kernel(), _ma_kernel(), _tmp_a(), _tmp_b(), _is_interleaved_transposed(false), _run_addition(false),
96 _is_first_run(true), _reshape_b_only_on_first_run(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010097{
98}
99
Gian Marco1d25ed52017-12-16 19:33:50 +0000100void CLGEMM::configure(const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, float alpha, float beta, const GEMMInfo &gemm_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101{
Georgios Pinitas78c00902018-01-09 17:33:11 +0000102 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100103
Georgios Pinitas78c00902018-01-09 17:33:11 +0000104 // Perform validation step
105 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(a->info(), b->info(), c, output->info(), alpha, beta, gemm_info));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100106
Gian Marco1d25ed52017-12-16 19:33:50 +0000107 // Check if we need to reshape the matrix B only on the first run
108 _reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
Gian Marco Iodice1246b632017-08-16 18:38:32 +0100109
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100110 const ICLTensor *matrix_a = a;
111 const ICLTensor *matrix_b = b;
112
Gian Marco36a0a462018-01-12 10:21:40 +0000113 // Get the GPU target
114 const GPUTarget gpu_target = CLScheduler::get().target();
115
116 // Set the target for the kernels
117 _interleave_kernel.set_target(gpu_target);
118 _mm_kernel.set_target(gpu_target);
119
120 // Arguments used by GEMMReshapeInfo
121 // 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
122 // in order to know how the matrices have been reshaped
123 const int m = a->info()->dimension(1);
124 const int n = b->info()->dimension(0);
125 const int k = a->info()->dimension(0);
126 int mult_transpose1xW_width = 1;
127 int mult_interleave4x4_height = 1;
128
Michalis Spyroua9676112018-02-22 18:07:43 +0000129 if(gpu_target_is_in(gpu_target, GPUTarget::G71, GPUTarget::G72))
Gian Marco36a0a462018-01-12 10:21:40 +0000130 {
131 mult_transpose1xW_width = 4;
132 mult_interleave4x4_height = 2;
133 }
134
135 // Check if we need to reshape the matrix A and matrix B
136 _is_interleaved_transposed = is_interleaved_transposed(m, n, k, a->info()->data_type(), _reshape_b_only_on_first_run, gpu_target);
Gian Marcob5311a62017-12-13 12:48:03 +0000137
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100138 if(_is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100139 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100140 matrix_a = &_tmp_a;
141 matrix_b = &_tmp_b;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100142
Gian Marco19835e52018-01-30 13:35:54 +0000143 // Manage intermediate buffers
144 _memory_group.manage(&_tmp_a);
Georgios Pinitasae4ce7b2018-03-19 17:50:45 +0000145 if(!_reshape_b_only_on_first_run)
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000146 {
147 _memory_group.manage(&_tmp_b);
148 }
Gian Marco20d78482018-01-11 15:10:58 +0000149 // _tmp_a and _tmp_b will be auto configured in _interleave_kernel and in _transpose_kernel
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100150
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100151 // Configure interleave kernel
Gian Marco36a0a462018-01-12 10:21:40 +0000152 _interleave_kernel.configure(a, &_tmp_a, mult_interleave4x4_height);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153
154 // Configure transpose kernel
Gian Marco36a0a462018-01-12 10:21:40 +0000155 _transpose_kernel.configure(b, &_tmp_b, mult_transpose1xW_width);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100156 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100157
Gian Marco36a0a462018-01-12 10:21:40 +0000158 _mm_kernel.configure(matrix_a, matrix_b, output, alpha, _is_interleaved_transposed, GEMMReshapeInfo(m, n, k, mult_transpose1xW_width, mult_interleave4x4_height));
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100159
160 if(_is_interleaved_transposed)
161 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100162 // Allocate intermediate tensors
163 _tmp_a.allocator()->allocate();
164 _tmp_b.allocator()->allocate();
165 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100166
167 // Configure matrix addition kernel
168 if(beta != 0 && c != nullptr)
169 {
170 _ma_kernel.configure(c, output, beta);
171 _run_addition = true;
172 }
173}
174
Georgios Pinitas78c00902018-01-09 17:33:11 +0000175Status CLGEMM::validate(const ITensorInfo *a, const ITensorInfo *b, const ICLTensor *c, const ITensorInfo *output, const float alpha, const float beta, const GEMMInfo &gemm_info)
176{
177 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(a, b, c, output, alpha, beta, gemm_info));
178 return Status{};
179}
180
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100181void CLGEMM::run()
182{
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100183 _memory_group.acquire();
184
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100185 if(_is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100186 {
187 // Run interleave kernel
188 CLScheduler::get().enqueue(_interleave_kernel, false);
189
Gian Marco1d25ed52017-12-16 19:33:50 +0000190 if(_is_first_run)
191 {
192 // Run transpose kernel
193 CLScheduler::get().enqueue(_transpose_kernel, false);
194
195 _is_first_run = false;
196 }
197 else if(!_reshape_b_only_on_first_run)
198 {
199 // Run transpose kernel
200 CLScheduler::get().enqueue(_transpose_kernel, false);
201 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100202 }
203
204 // Run matrix multiply kernel
205 CLScheduler::get().enqueue(_mm_kernel, !_run_addition);
206
207 // Run matrix addition kernel
208 if(_run_addition)
209 {
210 CLScheduler::get().enqueue(_ma_kernel);
211 }
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100212
213 _memory_group.release();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100214}