Line data Source code
1 : /*----------------------------------------------------------------------------*/
2 : /* CP2K: A general program to perform molecular dynamics simulations */
3 : /* Copyright 2000-2025 CP2K developers group <https://cp2k.org> */
4 : /* */
5 : /* SPDX-License-Identifier: BSD-3-Clause */
6 : /*----------------------------------------------------------------------------*/
7 :
8 : #include <assert.h>
9 : #include <stddef.h>
10 : #include <string.h>
11 :
12 : #if defined(__LIBXSMM)
13 : #include <libxsmm.h>
14 : #if !defined(DBM_LIBXSMM_PREFETCH)
15 : // #define DBM_LIBXSMM_PREFETCH LIBXSMM_GEMM_PREFETCH_AL2_AHEAD
16 : #define DBM_LIBXSMM_PREFETCH LIBXSMM_GEMM_PREFETCH_NONE
17 : #endif
18 : #if LIBXSMM_VERSION4(1, 17, 0, 3710) > LIBXSMM_VERSION_NUMBER
19 : #define libxsmm_dispatch_gemm libxsmm_dispatch_gemm_v2
20 : #endif
21 : #endif
22 :
23 : #include "dbm_hyperparams.h"
24 : #include "dbm_multiply_cpu.h"
25 :
26 : /*******************************************************************************
27 : * \brief Prototype for BLAS dgemm.
28 : * \author Ole Schuett
29 : ******************************************************************************/
30 : void dgemm_(const char *transa, const char *transb, const int *m, const int *n,
31 : const int *k, const double *alpha, const double *a, const int *lda,
32 : const double *b, const int *ldb, const double *beta, double *c,
33 : const int *ldc);
34 :
35 : /*******************************************************************************
36 : * \brief Private convenient wrapper to hide Fortran nature of dgemm_.
37 : * \author Ole Schuett
38 : ******************************************************************************/
39 4298071 : static 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,
43 : const int ldc) {
44 :
45 4298071 : dgemm_(&transa, &transb, &m, &n, &k, &alpha, a, &lda, b, &ldb, &beta, c,
46 : &ldc);
47 : }
48 :
49 : /*******************************************************************************
50 : * \brief Private hash function based on Szudzik's elegant pairing.
51 : * Using unsigned int to return a positive number even after overflow.
52 : * https://en.wikipedia.org/wiki/Pairing_function#Other_pairing_functions
53 : * https://stackoverflow.com/a/13871379
54 : * http://szudzik.com/ElegantPairing.pdf
55 : * \author Ole Schuett
56 : ******************************************************************************/
57 : #if defined(__LIBXSMM)
58 46342510 : static inline unsigned int hash(const dbm_task_t task) {
59 46342510 : const unsigned int m = task.m, n = task.n, k = task.k;
60 46342510 : const unsigned int mn = (m >= n) ? m * m + m + n : m + n * n;
61 46342510 : const unsigned int mnk = (mn >= k) ? mn * mn + mn + k : mn + k * k;
62 46342510 : return mnk;
63 : }
64 : #endif
65 :
66 : /*******************************************************************************
67 : * \brief Internal routine for executing the tasks in given batch on the CPU.
68 : * \author Ole Schuett
69 : ******************************************************************************/
70 215034 : void dbm_multiply_cpu_process_batch(
71 : const int ntasks, const dbm_task_t batch[ntasks], const double alpha,
72 215034 : const dbm_pack_t *pack_a, const dbm_pack_t *pack_b, dbm_shard_t *shard_c) {
73 :
74 215034 : if (0 >= ntasks) { // nothing to do
75 32624 : return;
76 : }
77 182410 : dbm_shard_allocate_promised_blocks(shard_c);
78 :
79 : #if defined(__LIBXSMM)
80 :
81 : // Sort tasks approximately by m,n,k via bucket sort.
82 182410 : int buckets[DBM_BATCH_NUM_BUCKETS] = {0};
83 23353665 : for (int itask = 0; itask < ntasks; ++itask) {
84 23171255 : const int i = hash(batch[itask]) % DBM_BATCH_NUM_BUCKETS;
85 23171255 : ++buckets[i];
86 : }
87 182410000 : for (int i = 1; i < DBM_BATCH_NUM_BUCKETS; ++i) {
88 182227590 : buckets[i] += buckets[i - 1];
89 : }
90 182410 : assert(buckets[DBM_BATCH_NUM_BUCKETS - 1] == ntasks);
91 182410 : int batch_order[ntasks];
92 23353665 : for (int itask = 0; itask < ntasks; ++itask) {
93 23171255 : const int i = hash(batch[itask]) % DBM_BATCH_NUM_BUCKETS;
94 23171255 : --buckets[i];
95 23171255 : batch_order[buckets[i]] = itask;
96 : }
97 :
98 : // Prepare arguments for libxsmm's kernel-dispatch.
99 182410 : const int flags = LIBXSMM_GEMM_FLAG_TRANS_B; // transa = "N", transb = "T"
100 182410 : const int prefetch = DBM_LIBXSMM_PREFETCH;
101 182410 : int kernel_m = 0, kernel_n = 0, kernel_k = 0;
102 182410 : dbm_task_t task_next = batch[batch_order[0]];
103 :
104 : #if (LIBXSMM_GEMM_PREFETCH_NONE != DBM_LIBXSMM_PREFETCH)
105 : double *data_a_next = NULL, *data_b_next = NULL, *data_c_next = NULL;
106 : #endif
107 : #if LIBXSMM_VERSION2(1, 17) < LIBXSMM_VERSION_NUMBER
108 182410 : libxsmm_gemmfunction kernel_func = NULL;
109 : #else
110 : libxsmm_dmmfunction kernel_func = NULL;
111 : const double beta = 1.0;
112 : #endif
113 :
114 : // Loop over tasks.
115 23353665 : for (int itask = 0; itask < ntasks; ++itask) {
116 23171255 : const dbm_task_t task = task_next;
117 23171255 : task_next = batch[batch_order[(itask + 1) < ntasks ? (itask + 1) : itask]];
118 :
119 23171255 : if (task.m != kernel_m || task.n != kernel_n || task.k != kernel_k) {
120 1542650 : if (LIBXSMM_SMM(task.m, task.n, task.m, 1 /*assume in-$, no RFO*/,
121 : sizeof(double))) {
122 : #if LIBXSMM_VERSION2(1, 17) < LIBXSMM_VERSION_NUMBER
123 1483156 : const libxsmm_gemm_shape shape = libxsmm_create_gemm_shape(
124 : task.m, task.n, task.k, task.m /*lda*/, task.n /*ldb*/,
125 : task.m /*ldc*/, LIBXSMM_DATATYPE_F64 /*aprec*/,
126 : LIBXSMM_DATATYPE_F64 /*bprec*/, LIBXSMM_DATATYPE_F64 /*cprec*/,
127 : LIBXSMM_DATATYPE_F64 /*calcp*/);
128 1483156 : kernel_func =
129 : (LIBXSMM_FEQ(1.0, alpha)
130 1196301 : ? libxsmm_dispatch_gemm(shape, (libxsmm_bitfield)flags,
131 : (libxsmm_bitfield)prefetch)
132 1483156 : : NULL);
133 : #else
134 : kernel_func = libxsmm_dmmdispatch(task.m, task.n, task.k, NULL /*lda*/,
135 : NULL /*ldb*/, NULL /*ldc*/, &alpha,
136 : &beta, &flags, &prefetch);
137 : #endif
138 : } else {
139 : kernel_func = NULL;
140 : }
141 : kernel_m = task.m;
142 : kernel_n = task.n;
143 : kernel_k = task.k;
144 : }
145 :
146 : // gemm_param wants non-const data even for A and B
147 23171255 : double *const data_a = pack_a->data + task.offset_a;
148 23171255 : double *const data_b = pack_b->data + task.offset_b;
149 23171255 : double *const data_c = shard_c->data + task.offset_c;
150 :
151 23171255 : if (kernel_func != NULL) {
152 : #if LIBXSMM_VERSION2(1, 17) < LIBXSMM_VERSION_NUMBER
153 18873184 : libxsmm_gemm_param gemm_param;
154 18873184 : gemm_param.a.primary = data_a;
155 18873184 : gemm_param.b.primary = data_b;
156 18873184 : gemm_param.c.primary = data_c;
157 : #if (LIBXSMM_GEMM_PREFETCH_NONE != DBM_LIBXSMM_PREFETCH)
158 : gemm_param.a.quaternary = pack_a->data + task_next.offset_a;
159 : gemm_param.b.quaternary = pack_b->data + task_next.offset_b;
160 : gemm_param.c.quaternary = shard_c->data + task_next.offset_c;
161 : #endif
162 18873184 : kernel_func(&gemm_param);
163 : #elif (LIBXSMM_GEMM_PREFETCH_NONE != DBM_LIBXSMM_PREFETCH)
164 : kernel_func(data_a, data_b, data_c, pack_a->data + task_next.offset_a,
165 : pack_b->data + task_next.offset_b,
166 : shard_c->data + task_next.offset_c);
167 : #else
168 : kernel_func(data_a, data_b, data_c);
169 : #endif
170 : } else {
171 4298071 : dbm_dgemm('N', 'T', task.m, task.n, task.k, alpha, data_a, task.m, data_b,
172 : task.n, 1.0, data_c, task.m);
173 : }
174 : }
175 : #else
176 : // Fallback to BLAS when libxsmm is not available.
177 : for (int itask = 0; itask < ntasks; ++itask) {
178 : const dbm_task_t task = batch[itask];
179 : const double *data_a = &pack_a->data[task.offset_a];
180 : const double *data_b = &pack_b->data[task.offset_b];
181 : double *data_c = &shard_c->data[task.offset_c];
182 : dbm_dgemm('N', 'T', task.m, task.n, task.k, alpha, data_a, task.m, data_b,
183 : task.n, 1.0, data_c, task.m);
184 : }
185 : #endif
186 : }
187 :
188 : // EOF
|