39static inline void dbm_dgemm(
const char transa,
const char transb,
const int m,
40 const int n,
const int k,
const double alpha,
41 const double *a,
const int lda,
const double *b,
42 const int ldb,
const double beta,
double *c,
45 dgemm_(&transa, &transb, &m, &n, &k, &alpha, a, &lda, b, &ldb, &beta, c,
85 for (
int itask = 0; itask < ntasks; ++itask) {
90 buckets[
i] += buckets[
i - 1];
93 int batch_order[ntasks];
94 for (
int itask = 0; itask < ntasks; ++itask) {
97 batch_order[buckets[
i]] = itask;
101 const int flags = LIBXSMM_GEMM_FLAG_TRANS_B;
102 const int prefetch = DBM_LIBXSMM_PREFETCH;
103 int kernel_m = 0, kernel_n = 0, kernel_k = 0;
106#if (LIBXSMM_GEMM_PREFETCH_NONE != DBM_LIBXSMM_PREFETCH)
107 double *data_a_next = NULL, *data_b_next = NULL, *data_c_next = NULL;
109#if LIBXSMM_VERSION2(1, 17) < LIBXSMM_VERSION_NUMBER
110 libxsmm_gemmfunction kernel_func = NULL;
112 libxsmm_dmmfunction kernel_func = NULL;
113 const double beta = 1.0;
117 for (
int itask = 0; itask < ntasks; ++itask) {
119 task_next = batch[batch_order[(itask + 1) < ntasks ? (itask + 1) : itask]];
121 if (task.
m != kernel_m || task.
n != kernel_n || task.
k != kernel_k) {
122 if (LIBXSMM_SMM(task.
m, task.
n, task.
m, 1 ,
124#if LIBXSMM_VERSION2(1, 17) < LIBXSMM_VERSION_NUMBER
125 const libxsmm_gemm_shape shape = libxsmm_create_gemm_shape(
126 task.
m, task.
n, task.
k, task.
m , task.
n ,
127 task.
m , LIBXSMM_DATATYPE_F64 ,
128 LIBXSMM_DATATYPE_F64 , LIBXSMM_DATATYPE_F64 ,
129 LIBXSMM_DATATYPE_F64 );
131 (LIBXSMM_FEQ(1.0, alpha)
132 ? libxsmm_dispatch_gemm(shape, (libxsmm_bitfield)flags,
133 (libxsmm_bitfield)prefetch)
136 kernel_func = libxsmm_dmmdispatch(task.
m, task.
n, task.
k, NULL ,
137 NULL , NULL , &alpha,
138 &beta, &flags, &prefetch);
153 if (kernel_func != NULL) {
154#if LIBXSMM_VERSION2(1, 17) < LIBXSMM_VERSION_NUMBER
155 libxsmm_gemm_param gemm_param;
156 gemm_param.a.primary = data_a;
157 gemm_param.b.primary = data_b;
158 gemm_param.c.primary = data_c;
159#if (LIBXSMM_GEMM_PREFETCH_NONE != DBM_LIBXSMM_PREFETCH)
160 gemm_param.a.quaternary = pack_a->
data + task_next.
offset_a;
161 gemm_param.b.quaternary = pack_b->
data + task_next.
offset_b;
162 gemm_param.c.quaternary = shard_c->
data + task_next.
offset_c;
164 kernel_func(&gemm_param);
165#elif (LIBXSMM_GEMM_PREFETCH_NONE != DBM_LIBXSMM_PREFETCH)
166 kernel_func(data_a, data_b, data_c, pack_a->
data + task_next.
offset_a,
170 kernel_func(data_a, data_b, data_c);
173 dbm_dgemm(
'N',
'T', task.
m, task.
n, task.
k, alpha, data_a, task.
m, data_b,
174 task.
n, 1.0, data_c, task.
m);
179 for (
int itask = 0; itask < ntasks; ++itask) {
184 dbm_dgemm(
'N',
'T', task.
m, task.
n, task.
k, alpha, data_a, task.
m, data_b,
185 task.
n, 1.0, data_c, task.
m);
static void dbm_dgemm(const char transa, const char transb, const int m, const int n, const int k, const double alpha, const double *a, const int lda, const double *b, const int ldb, const double beta, double *c, const int ldc)
Private convenient wrapper to hide Fortran nature of dgemm_.
void dgemm_(const char *transa, const char *transb, const int *m, const int *n, const int *k, const double *alpha, const double *a, const int *lda, const double *b, const int *ldb, const double *beta, double *c, const int *ldc)
Prototype for BLAS dgemm.
void dbm_multiply_cpu_process_batch(const int ntasks, dbm_task_t batch[ntasks], const double alpha, const dbm_pack_t *pack_a, const dbm_pack_t *pack_b, dbm_shard_t *shard_c)
Private hash function based on Szudzik's elegant pairing. Using unsigned int to return a positive num...
static unsigned int hash(const unsigned int row, const unsigned int col)
Private hash function based on Cantor pairing function. https://en.wikipedia.org/wiki/Pairing_functio...