blob: f7e97e47b848a59eb0081585900f2c8473818031 [file] [log] [blame]
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +01001/*
Gian Marco Iodice37a46112021-08-04 15:22:28 +01002 * Copyright (c) 2017-2021 Arm Limited.
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +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 "GEMM.h"
25
Michalis Spyroud1d77222020-04-08 14:10:15 +010026#include "arm_compute/core/Helpers.h"
Georgios Pinitas583137c2017-08-31 18:12:42 +010027#include "arm_compute/core/Types.h"
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010028
29namespace arm_compute
30{
31namespace test
32{
33namespace validation
34{
35namespace reference
36{
37template <typename T, typename std::enable_if<is_floating_point<T>::value, int>::type>
38SimpleTensor<T> gemm(const SimpleTensor<T> &a, const SimpleTensor<T> &b, const SimpleTensor<T> &c, float alpha, float beta)
39{
40 // Create reference
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010041 SimpleTensor<T> dst{ c.shape(), c.data_type(), 1 };
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010042
43 // Compute reference
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010044 const int M = a.shape().y();
45 const int N = b.shape().x();
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010046 const int K = a.shape().x();
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010047 const int D = a.shape().z(); // Number of matrices in a batch
48 const int W = a.shape()[3]; // Number of batched-gemm (Winograd case)
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010049
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010050 const int a_stride_z = K * M;
51 const int a_stride_w = K * M * D;
52
53 const int b_stride_z = b.shape().num_dimensions() > 2 ? N * K : 0; // Do not slide the matrix B along the 3th dimension in case matrix B has less than 3 dimensions
Gian Marco Iodice37a46112021-08-04 15:22:28 +010054 int b_stride_w = b.shape().num_dimensions() > 3 ? K * N * D : 0; // Do not slide the matrix B along the 4th dimension in case matrix B has less than 4 dimensions
55
56 // Note: There are 3 gemm types: batched-gemm, multi-gemm, and batched of multi-gemms. The third dimension of tensor b is overloaded when tensor b has exactly 3 dimensions:
57 // it can be either number of batches or multis. Batched-GEMM computation is detected only when the third dimension of "a" and "c" tensors is 1 and the number of dimensions is 4
58 const bool is_batched_gemm = b.shape().num_dimensions() == 3 && a.shape().num_dimensions() == 4 && c.shape().num_dimensions() == 4 && a.shape()[2] == 1 && c.shape()[2] == 1;
59
60 // Batched-GEMM
61 if(is_batched_gemm)
62 {
63 b_stride_w = b_stride_z;
64 }
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010065
66 const int c_stride_z = N * M;
67 const int c_stride_w = N * M * D;
68
Gian Marco Iodice37a46112021-08-04 15:22:28 +010069#if defined(_OPENMP) && !(defined(__arm__) && defined(__ANDROID__))
Michalis Spyroud1d77222020-04-08 14:10:15 +010070 #pragma omp parallel for collapse(2)
71#endif /* _OPENMP */
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010072 for(int w = 0; w < W; ++w)
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010073 {
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010074 for(int depth = 0; depth < D; ++depth)
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010075 {
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010076 const int base_addr_a = depth * a_stride_z + w * a_stride_w;
77 const int base_addr_b = depth * b_stride_z + w * b_stride_w;
78 const int base_addr_c = depth * c_stride_z + w * c_stride_w;
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010079
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010080 for(int row = 0; row < M; ++row)
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010081 {
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010082 for(int col = 0; col < N; ++col)
83 {
84 T acc(0);
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010085
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +010086 for(int k = 0; k < K; ++k)
87 {
88 acc += a[base_addr_a + k + row * K] * b[base_addr_b + col + k * N];
89 }
90
91 // Finalize the result: alpha * A * B + beta * C
92 dst[base_addr_c + col + row * N] = alpha * acc + beta * c[base_addr_c + col + row * N];
93 }
94 }
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +010095 }
96 }
97
98 return dst;
99}
100
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +0100101template <typename T, typename std::enable_if<is_floating_point<T>::value, int>::type>
102SimpleTensor<T> gemm_mixed_precision(const SimpleTensor<T> &a, const SimpleTensor<T> &b, const SimpleTensor<T> &c, float alpha, float beta)
103{
104 // GEMM mixed-precision combines F32 accumulators with F16 multiplications
105 // Create reference
106 SimpleTensor<T> dst{ c.shape(), c.data_type(), 1 };
107
108 // Compute reference
109 const int M = a.shape().y();
110 const int N = b.shape().x();
111 const int K = a.shape().x();
112 const int D = a.shape().z(); // Number of matrices in a batch
113 const int W = a.shape()[3]; // Number of batched-gemm (Winograd case)
114
115 const int a_stride_z = K * M;
116 const int a_stride_w = K * M * D;
117
118 const int b_stride_z = b.shape().num_dimensions() > 2 ? N * K : 0; // Do not slide the matrix B along the 3th dimension in case matrix B has less than 3 dimensions
Gian Marco Iodice37a46112021-08-04 15:22:28 +0100119 int b_stride_w = b.shape().num_dimensions() > 3 ? K * N * D : 0; // Do not slide the matrix B along the 4th dimension in case matrix B has less than 4 dimensions
120
121 // Note: There are 3 gemm types: batched-gemm, multi-gemm, and batched of multi-gemms. The third dimension of tensor b is overloaded when tensor b has exactly 3 dimensions:
122 // it can be either number of batches or multis. Batched-GEMM computation is detected only when the third dimension of "a" and "c" tensors is 1 and the number of dimensions is 4
123 const bool is_batched_gemm = b.shape().num_dimensions() == 3 && a.shape().num_dimensions() == 4 && c.shape().num_dimensions() == 4 && a.shape()[2] == 1 && c.shape()[2] == 1;
124
125 // Batched-GEMM
126 if(is_batched_gemm)
127 {
128 b_stride_w = b_stride_z;
129 }
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +0100130
131 const int c_stride_z = N * M;
132 const int c_stride_w = N * M * D;
133
Gian Marco Iodice37a46112021-08-04 15:22:28 +0100134#if defined(_OPENMP) && !(defined(__arm__) && defined(__ANDROID__))
Michalis Spyroud1d77222020-04-08 14:10:15 +0100135 #pragma omp parallel for collapse(2)
136#endif /* _OPENMP */
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +0100137 for(int w = 0; w < W; ++w)
138 {
139 for(int depth = 0; depth < D; ++depth)
140 {
141 const int base_addr_a = depth * a_stride_z + w * a_stride_w;
142 const int base_addr_b = depth * b_stride_z + w * b_stride_w;
143 const int base_addr_c = depth * c_stride_z + w * c_stride_w;
144
145 for(int row = 0; row < M; ++row)
146 {
147 for(int col = 0; col < N; ++col)
148 {
149 float acc(0);
150
151 for(int k = 0; k < K; ++k)
152 {
153 acc += static_cast<float>(a[base_addr_a + k + row * K] * b[base_addr_b + col + k * N]);
154 }
155
156 // Finalize the result: alpha * A * B + beta * C
157 dst[base_addr_c + col + row * N] = static_cast<T>(alpha * acc + beta * c[base_addr_c + col + row * N]);
158 }
159 }
160 }
161 }
162
163 return dst;
164}
165
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100166template SimpleTensor<float> gemm(const SimpleTensor<float> &a, const SimpleTensor<float> &b, const SimpleTensor<float> &c, float alpha, float beta);
Georgios Pinitas583137c2017-08-31 18:12:42 +0100167template SimpleTensor<half> gemm(const SimpleTensor<half> &a, const SimpleTensor<half> &b, const SimpleTensor<half> &c, float alpha, float beta);
Gian Marco Iodice0c17aa22019-09-27 09:23:15 +0100168template SimpleTensor<half> gemm_mixed_precision(const SimpleTensor<half> &a, const SimpleTensor<half> &b, const SimpleTensor<half> &c, float alpha, float beta);
Moritz Pflanzer4dfc2352017-08-02 14:51:36 +0100169} // namespace reference
170} // namespace validation
171} // namespace test
172} // namespace arm_compute