-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathgemm.cc
284 lines (254 loc) · 8.91 KB
/
gemm.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
// Copyright (c) 2017-2023, University of Tennessee. All rights reserved.
// SPDX-License-Identifier: BSD-3-Clause
// This program is free software: you can redistribute it and/or modify it under
// the terms of the BSD 3-Clause license. See the accompanying LICENSE file.
#include "blas/fortran.h"
#include "blas.hh"
#include "blas_internal.hh"
#include "blas/counter.hh"
#include <limits>
#include <string.h>
namespace blas {
//==============================================================================
namespace internal {
//------------------------------------------------------------------------------
/// Low-level overload wrapper calls Fortran, float version.
/// @ingroup gemm_internal
inline void gemm(
char transA, char transB,
blas_int m, blas_int n, blas_int k,
float alpha,
float const* A, blas_int lda,
float const* B, blas_int ldb,
float beta,
float* C, blas_int ldc )
{
BLAS_sgemm( &transA, &transB, &m, &n, &k,
&alpha, A, &lda, B, &ldb, &beta, C, &ldc );
}
//------------------------------------------------------------------------------
/// Low-level overload wrapper calls Fortran, double version.
/// @ingroup gemm_internal
inline void gemm(
char transA, char transB,
blas_int m, blas_int n, blas_int k,
double alpha,
double const* A, blas_int lda,
double const* B, blas_int ldb,
double beta,
double* C, blas_int ldc )
{
BLAS_dgemm( &transA, &transB, &m, &n, &k,
&alpha, A, &lda, B, &ldb, &beta, C, &ldc );
}
//------------------------------------------------------------------------------
/// Low-level overload wrapper calls Fortran, complex<float> version.
/// @ingroup gemm_internal
inline void gemm(
char transA, char transB,
blas_int m, blas_int n, blas_int k,
std::complex<float> alpha,
std::complex<float> const* A, blas_int lda,
std::complex<float> const* B, blas_int ldb,
std::complex<float> beta,
std::complex<float>* C, blas_int ldc )
{
BLAS_cgemm( &transA, &transB, &m, &n, &k,
(blas_complex_float*) &alpha,
(blas_complex_float*) A, &lda,
(blas_complex_float*) B, &ldb,
(blas_complex_float*) &beta,
(blas_complex_float*) C, &ldc );
}
//------------------------------------------------------------------------------
/// Low-level overload wrapper calls Fortran, complex<double> version.
/// @ingroup gemm_internal
inline void gemm(
char transA, char transB,
blas_int m, blas_int n, blas_int k,
std::complex<double> alpha,
std::complex<double> const* A, blas_int lda,
std::complex<double> const* B, blas_int ldb,
std::complex<double> beta,
std::complex<double>* C, blas_int ldc )
{
BLAS_zgemm( &transA, &transB, &m, &n, &k,
(blas_complex_double*) &alpha,
(blas_complex_double*) A, &lda,
(blas_complex_double*) B, &ldb,
(blas_complex_double*) &beta,
(blas_complex_double*) C, &ldc );
}
} // namespace internal
//==============================================================================
namespace impl {
//------------------------------------------------------------------------------
/// Mid-level templated wrapper checks and converts arguments,
/// then calls low-level wrapper.
/// @ingroup gemm_internal
///
template <typename scalar_t>
void gemm(
blas::Layout layout,
blas::Op transA,
blas::Op transB,
int64_t m, int64_t n, int64_t k,
scalar_t alpha,
scalar_t const* A, int64_t lda,
scalar_t const* B, int64_t ldb,
scalar_t beta,
scalar_t* C, int64_t ldc )
{
// check arguments
blas_error_if( layout != Layout::ColMajor &&
layout != Layout::RowMajor );
blas_error_if( transA != Op::NoTrans &&
transA != Op::Trans &&
transA != Op::ConjTrans );
blas_error_if( transB != Op::NoTrans &&
transB != Op::Trans &&
transB != Op::ConjTrans );
blas_error_if( m < 0 );
blas_error_if( n < 0 );
blas_error_if( k < 0 );
if (layout == Layout::ColMajor) {
if (transA == Op::NoTrans)
blas_error_if( lda < m );
else
blas_error_if( lda < k );
if (transB == Op::NoTrans)
blas_error_if( ldb < k );
else
blas_error_if( ldb < n );
blas_error_if( ldc < m );
}
else {
if (transA != Op::NoTrans)
blas_error_if( lda < m );
else
blas_error_if( lda < k );
if (transB != Op::NoTrans)
blas_error_if( ldb < k );
else
blas_error_if( ldb < n );
blas_error_if( ldc < n );
}
#ifdef BLAS_HAVE_PAPI
// PAPI instrumentation
counter::gemm_type element;
memset( &element, 0, sizeof( element ) );
element = { transA, transB, m, n, k };
counter::insert( element, counter::Id::gemm );
double gflops = 1e9 * blas::Gflop< scalar_t >::gemm( m, n, k );
counter::inc_flop_count( (long long int)gflops );
#endif
// convert arguments
blas_int m_ = to_blas_int( m );
blas_int n_ = to_blas_int( n );
blas_int k_ = to_blas_int( k );
blas_int lda_ = to_blas_int( lda );
blas_int ldb_ = to_blas_int( ldb );
blas_int ldc_ = to_blas_int( ldc );
char transA_ = to_char( transA );
char transB_ = to_char( transB );
// call low-level wrapper
if (layout == Layout::RowMajor) {
// swap transA <=> transB, m <=> n, B <=> A
internal::gemm( transB_, transA_, n_, m_, k_,
alpha, B, ldb_, A, lda_, beta, C, ldc_ );
}
else {
internal::gemm( transA_, transB_, m_, n_, k_,
alpha, A, lda_, B, ldb_, beta, C, ldc_ );
}
}
} // namespace impl
//==============================================================================
// High-level overloaded wrappers call mid-level templated wrapper.
// Overloading allows C++ more flexibility to convert scalars,
// and allows for a separate templated implementation.
// When calling a template, all the templated arguments (e.g., scalar_t)
// must match types exactly.
//------------------------------------------------------------------------------
/// CPU, float version.
/// @ingroup gemm
void gemm(
blas::Layout layout,
blas::Op transA,
blas::Op transB,
int64_t m, int64_t n, int64_t k,
float alpha,
float const* A, int64_t lda,
float const* B, int64_t ldb,
float beta,
float* C, int64_t ldc )
{
impl::gemm( layout, transA, transB, m, n, k,
alpha, A, lda, B, ldb, beta, C, ldc );
}
//------------------------------------------------------------------------------
/// CPU, double version.
/// @ingroup gemm
void gemm(
blas::Layout layout,
blas::Op transA,
blas::Op transB,
int64_t m, int64_t n, int64_t k,
double alpha,
double const* A, int64_t lda,
double const* B, int64_t ldb,
double beta,
double* C, int64_t ldc )
{
impl::gemm( layout, transA, transB, m, n, k,
alpha, A, lda, B, ldb, beta, C, ldc );
}
//------------------------------------------------------------------------------
/// CPU, complex<float> version.
/// @ingroup gemm
void gemm(
blas::Layout layout,
blas::Op transA,
blas::Op transB,
int64_t m, int64_t n, int64_t k,
std::complex<float> alpha,
std::complex<float> const* A, int64_t lda,
std::complex<float> const* B, int64_t ldb,
std::complex<float> beta,
std::complex<float>* C, int64_t ldc )
{
impl::gemm( layout, transA, transB, m, n, k,
alpha, A, lda, B, ldb, beta, C, ldc );
}
//------------------------------------------------------------------------------
/// CPU, complex<double> version.
/// @ingroup gemm
void gemm(
blas::Layout layout,
blas::Op transA,
blas::Op transB,
int64_t m, int64_t n, int64_t k,
std::complex<double> alpha,
std::complex<double> const* A, int64_t lda,
std::complex<double> const* B, int64_t ldb,
std::complex<double> beta,
std::complex<double>* C, int64_t ldc )
{
impl::gemm( layout, transA, transB, m, n, k,
alpha, A, lda, B, ldb, beta, C, ldc );
}
} // namespace blas
#ifdef BLAS_HAVE_PAPI
// Hook for papi_native_avail utility. No user code which links against this library should call
// this function because it has the same name in all SDE-enabled libraries. papi_native_avail
// uses dlopen and dlclose on each library so it only has one version of this symbol at a time.
extern "C"
papi_handle_t papi_sde_hook_list_events( papi_sde_fptr_struct_t* fptr_struct )
{
papi_handle_t tmp_handle;
tmp_handle = fptr_struct->init( "blas" );
fptr_struct->create_counting_set( tmp_handle, "counter", NULL );
fptr_struct->register_counter_cb( tmp_handle, "flops", PAPI_SDE_RO|PAPI_SDE_DELTA, PAPI_SDE_long_long, NULL, NULL);
return tmp_handle;
}
#endif