blob: 950f4c9899ba6147efdab07bc2212be1a9d66af4 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
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/runtime/NEON/functions/NEGEMM.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/core/Helpers.h"
28#include "arm_compute/core/ITensor.h"
Moritz Pflanzer80373f62017-09-15 10:42:58 +010029#include "arm_compute/core/NEON/kernels/arm32/NEGEMMAArch32Kernel.h"
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010030#include "arm_compute/core/NEON/kernels/arm64/NEGEMMAArch64Kernel.h"
Pablo Tello4d55e0a2017-11-10 15:57:14 +000031#include "arm_compute/core/NEON/kernels/arm64/NEHGEMMAArch64FP16Kernel.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Types.h"
34#include "arm_compute/core/Validate.h"
35#include "arm_compute/runtime/NEON/NEScheduler.h"
36#include "arm_compute/runtime/TensorAllocator.h"
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010037#include "support/ToolchainSupport.h"
38
39namespace arm_compute
40{
41#include "arm_compute/core/NEON/kernels/assembly/gemm_interleaved.hpp"
Moritz Pflanzer80373f62017-09-15 10:42:58 +010042#include "arm_compute/core/NEON/kernels/assembly/kernels/a32_sgemm_8x6.hpp"
Pablo Tello4d55e0a2017-11-10 15:57:14 +000043#include "arm_compute/core/NEON/kernels/assembly/kernels/a64_hgemm_24x8.hpp"
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010044#include "arm_compute/core/NEON/kernels/assembly/kernels/a64_sgemm_12x8.hpp"
45} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +010046
47#include <cmath>
48
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010049namespace arm_compute
50{
Georgios Pinitas658039b2017-09-15 16:30:50 +010051NEGEMM::NEGEMM(std::shared_ptr<IMemoryManager> memory_manager)
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010052 : _memory_group(std::move(memory_manager)), _interleave_kernel(), _transpose_kernel(), _mm_kernel(), _mm_optimised_kernel(nullptr), _ma_kernel(), _tmp_a(), _tmp_b(), _workspace(),
53 _run_vector_matrix_multiplication(false), _run_addition(false)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010054{
55}
56
57void NEGEMM::configure(const ITensor *a, const ITensor *b, const ITensor *c, ITensor *d, float alpha, float beta)
58{
Gian Marco Iodicebdb6b0b2017-06-30 12:21:00 +010059 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::F32, DataType::F16, DataType::QS8, DataType::QS16);
Gian Marco Iodice3a3066b2017-06-23 13:38:14 +010060 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(a, b, d);
Gian Marco Iodicebdb6b0b2017-06-30 12:21:00 +010061 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");
Anthony Barbier6ff3b192017-09-04 18:44:23 +010062
63 if(c != nullptr)
64 {
Gian Marco Iodicebdb6b0b2017-06-30 12:21:00 +010065 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(c, 1, DataType::F32, DataType::F16, DataType::QS8, DataType::QS16);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010066 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(a, c);
67 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");
68 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");
69 ARM_COMPUTE_ERROR_ON_MSG(c->info()->dimension(0) != d->info()->dimension(0), "The C matrix must have the same number of rows as the output matrix");
70 ARM_COMPUTE_ERROR_ON_MSG(c->info()->dimension(1) != d->info()->dimension(1), "The C matrix must have the same number of columns as the output matrix");
71 }
72
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010073 _run_vector_matrix_multiplication = a->info()->dimension(1) < 2;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010074
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010075 // Check if the first input tensor is a vector.
76 // If so, all the kernels for reshaping the tensors can be skipped
77 if(_run_vector_matrix_multiplication)
78 {
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079 // Configure the matrix multiply kernel
80 _mm_kernel.configure(a, b, d, alpha);
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +010081
82 // Configure matrix addition kernel
83 if(beta != 0 && c != nullptr)
84 {
85 _ma_kernel.configure(c, d, beta);
86 _run_addition = true;
87 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010088 }
89 else
90 {
Moritz Pflanzer80373f62017-09-15 10:42:58 +010091#if defined(__arm__)
92 if(NEScheduler::get().cpu_info().CPU == CPUTarget::ARMV7 && a->info()->data_type() == DataType::F32 && (c == nullptr || beta == 0.f))
93 {
94 _mm_optimised_kernel = support::cpp14::make_unique<NEGEMMAArch32Kernel>();
95 }
96#elif defined(__aarch64__)
97 if(NEScheduler::get().cpu_info().CPU >= CPUTarget::ARMV8 && a->info()->data_type() == DataType::F32 && (c == nullptr || beta == 0.f))
98 {
99 _mm_optimised_kernel = support::cpp14::make_unique<NEGEMMAArch64Kernel>();
100 }
Pablo Tello4d55e0a2017-11-10 15:57:14 +0000101 else if(a->info()->data_type() == DataType::F16 && (c == nullptr || beta == 0.f))
102 {
103#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
104 _mm_optimised_kernel = support::cpp14::make_unique<NEHGEMMAArch64FP16Kernel>();
105#else /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
106 ARM_COMPUTE_ERROR("Recompile the library with arch=arm64-v8.2-a to enable support for FP16.");
107#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
108 }
Moritz Pflanzer80373f62017-09-15 10:42:58 +0100109#endif /* defined(__arm__) || defined(__aarch64__) */
110
111#if defined(__arm__) || defined(__aarch64__)
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100112 if(_mm_optimised_kernel != nullptr)
113 {
114 struct CPUInfo ci = NEScheduler::get().cpu_info();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100116 const int M = d->info()->tensor_shape().y();
117 const int N = d->info()->tensor_shape().x();
118 const int K = a->info()->tensor_shape().x();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100119
Pablo Tello4d55e0a2017-11-10 15:57:14 +0000120 size_t workbench_size = 0;
121
Moritz Pflanzer80373f62017-09-15 10:42:58 +0100122#if defined(__arm__)
Pablo Tello4d55e0a2017-11-10 15:57:14 +0000123 workbench_size = GemmInterleaved<sgemm_8x6, sgemm_8x6::operand_type, sgemm_8x6::result_type>(&ci, M, N, K, false, false).get_working_size();
Moritz Pflanzer80373f62017-09-15 10:42:58 +0100124#elif defined(__aarch64__)
Pablo Tello4d55e0a2017-11-10 15:57:14 +0000125 if(a->info()->data_type() == DataType::F32)
126 {
127 workbench_size = GemmInterleaved<sgemm_12x8, sgemm_12x8::operand_type, sgemm_12x8::result_type>(&ci, M, N, K, false, false).get_working_size();
128 }
129 else if(a->info()->data_type() == DataType::F16)
130 {
131#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
132 workbench_size = GemmInterleaved<hgemm_24x8, hgemm_24x8::operand_type, hgemm_24x8::result_type>(&ci, M, N, K, false, false).get_working_size();
133#else /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
134 ARM_COMPUTE_ERROR("Recompile the library with arch=arm64-v8.2-a to enable support for FP16.");
135#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
136 }
Moritz Pflanzer80373f62017-09-15 10:42:58 +0100137#endif /* defined(__arm__) || defined(__aarch64__) */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100138
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100139 constexpr size_t alignment = 4096;
Pablo Tello4d55e0a2017-11-10 15:57:14 +0000140 ARM_COMPUTE_ERROR_ON_MSG(workbench_size == 0, "size cannot be 0");
141 _workspace.allocator()->init(TensorInfo(TensorShape{ (workbench_size + alignment - 1) * NEScheduler::get().num_threads() }, 1, DataType::S8));
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100142 _memory_group.manage(&_workspace);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100143
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100144 // Configure matrix multiplication kernel
145 _mm_optimised_kernel->configure(a, b, d, &_workspace, alpha, 0.f);
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100146 _workspace.allocator()->allocate();
147 }
148 else
Moritz Pflanzer80373f62017-09-15 10:42:58 +0100149#endif /* defined(__arm__) || defined(__aarch64__) */
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100150 {
151 TensorShape shape_tmp_a = a->info()->tensor_shape();
152 TensorShape shape_tmp_b = b->info()->tensor_shape();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100154 shape_tmp_a.set(0, a->info()->dimension(0) * 4);
155 shape_tmp_a.set(1, std::ceil(a->info()->dimension(1) / 4.0f));
Georgios Pinitas658039b2017-09-15 16:30:50 +0100156
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100157 const unsigned int transpose_w = 16 / data_size_from_type(b->info()->data_type());
158 shape_tmp_b.set(0, b->info()->dimension(1) * transpose_w);
159 shape_tmp_b.set(1, std::ceil(b->info()->dimension(0) / static_cast<float>(transpose_w)));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100160
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100161 TensorInfo info_a(shape_tmp_a, 1, a->info()->data_type(), a->info()->fixed_point_position());
162 TensorInfo info_b(shape_tmp_b, 1, b->info()->data_type(), a->info()->fixed_point_position());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100163
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100164 _tmp_a.allocator()->init(info_a);
165 _tmp_b.allocator()->init(info_b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100166
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100167 // Manage intermediate buffers
168 _memory_group.manage(&_tmp_a);
169 _memory_group.manage(&_tmp_b);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100170
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100171 // Configure interleave kernel
172 _interleave_kernel.configure(a, &_tmp_a);
173
174 // Configure transpose kernel
175 _transpose_kernel.configure(b, &_tmp_b);
176
177 // Configure matrix multiplication kernel
178 _mm_kernel.configure(&_tmp_a, &_tmp_b, d, alpha);
179
180 // Allocate once the all configure methods have been called
181 _tmp_a.allocator()->allocate();
182 _tmp_b.allocator()->allocate();
183
184 // Configure matrix addition kernel
185 if(beta != 0 && c != nullptr)
186 {
187 _ma_kernel.configure(c, d, beta);
188 _run_addition = true;
189 }
190 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100191 }
192}
193
194void NEGEMM::run()
195{
Georgios Pinitas658039b2017-09-15 16:30:50 +0100196 _memory_group.acquire();
197
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100198 if(_mm_optimised_kernel != nullptr)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100199 {
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100200 NEScheduler::get().schedule(_mm_optimised_kernel.get(), Window::DimY);
201 _memory_group.release();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100202 }
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100203 else
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100204 {
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100205 if(!_run_vector_matrix_multiplication)
206 {
207 // Run interleave kernel
208 NEScheduler::get().schedule(&_interleave_kernel, Window::DimY);
209
210 // Run transpose kernel
211 NEScheduler::get().schedule(&_transpose_kernel, Window::DimY);
212 }
213
214 NEScheduler::get().schedule(&_mm_kernel, _run_vector_matrix_multiplication ? Window::DimX : Window::DimY);
215
216 _memory_group.release();
217
218 // Run matrix addition kernel
219 if(_run_addition)
220 {
221 NEScheduler::get().schedule(&_ma_kernel, Window::DimY);
222 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100223 }
224}
Moritz Pflanzerbeabe3b2017-08-31 14:56:32 +0100225} // namespace arm_compute