blob: f02eb169b722cbf6c9cf78b43fa3341c9e82cdbf [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
47 if(gpu_target == GPUTarget::BIFROST)
48 {
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}
63} // namespace
64
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +010065CLGEMM::CLGEMM(std::shared_ptr<IMemoryManager> memory_manager)
Gian Marco1d25ed52017-12-16 19:33:50 +000066 : _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),
67 _is_first_run(true), _reshape_b_only_on_first_run(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010068{
69}
70
Gian Marco1d25ed52017-12-16 19:33:50 +000071void 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 +010072{
Gian Marco Iodice8a383692017-07-03 17:41:47 +010073 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
Gian Marco Iodice3a3066b2017-06-23 13:38:14 +010074 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(a, b, output);
Gian Marco1d25ed52017-12-16 19:33:50 +000075 ARM_COMPUTE_ERROR_ON_MSG(gemm_info.is_a_reshaped(), "Matrix A already reshaped is not supported");
76 ARM_COMPUTE_ERROR_ON_MSG(gemm_info.is_b_reshaped(), "Matrix B already reshaped is not supported");
Anthony Barbier6ff3b192017-09-04 18:44:23 +010077
78 if(c != nullptr)
79 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +010080 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(a, c);
81 ARM_COMPUTE_ERROR_ON_MSG(a->info()->dimension(1) != c->info()->dimension(1), "The C matrix must have the same number of rows as the matrix A");
Giorgio Arena093adbc2018-01-10 15:50:03 +000082 ARM_COMPUTE_ERROR_ON_MSG(b->info()->dimension(0) != c->info()->dimension(0), "The C matrix must have the same number of columns as the matrix B");
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083 ARM_COMPUTE_ERROR_ON_MSG(c->info()->dimension(0) != output->info()->dimension(0), "The C matrix must have the same number of rows as the output matrix");
84 ARM_COMPUTE_ERROR_ON_MSG(c->info()->dimension(1) != output->info()->dimension(1), "The C matrix must have the same number of columns as the output matrix");
85 }
86
Anthony Barbier6ff3b192017-09-04 18:44:23 +010087 ARM_COMPUTE_ERROR_ON_MSG(a->info()->dimension(0) != b->info()->dimension(1), "The product AB is defined only if the number of columns in A is equal to the number of rows in B");
88
Gian Marco1d25ed52017-12-16 19:33:50 +000089 // Check if we need to reshape the matrix B only on the first run
90 _reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
Gian Marco Iodice1246b632017-08-16 18:38:32 +010091
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +010092 const ICLTensor *matrix_a = a;
93 const ICLTensor *matrix_b = b;
94
Gian Marco36a0a462018-01-12 10:21:40 +000095 // Get the GPU target
96 const GPUTarget gpu_target = CLScheduler::get().target();
97
98 // Set the target for the kernels
99 _interleave_kernel.set_target(gpu_target);
100 _mm_kernel.set_target(gpu_target);
101
102 // Arguments used by GEMMReshapeInfo
103 // 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
104 // in order to know how the matrices have been reshaped
105 const int m = a->info()->dimension(1);
106 const int n = b->info()->dimension(0);
107 const int k = a->info()->dimension(0);
108 int mult_transpose1xW_width = 1;
109 int mult_interleave4x4_height = 1;
110
111 if(gpu_target == GPUTarget::BIFROST)
112 {
113 mult_transpose1xW_width = 4;
114 mult_interleave4x4_height = 2;
115 }
116
117 // Check if we need to reshape the matrix A and matrix B
118 _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 +0000119
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100120 if(_is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100121 {
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100122 matrix_a = &_tmp_a;
123 matrix_b = &_tmp_b;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100124
Gian Marco19835e52018-01-30 13:35:54 +0000125 // Manage intermediate buffers
126 _memory_group.manage(&_tmp_a);
127 _memory_group.manage(&_tmp_b);
128
Gian Marco20d78482018-01-11 15:10:58 +0000129 // _tmp_a and _tmp_b will be auto configured in _interleave_kernel and in _transpose_kernel
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100130
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131 // Configure interleave kernel
Gian Marco36a0a462018-01-12 10:21:40 +0000132 _interleave_kernel.configure(a, &_tmp_a, mult_interleave4x4_height);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100133
134 // Configure transpose kernel
Gian Marco36a0a462018-01-12 10:21:40 +0000135 _transpose_kernel.configure(b, &_tmp_b, mult_transpose1xW_width);
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100136 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100137
Gian Marco36a0a462018-01-12 10:21:40 +0000138 _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 +0100139
140 if(_is_interleaved_transposed)
141 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100142 // Allocate intermediate tensors
143 _tmp_a.allocator()->allocate();
144 _tmp_b.allocator()->allocate();
145 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100146
147 // Configure matrix addition kernel
148 if(beta != 0 && c != nullptr)
149 {
150 _ma_kernel.configure(c, output, beta);
151 _run_addition = true;
152 }
153}
154
155void CLGEMM::run()
156{
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100157 _memory_group.acquire();
158
Gian Marco Iodiceedfa9f42017-08-15 11:45:22 +0100159 if(_is_interleaved_transposed)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100160 {
161 // Run interleave kernel
162 CLScheduler::get().enqueue(_interleave_kernel, false);
163
Gian Marco1d25ed52017-12-16 19:33:50 +0000164 if(_is_first_run)
165 {
166 // Run transpose kernel
167 CLScheduler::get().enqueue(_transpose_kernel, false);
168
169 _is_first_run = false;
170 }
171 else if(!_reshape_b_only_on_first_run)
172 {
173 // Run transpose kernel
174 CLScheduler::get().enqueue(_transpose_kernel, false);
175 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100176 }
177
178 // Run matrix multiply kernel
179 CLScheduler::get().enqueue(_mm_kernel, !_run_addition);
180
181 // Run matrix addition kernel
182 if(_run_addition)
183 {
184 CLScheduler::get().enqueue(_ma_kernel);
185 }
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100186
187 _memory_group.release();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100188}