-
Notifications
You must be signed in to change notification settings - Fork 0
/
openblas_dgemm.cpp
97 lines (82 loc) · 2.6 KB
/
openblas_dgemm.cpp
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
#include <cblas.h>
#include <algorithm>
#include <cstdio>
#include "halide_benchmark.h"
#include "halide_macros.h"
int main() {
double *A, *B, *C;
int m, n, k, i, j;
double alpha, beta;
printf(
"\n This example computes real matrix C=alpha*A*B+beta*C using \n"
" Intel(R) MKL function dgemm, where A, B, and C are matrices and \n"
" alpha and beta are double precision scalars\n\n");
// m = 2000, k = 200, n = 1000;
m = 640, k = 640, n = 640;
printf(
" Initializing data for matrix multiplication C=A*B for matrix \n"
" A(%ix%i) and matrix B(%ix%i)\n\n",
m, k, k, n);
alpha = 1.0;
beta = 0.0;
printf(
" Allocating memory for matrices aligned on 64-byte boundary for better \n"
" performance \n\n");
A = (double *)malloc(m * k * sizeof(double));
B = (double *)malloc(k * n * sizeof(double));
C = (double *)malloc(m * n * sizeof(double));
if (A == NULL || B == NULL || C == NULL) {
printf("\n ERROR: Can't allocate memory for matrices. Aborting... \n\n");
free(A);
free(B);
free(C);
return 1;
}
printf(" Intializing matrix data \n\n");
for (i = 0; i < (m * k); i++) {
A[i] = (double)(i + 1);
}
for (i = 0; i < (k * n); i++) {
B[i] = (double)(-i - 1);
}
for (i = 0; i < (m * n); i++) {
C[i] = 0.0;
}
openblas_set_num_threads(1);
set_math_flags();
printf(" Computing matrix product using Intel(R) MKL dgemm function via CBLAS interface \n\n");
cblas_dgemm(CblasRowMajor, CblasNoTrans, CblasNoTrans, m, n, k, alpha, A, k, B, n, beta, C, n);
printf("\n Computations completed.\n\n");
double elapsed = 1e6 * Halide::Tools::benchmark([&]() {
cblas_dgemm(CblasRowMajor, CblasNoTrans, CblasNoTrans, m, n, k, alpha, A, k, B,
n, beta, C, n);
});
printf("time(us): %f, gflops: %f\n", elapsed, (double)m * n * k * 2 * 1e-3 / elapsed);
printf(" Top left corner of matrix A: \n");
for (i = 0; i < std::min(m, 6); i++) {
for (j = 0; j < std::min(k, 6); j++) {
printf("%12.0f", A[j + i * k]);
}
printf("\n");
}
printf("\n Top left corner of matrix B: \n");
for (i = 0; i < std::min(k, 6); i++) {
for (j = 0; j < std::min(n, 6); j++) {
printf("%12.0f", B[j + i * n]);
}
printf("\n");
}
printf("\n Top left corner of matrix C: \n");
for (i = 0; i < std::min(m, 6); i++) {
for (j = 0; j < std::min(n, 6); j++) {
printf("%12.5G", C[j + i * n]);
}
printf("\n");
}
printf("\n Deallocating memory \n\n");
free(A);
free(B);
free(C);
printf(" Example completed. \n\n");
return 0;
}