-
Notifications
You must be signed in to change notification settings - Fork 12
/
MMult_4x16_20.c
649 lines (569 loc) · 18 KB
/
MMult_4x16_20.c
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
#ifdef __ARM_NEON
#include <arm_neon.h>
#else
#error("only support arm neon")
#endif
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
/* Block sizes */
#define DEBUG_PACK_SHAPE
#undef DEBUG_PACK_SHAPE
#define DEBUG_PRINT_A
#define DEBUG_PRINT_B
#define DEBUG_PRINT_C
#undef DEBUG_PRINT_B
#undef DEBUG_PRINT_A
#undef DEBUG_PRINT_C
#undef DEBUG_PRINT_DATA
/* Create macros so that the matrices are stored in row-major order */
#define A(i,j) a[ (i)*lda + (j) ]
#define B(i,j) b[ (i)*ldb + (j) ]
#define C(i,j) c[ (i)*ldc + (j) ]
#define min(i, j) ((i) < (j) ? (i): (j))
/**
Target: 24gflops on RK3399
*/
//#define GEMM_N (384) // GEMM_R
//#define GEMM_M (4096) // GEMM_P
//#define GEMM_K (256) // GEMM_Q
#define GEMM_N (768) // GEMM_R
#define GEMM_M (4096) // GEMM_P
#define GEMM_K (512) // GEMM_Q
#define GEMM_UNROLL_K (16)
#define GEMM_UNROLL_M (4)
#define GEMM_UNROLL_N (4)
#define KERNEL_4x16 kernel_4x16
double dclock();
void print_int8_matrix( int m, int n, int8_t *a, int lda);
void print_int32_matrix( int m, int n, int32_t *a, int lda);
/* Routine for computing C = A * B + C */
void packN_16(int k, int n, int8_t* from, int ldb, int8_t* to);
void packZ_16(int m, int k, int8_t* from, int lda, int8_t* to);
void kernel_4x16(int m, int n, int k,
int8_t* sa, int8_t* sb, int32_t* sc, int ldc);
int8_t* fastMalloc(int size){
void* ptr = 0;
int iRet = posix_memalign(&ptr, 16, size * sizeof(int8_t));
assert(0 == iRet);
return ptr;
}
/* Suppose that m%4==0 and n%4==0 and k%4==0, avoiding process boundary !! */
void MY_MMult(int m, int n, int k, int8_t * restrict a, int lda,
int8_t * restrict b, int ldb,
int32_t * restrict c, int ldc,
double *packZ_cost,
double *packN_cost,
double *kernel_cost)
{
*packN_cost = *packZ_cost = *kernel_cost = 0.0;
#if (defined DEBUG_PRINT_A) || (defined DEBUG_PRINT_B || defined DEBUG_PRINT_C)
printf("\n--- a ----\n");
print_int8_matrix(m, k, a, lda);
printf("\n--- b ----\n");
print_int8_matrix(k, n, b, ldb);
printf("\n-------\n");
#endif
int8_t* restrict sa = fastMalloc(m * k);
int8_t* restrict sb = fastMalloc(k * n);
double temp;
#if 1
int ms, mms, ns, ks;
int min_m, min_mm, min_n, min_k;
int l1stride = 1;
for (ms = 0; ms < m; ms += GEMM_M) {
min_m = m - ms;
if (min_m > GEMM_M) {
min_m = GEMM_M;
}
for (ks = 0; ks < k; ks += min_k){
min_k = k - ks;
if (min_k >= (GEMM_K << 1)) {
min_k = GEMM_K;
} else if (min_k > GEMM_K) {
min_k = (min_k / 2 + GEMM_UNROLL_K - 1) & ~(GEMM_UNROLL_K - 1);
}
// first packB
min_n = n;
if (n >= GEMM_N * 2) {
min_n = GEMM_N;
} else if(n > GEMM_N) {
min_n = (min_n / 2 + GEMM_UNROLL_N - 1) & ~(GEMM_UNROLL_N - 1);
} else {
l1stride = 1;
}
#ifdef DEBUG_CLOCK
temp = dclock();
#endif
packN_16(min_k, min_n, b + ks * ldb, ldb, sb);
#ifdef DEBUG_CLOCK
(*packN_cost) += (dclock() - temp);
#endif
#ifdef DEBUG_PRINT_B
printf("\n ----- sb -- k n offset -- %d %d %d \n", min_k, min_n, ks * ldb);
print_int8_matrix(m, k, sb, ldb);
#endif
// micro kernel, split A Block to smaller Panel
for (mms = ms; mms < ms + min_m; mms += min_mm) {
min_mm = (ms + min_m) - mms;
if (min_mm >= 3 * GEMM_UNROLL_M) {
min_mm = 3 * GEMM_UNROLL_M;
} else if(min_mm >= 2 * GEMM_UNROLL_M) {
min_mm = 2 * GEMM_UNROLL_M;
} else if(min_mm > GEMM_UNROLL_M) {
min_mm = GEMM_UNROLL_M;
}
// coninueous packA
#ifdef DEBUG_CLOCK
temp = dclock();
#endif
packZ_16(min_mm, min_k, a + mms * lda + ks, lda, sa + min_k * (mms - ms) * l1stride);
#ifdef DEBUG_CLOCK
(*packZ_cost) += (dclock() - temp);
#endif
#ifdef DEBUG_PRINT_A
printf("\n ----- sa --m k %d %d-- \n", mms - ms, min_k);
print_int8_matrix(m, k, sa, lda);
#endif
#ifdef DEBUG_CLOCK
temp = dclock();
#endif
KERNEL_4x16(min_mm, min_n, min_k, sa + l1stride * min_k * (mms - ms), sb, c + mms * ldc, ldc);
#ifdef DEBUG_CLOCK
(*kernel_cost) += (dclock() - temp);
#endif
#ifdef DEBUG_PRINT_C
printf("\n---first kernel----\n");
print_int32_matrix(m, n, c, ldc);
#endif
}
// the first B Block has been packed, proc the others
for (ns = min_n; ns < n; ns += min_n) {
min_n = n - ns;
if (min_n >= GEMM_N * 2) {
min_n = GEMM_N;
} else if(min_n > GEMM_N) {
min_n = (min_n / 2 + GEMM_UNROLL_N - 1) & ~(GEMM_UNROLL_N - 1);
}
#ifdef DEBUG_CLOCK
temp = dclock();
#endif
packN_16(min_k, min_n, b + ns + ldb * ks, ldb, sb);
#ifdef DEBUG_CLOCK
(*packN_cost) += (dclock() - temp);
#endif
#ifdef DEBUG_PRINT_B
printf("\n ----- sb -- k n offset -- %d %d %d\n", min_k, min_n, ks * ldb + ns);
print_int8_matrix(m, k, sb, ldb);
#endif
KERNEL_4x16(min_m, min_n, min_k, sa, sb, c + ms * ldc + ns, ldc);
#ifdef DEBUG_PRRINT_C
printf("\n----second kernel---\n");
print_int32_matrix(m, n, c, ldc);
#endif
}
}
}
#endif
free(sa);
free(sb);
}
/**
int8_t* a: A
int8_t* b: (B)T
int8_t* c: C
C = A * (B)T
A1 A2 A3 B1 B4 B7
A4 A5 A6 x B2 B5 B8 => C1 C4 C7 C2 C5 C8 C3 C6 C9 (packed)
A7 A8 A9 B3 B4 B9
Calculation sequence:
1st. calculate C1
2st. calculate C4
3st. calculate C7
...
9st. calculate C9
A1-A9/B1-B9 is packed block, not single number.
C1-C9 is 4x4 block, not single number.
Output
C1 C2 C3
C4 C5 C6
C7 C8 C9
*/
// step 1. 8x8 calculation passed
// step 2. mxn passed
// step 3. assembly
void kernel_sub_v1(int m, int n, int k, int8_t *sa, int8_t *sb, int32_t *sc, int ldc) {
int8_t *a = sa;
int32_t *c = sc;
for (int i = 0; i < m; ++i) {
int8_t *b = sb;
for (int j = 0; j < n; ++j) {
for (int x = 0; x < k; ++x) {
c[j] += (int32_t)(a[x]) * b[x];
}
b += k;
}
a += k;
c += ldc;
}
}
extern void kernel_sub_m4n4k16(int8_t *sa, int8_t *sb, int32_t *sc, int ldc, int repeat);
static void kernel_sub_v2(int m, int n, int k, int8_t *sa, int8_t *sb, int32_t *sc, int ldc) {
if (4 == m && 4 == n && 16 == k) {
kernel_sub_m4n4k16(sa, sb, sc, ldc * sizeof(ldc), 1);
return;
}
int8_t *a = sa;
int32_t *c = sc;
for (int i = 0; i < m; ++i) {
int8_t *b = sb;
for (int j = 0; j < n; ++j) {
for (int x = 0; x < k; ++x) {
c[j] += (int32_t)(a[x]) * b[x];
}
b += k;
}
a += k;
c += ldc;
}
}
static void kernel_m4n4(int k, int8_t *sa, int8_t *sb, int32_t *sc, int ldc) {
//sum_all( A4xsubk * Bsubkx4 )
int8_t *a = sa, *b = sb;
int shift = 4;
while (k > 0) {
int repeat = k >> shift;
int step = 1 << shift;
if (step==16 && repeat > 0) {
kernel_sub_m4n4k16(sa, sb, sc, ldc * sizeof(ldc), repeat);
a += repeat << (2 + shift);
b += repeat << (2 + shift);
} else {
for (int i = 0; i < repeat; ++i) {
kernel_sub_v2(4, 4, step, a, b, sc, ldc);
a += 4 * step;
b += 4 * step;
}
}
k -= (repeat << shift);
shift--;
}
}
// get c[m, n] output
static void kernel_mn(int m, int n, int k, int8_t *sa, int8_t *sb, int32_t *sc, int ldc) {
//sum_all( A4xsubk * Bsubkx4 )
int8_t *a = sa, *b = sb;
int shift = 4;
while (k > 0) {
int repeat = k >> shift;
int step = 1 << shift;
if (4 == m && 4 == n && step==16 && repeat > 0) {
kernel_sub_m4n4k16(sa, sb, sc, ldc * sizeof(ldc), repeat);
a += repeat << (2 + shift);
b += repeat << (2 + shift);
} else {
for (int i = 0; i < repeat; ++i) {
kernel_sub_v2(m, n, step, a, b, sc, ldc);
a += m * step;
b += n * step;
}
}
k -= (repeat << shift);
shift--;
}
}
// proc m lines
static void kernel_m(int m, int n, int k, int8_t *sa, int8_t *sb, int32_t *sc, int ldc) {
// m == 4
int nn = n;
int8_t *b = sb;
int32_t *c = sc;
while(nn >= 4) {
kernel_mn(m, 4, k, sa, b, c, ldc);
b += 4 * k;
c += 4;
nn -= 4;
};
if(nn >= 2) {
kernel_mn(m, 2, k, sa, b, c, ldc);
b += 2 * k;
c += 2;
nn -= 2;
}
if(nn >= 1) {
kernel_mn(m, 1, k, sa, b, c, ldc);
b += 1 * k;
c += 1;
nn -= 1;
}
}
static void kernel_m4(int n, int k, int8_t *sa, int8_t *sb, int32_t *sc, int ldc) {
// m == 4
int nn = n;
int8_t *b = sb;
int32_t *c = sc;
while(nn >= 4) {
kernel_m4n4(k, sa, b, c, ldc);
b += 4 * k;
c += 4;
nn -= 4;
};
if(nn >= 2) {
kernel_mn(4, 2, k, sa, b, c, ldc);
b += 2 * k;
c += 2;
nn -= 2;
}
if(nn >= 1) {
kernel_mn(4, 1, k, sa, b, c, ldc);
b += 1 * k;
c += 1;
nn -= 1;
}
}
void kernel_4x16(int m, int n, int k,
int8_t* sa, int8_t* sb, int32_t* sc, int ldc){
int mm = m;
int8_t *a = sa;
int32_t *c = sc;
while(mm >= 4){
kernel_m4(n, k, a, sb, c, ldc);
a += 4 * k;
c += 4 * ldc;
mm -= 4;
};
if(mm >= 2){
kernel_m(2, n, k, a, sb, c, ldc);
a += 2 * k;
c += 2 * ldc;
mm -= 2;
}
if(mm >= 1){
kernel_m(1, n, k, a, sb, c, ldc);
a += k;
c += ldc;
mm--;
}
}
static void packZ_sub(int8_t *from, int lda, int8_t * restrict to, int m, int n, int repeat) {
int8_t *ptr;
for (int r = 0; r < repeat; ++r) {
ptr = from;
for (int i = 0; i < m; ++i) {
memcpy(to, ptr, n * sizeof(int8_t));
to += n;
ptr += lda;
}
from += n;
}
}
// pack4x16
void packZ_16(int m, int k, int8_t* from, int lda, int8_t* to) {
#ifdef DEBUG_PACK_SHAPE
printf("\n packZ_16, m=%d, k=%d", m, k);
#endif
// TODO to be optimize
int i, repeat;
int col, proc_col;
int8_t *a_offset = from;
int8_t *col_offset = a_offset;
int8_t *row_offset = col_offset;
int8_t *c = to;
int shift = 2;
while (m > 0) {
assert(shift >= 0);
i = m >> shift;
const int proc_row = 1 << shift;
while (i > 0) {
col = k;
col_offset = row_offset;
// proc 16x col
repeat = col >> 4;
proc_col = repeat << 4;
packZ_sub(col_offset, lda, c, proc_row, 16, repeat);
col_offset += proc_col;
c += proc_row * proc_col;
col -= proc_col;
// proc 8x col
repeat = col >> 3;
proc_col = repeat << 3;
packZ_sub(col_offset, lda, c, proc_row, 8, repeat);
col_offset += proc_col;
c += proc_row * proc_col;
col -= proc_col;
// proc 4x col
repeat = col >> 2;
proc_col = repeat << 2;
packZ_sub(col_offset, lda, c, proc_row, 4, repeat);
col_offset += proc_col;
c += proc_row * proc_col;
col -= proc_col;
// proc 2x col
repeat = col >> 1;
proc_col = repeat << 1;
packZ_sub(col_offset, lda, c, proc_row, 2, repeat);
col_offset += proc_col;
c += proc_row * proc_col;
col -= proc_col;
// prco 1x col
packZ_sub(col_offset, lda, c, proc_row, 1, col);
col_offset += col;
c += proc_row * col;
row_offset += proc_row * lda;
--i;
};
a_offset += ((m >> shift) << shift) * lda;
row_offset = a_offset;
m -= ((m >> shift) << shift);
--shift;
}
}
void packN_sub(int8_t * restrict from, int ldb, int8_t * restrict to, int m, int n, int repeat) {
int8_t *ctemp[16] = {0};
for (int r = 0; r < repeat; ++r) {
if (m == 1) {
ctemp[0] = from;
} else if (m == 2) {
ctemp[0] = from;
ctemp[1] = from + ldb;
} else if (m == 4) {
ctemp[0] = from;
ctemp[1] = from + ldb;
ctemp[2] = from + 2 * ldb;
ctemp[3] = from + 3 * ldb;
} else if (m == 8) {
ctemp[0] = from;
ctemp[1] = from + ldb;
ctemp[2] = from + 2 * ldb;
ctemp[3] = from + 3 * ldb;
ctemp[4] = from + 4 * ldb;
ctemp[5] = from + 5 * ldb;
ctemp[6] = from + 6 * ldb;
ctemp[7] = from + 7 * ldb;
} else if (m == 16) {
ctemp[0] = from;
ctemp[1] = from + ldb;
ctemp[2] = from + 2 * ldb;
ctemp[3] = from + 3 * ldb;
ctemp[4] = from + 4 * ldb;
ctemp[5] = from + 5 * ldb;
ctemp[6] = from + 6 * ldb;
ctemp[7] = from + 7 * ldb;
ctemp[8] = from + 8 * ldb;
ctemp[9] = from + 9 * ldb;
ctemp[10] = from + 10 * ldb;
ctemp[11] = from + 11 * ldb;
ctemp[12] = from + 12 * ldb;
ctemp[13] = from + 13 * ldb;
ctemp[14] = from + 14 * ldb;
ctemp[15] = from + 15 * ldb;
} else {
assert(0);
}
for (int i = 0; i < n; ++i) {
if (m == 1) {
to[0] = ctemp[0][i];
} else if (m == 2) {
to[0] = ctemp[0][i];
to[1] = ctemp[1][i];
} else if (m == 4) {
to[0] = ctemp[0][i];
to[1] = ctemp[1][i];
to[2] = ctemp[2][i];
to[3] = ctemp[3][i];
} else if (m == 8) {
to[0] = ctemp[0][i];
to[1] = ctemp[1][i];
to[2] = ctemp[2][i];
to[3] = ctemp[3][i];
to[4] = ctemp[4][i];
to[5] = ctemp[5][i];
to[6] = ctemp[6][i];
to[7] = ctemp[7][i];
} else if (m == 16) {
to[0] = ctemp[0][i];
to[1] = ctemp[1][i];
to[2] = ctemp[2][i];
to[3] = ctemp[3][i];
to[4] = ctemp[4][i];
to[5] = ctemp[5][i];
to[6] = ctemp[6][i];
to[7] = ctemp[7][i];
to[8] = ctemp[8][i];
to[9] = ctemp[9][i];
to[10] = ctemp[10][i];
to[11] = ctemp[11][i];
to[12] = ctemp[12][i];
to[13] = ctemp[13][i];
to[14] = ctemp[14][i];
to[15] = ctemp[15][i];
} else {
assert(0);
}
to += m;
}
from += ldb * m;
}
}
// pack16x4
void packN_16(int k, int n, int8_t* from, int ldb, int8_t* to) {
#ifdef DEBUG_PACK_SHAPE
printf("\n packN_16, k=%d, n=%d", k, n);
#endif
int i, repeat;
int row;
int proc_row;
int8_t *a_offset = from;
int8_t *a_offset1 = a_offset;
int8_t *c = to;
int shift = 2;
while (n > 0) {
assert(shift >= 0);
i = n >> shift;
const int proc_col = 1 << shift;
while (i > 0) {
row = k;
// proc 16x row
repeat = row >> 4;
proc_row = repeat << 4;
packN_sub(a_offset1, ldb, c, 16, proc_col, repeat);
a_offset1 += proc_row * ldb;
c += proc_row * proc_col;
row -= proc_row;
// proc 8x row
repeat = row >> 3;
proc_row = repeat << 3;
packN_sub(a_offset1, ldb, c, 8, proc_col, repeat);
a_offset1 += proc_row * ldb;
c += proc_row * proc_col;
row -= proc_row;
// proc 4x row
repeat = row >> 2;
proc_row = repeat << 2;
packN_sub(a_offset1, ldb, c, 4, proc_col, repeat);
a_offset1 += proc_row * ldb;
c += proc_row * proc_col;
row -= proc_row;
// proc 2x row
repeat = row >> 1;
proc_row = repeat << 1;
packN_sub(a_offset1, ldb, c, 2, proc_col, repeat);
a_offset1 += proc_row * ldb;
c += proc_row * proc_col;
row -= proc_row;
// proc 1x row
repeat = row;
proc_row = repeat;
packN_sub(a_offset1, ldb, c, 1, proc_col, repeat);
a_offset1 += proc_row * ldb;
c += proc_col * row;
row -= proc_row;
--i;
a_offset += proc_col;
a_offset1 = a_offset;
};
n -= ((n >> shift) << shift);
--shift;
}
}