blob: c47a0e71fbd5c6e55188c3bf8eff87dd6a6449be [file] [log] [blame]
Anthony Barbier7068f992017-10-26 15:23:08 +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/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;
41
42GCGEMM::GCGEMM()
43 : _interleave_kernel(), _transpose_kernel(), _mm_kernel(), _ma_kernel(), _tmp_a(), _tmp_b(), _is_interleaved_transposed(false), _run_addition(false)
44{
45}
46
47void GCGEMM::configure(const IGCTensor *a, const IGCTensor *b, const IGCTensor *c, IGCTensor *output, float alpha, float beta)
48{
49 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(a, 1, DataType::F32);
50 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(a, b, output);
51
52 if(c != nullptr)
53 {
54 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(a, c);
55 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");
56 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 C");
57 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");
58 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");
59 }
60
61 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");
62
63 // If the input tensor has less than 16 rows, we run a special version of GEMM without reshaping the input tensors
64 _is_interleaved_transposed = a->info()->dimension(1) > 16;
65
66 const IGCTensor *matrix_a = a;
67 const IGCTensor *matrix_b = b;
68
69 if(_is_interleaved_transposed)
70 {
71 matrix_a = &_tmp_a;
72 matrix_b = &_tmp_b;
73
74 TensorShape shape_tmp_a = a->info()->tensor_shape();
75 TensorShape shape_tmp_b = b->info()->tensor_shape();
76
77 shape_tmp_a.set(0, a->info()->dimension(0) * 4);
78 shape_tmp_a.set(1, std::ceil(a->info()->dimension(1) / 4.0f));
79
80 const unsigned int transpose_w = max_gc_vector_width / data_size_from_type(b->info()->data_type());
81 shape_tmp_b.set(0, b->info()->dimension(1) * transpose_w);
82 shape_tmp_b.set(1, std::ceil(b->info()->dimension(0) / static_cast<float>(transpose_w)));
83
84 TensorInfo info_a(shape_tmp_a, 1, a->info()->data_type(), a->info()->fixed_point_position());
85 _tmp_a.allocator()->init(info_a);
86
87 TensorInfo info_b(shape_tmp_b, 1, b->info()->data_type(), b->info()->fixed_point_position());
88 _tmp_b.allocator()->init(info_b);
89
90 // Configure interleave kernel
91 _interleave_kernel.configure(a, &_tmp_a);
92
93 // Configure transpose kernel
94 _transpose_kernel.configure(b, &_tmp_b);
95 }
96
97 _mm_kernel.configure(matrix_a, matrix_b, output, alpha, _is_interleaved_transposed);
98
99 if(_is_interleaved_transposed)
100 {
101 // Allocate intermediate tensors
102 _tmp_a.allocator()->allocate();
103 _tmp_b.allocator()->allocate();
104 }
105
106 // Configure matrix addition kernel
107 if(beta != 0 && c != nullptr)
108 {
109 _ma_kernel.configure(c, output, beta);
110 _run_addition = true;
111 }
112}
113
114void GCGEMM::run()
115{
116 if(_is_interleaved_transposed)
117 {
118 // Run interleave kernel
119 GCScheduler::get().enqueue(_interleave_kernel, false);
120
121 // Run transpose kernel
122 GCScheduler::get().enqueue(_transpose_kernel, false);
123 }
124
125 // Run matrix multiply kernel
126 GCScheduler::get().enqueue(_mm_kernel, !_run_addition);
127
128 // Run matrix addition kernel
129 if(_run_addition)
130 {
131 GCScheduler::get().enqueue(_ma_kernel);
132 }
133}