blob: 79f8f717131e61006b38e7558af9a271c7f8212e [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +01001/*
Gian Marco1aede362018-02-05 15:07:36 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier7068f992017-10-26 15:23:08 +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/GLES_COMPUTE/functions/GCGEMM.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/GLES_COMPUTE/GCHelpers.h"
28#include "arm_compute/core/GLES_COMPUTE/IGCTensor.h"
29#include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMInterleave4x4Kernel.h"
30#include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMMatrixAdditionKernel.h"
31#include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMMatrixMultiplyKernel.h"
32#include "arm_compute/core/GLES_COMPUTE/kernels/GCGEMMTranspose1xWKernel.h"
33#include "arm_compute/core/Helpers.h"
34#include "arm_compute/core/TensorInfo.h"
35#include "arm_compute/core/Types.h"
36#include "arm_compute/core/Validate.h"
37#include "arm_compute/runtime/GLES_COMPUTE/GCScheduler.h"
38#include "arm_compute/runtime/ITensorAllocator.h"
39
40using namespace arm_compute;
Anthony Barbier7068f992017-10-26 15:23:08 +010041
Michele Di Giorgio164b65d2018-04-13 14:28:08 +010042namespace
43{
44Status validate_arguments(const ITensorInfo *a, const ITensorInfo *b, const IGCTensor *c, const ITensorInfo *output, const float alpha, const float beta, const GEMMInfo &gemm_info = GEMMInfo())
45{
46 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, output);
47
48 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::F16, DataType::F32);
49 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(a, b, output);
50 ARM_COMPUTE_ERROR_ON_MSG(gemm_info.is_a_reshaped(), "Matrix A already reshaped is not supported");
51 ARM_COMPUTE_ERROR_ON_MSG(gemm_info.is_b_reshaped(), "Matrix B already reshaped is not supported");
52
53 if(c != nullptr)
54 {
55 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(a, c->info());
56 ARM_COMPUTE_ERROR_ON_MSG(a->dimension(1) != c->info()->dimension(1), "The C matrix must have the same number of rows as the matrix A");
57 ARM_COMPUTE_ERROR_ON_MSG(b->dimension(0) != c->info()->dimension(0), "The C matrix must have the same number of columns as the matrix B");
58 }
59
60 if(output->total_size() != 0)
61 {
62 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");
63 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");
64 }
65
66 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");
67
68 ARM_COMPUTE_UNUSED(alpha);
69 ARM_COMPUTE_UNUSED(beta);
70 ARM_COMPUTE_UNUSED(gemm_info);
71 return Status{};
72}
73} // namespace
74
Michalis Spyrou9e9cbaf2018-03-15 14:41:34 +000075GCGEMM::GCGEMM(std::shared_ptr<IMemoryManager> memory_manager)
Michele Di Giorgio164b65d2018-04-13 14:28:08 +010076 : _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),
77 _is_first_run(true), _reshape_b_only_on_first_run(false)
Anthony Barbier7068f992017-10-26 15:23:08 +010078{
79}
80
Gian Marco1aede362018-02-05 15:07:36 +000081void GCGEMM::configure(const IGCTensor *a, const IGCTensor *b, const IGCTensor *c, IGCTensor *output, float alpha, float beta, const GEMMInfo &gemm_info)
Anthony Barbier7068f992017-10-26 15:23:08 +010082{
Michele Di Giorgio164b65d2018-04-13 14:28:08 +010083 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, output);
Anthony Barbier7068f992017-10-26 15:23:08 +010084
Michele Di Giorgio164b65d2018-04-13 14:28:08 +010085 // Perform validation step
86 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(a->info(), b->info(), c, output->info(), alpha, beta, gemm_info));
Anthony Barbier7068f992017-10-26 15:23:08 +010087
Michele Di Giorgio164b65d2018-04-13 14:28:08 +010088 // Check if we need to reshape the matrix B only on the first run
89 _reshape_b_only_on_first_run = gemm_info.reshape_b_only_on_first_run();
Anthony Barbier7068f992017-10-26 15:23:08 +010090
91 const IGCTensor *matrix_a = a;
92 const IGCTensor *matrix_b = b;
93
Michele Di Giorgiob8fc60f2018-04-25 11:58:07 +010094 // Get the GPU target
95 const GPUTarget gpu_target = GCScheduler::get().get_target();
96
97 // Set the target for the kernels
98 _interleave_kernel.set_target(gpu_target);
99 _mm_kernel.set_target(gpu_target);
100
Michele Di Giorgio164b65d2018-04-13 14:28:08 +0100101 // Arguments used by GEMMReshapeInfo
102 // If we pass the matrix A and matrix B reshaped to GCGEMMMatrixMultiplyKernel, we need to pass m, n, k, mult_transpose1xW_width and mult_interleave4x4_height to GCGEMMReshapeInfo
103 // in order to know how the matrices have been reshaped
104 const int m = a->info()->dimension(1);
105 const int n = b->info()->dimension(0);
106 const int k = a->info()->dimension(0);
107 int mult_transpose1xW_width = 1;
108 int mult_interleave4x4_height = 1;
109
110 // If the input tensor has less than 16 rows, we run a special version of GEMM without reshaping the input tensors
111 _is_interleaved_transposed = a->info()->dimension(1) > 16;
112
Anthony Barbier7068f992017-10-26 15:23:08 +0100113 if(_is_interleaved_transposed)
114 {
115 matrix_a = &_tmp_a;
116 matrix_b = &_tmp_b;
117
Michele Di Giorgio164b65d2018-04-13 14:28:08 +0100118 // Manage intermediate buffers
Michalis Spyrou9e9cbaf2018-03-15 14:41:34 +0000119 _memory_group.manage(&_tmp_a);
Michele Di Giorgio164b65d2018-04-13 14:28:08 +0100120 if(!_reshape_b_only_on_first_run)
Georgios Pinitasceff0f92018-03-19 19:57:01 +0000121 {
122 _memory_group.manage(&_tmp_b);
123 }
Michele Di Giorgio164b65d2018-04-13 14:28:08 +0100124 // _tmp_a and _tmp_b will be auto configured in _interleave_kernel and in _transpose_kernel
Anthony Barbier7068f992017-10-26 15:23:08 +0100125
126 // Configure interleave kernel
127 _interleave_kernel.configure(a, &_tmp_a);
128
129 // Configure transpose kernel
130 _transpose_kernel.configure(b, &_tmp_b);
131 }
132
Michele Di Giorgio164b65d2018-04-13 14:28:08 +0100133 _mm_kernel.configure(matrix_a, matrix_b, output, alpha, _is_interleaved_transposed, GEMMReshapeInfo(m, n, k, mult_transpose1xW_width, mult_interleave4x4_height));
Anthony Barbier7068f992017-10-26 15:23:08 +0100134
135 if(_is_interleaved_transposed)
136 {
137 // Allocate intermediate tensors
138 _tmp_a.allocator()->allocate();
139 _tmp_b.allocator()->allocate();
140 }
141
142 // Configure matrix addition kernel
143 if(beta != 0 && c != nullptr)
144 {
145 _ma_kernel.configure(c, output, beta);
146 _run_addition = true;
147 }
148}
149
Michele Di Giorgio164b65d2018-04-13 14:28:08 +0100150Status GCGEMM::validate(const ITensorInfo *a, const ITensorInfo *b, const IGCTensor *c, const ITensorInfo *output, const float alpha, const float beta, const GEMMInfo &gemm_info)
151{
152 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(a, b, c, output, alpha, beta, gemm_info));
153 return Status{};
154}
155
Anthony Barbier7068f992017-10-26 15:23:08 +0100156void GCGEMM::run()
157{
Michalis Spyrou9e9cbaf2018-03-15 14:41:34 +0000158 _memory_group.acquire();
Anthony Barbier7068f992017-10-26 15:23:08 +0100159 if(_is_interleaved_transposed)
160 {
161 // Run interleave kernel
Joel Liangeb8f71e2017-12-27 13:16:00 +0800162 GCScheduler::get().dispatch(_interleave_kernel, false);
Anthony Barbier7068f992017-10-26 15:23:08 +0100163
Michele Di Giorgio164b65d2018-04-13 14:28:08 +0100164 if(_is_first_run)
165 {
166 // Run transpose kernel
167 GCScheduler::get().dispatch(_transpose_kernel, false);
168 _is_first_run = false;
169 }
170 else if(!_reshape_b_only_on_first_run)
171 {
172 // Run transpose kernel
173 GCScheduler::get().dispatch(_transpose_kernel, false);
174 }
Joel Liangeb8f71e2017-12-27 13:16:00 +0800175 GCScheduler::get().memory_barrier();
Anthony Barbier7068f992017-10-26 15:23:08 +0100176 }
177
178 // Run matrix multiply kernel
Joel Liangeb8f71e2017-12-27 13:16:00 +0800179 GCScheduler::get().dispatch(_mm_kernel, !_run_addition);
Anthony Barbier7068f992017-10-26 15:23:08 +0100180
181 // Run matrix addition kernel
182 if(_run_addition)
183 {
Joel Liangeb8f71e2017-12-27 13:16:00 +0800184 GCScheduler::get().memory_barrier();
185 GCScheduler::get().dispatch(_ma_kernel);
Anthony Barbier7068f992017-10-26 15:23:08 +0100186 }
Michalis Spyrou9e9cbaf2018-03-15 14:41:34 +0000187 _memory_group.release();
Anthony Barbier7068f992017-10-26 15:23:08 +0100188}