-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
177 lines (143 loc) · 4.79 KB
/
main.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
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <math.h>
/* Prototypes for the Fortran functions */
/* Dot product */
double dot_blas_(const int *n, const double *x1, const double *x2);
double dot_for_(const int *n, const double *x1, const double *x2);
double dot_intrinsic_(const int *n, const double *x1, const double *x2);
/* Matrix - vector multiply */
void matvec_blas_(const int *m, const int *n, const double *mat, const double *vec, double *res);
void matvec_for_(const int *m, const int *n, const double *mat, const double *vec, double *res);
void matvec_intrinsic_(const int *m, const int *n, const double *mat, const double *vec, double *res);
/* Matrix - matrix multiply */
void matmat_blas_(const int *m, const int *n, const int *k, const double *a, const double *b, double *c);
void matmat_for_(const int *m, const int *n, const int *k, const double *a, const double *b, double *c);
void matmat_intrinsic_(const int *m, const int *n, const int *k, const double *a, const double *b, double *c);
double time_elapsed(const struct timespec start, const struct timespec end) {
return (end.tv_sec-start.tv_sec)+1.0e-9*(end.tv_nsec-start.tv_nsec);
}
int main(void) {
/* Size of array and vector index variable */
int N, i, j;
/* Timing stuff */
struct timespec start, stop;
/* Vector, and dot products */
double *x=NULL, dblas, dfor, dint;
/* Matrix, vector and result */
double *mat=NULL, *vec=NULL, *res=NULL;
/* Matrix, matrix, matrix */
double *a=NULL, *b=NULL, *c=NULL;
/* Times of computing dot products */
double tblas, tfor, tint;
printf("Dot products:\n");
// for(N=10;N<=1e9;N*=10) {
for(N=10;N<=1e3;N*=10) {
/* Increase size of x */
x=realloc(x,N*sizeof(double));
/* Initialize x */
for(i=0;i<N;i++)
x[i]=i*0.1;
/* Compute dot products */
/* BLAS */
clock_gettime(CLOCK_REALTIME,&start);
dblas=dot_blas_(&N,x,x);
clock_gettime(CLOCK_REALTIME,&stop);
tblas=time_elapsed(start,stop);
/* For loop */
clock_gettime(CLOCK_REALTIME,&start);
dfor=dot_for_(&N,x,x);
clock_gettime(CLOCK_REALTIME,&stop);
tfor=time_elapsed(start,stop);
/* Intrinsic Fortran */
clock_gettime(CLOCK_REALTIME,&start);
dint=dot_intrinsic_(&N,x,x);
clock_gettime(CLOCK_REALTIME,&stop);
tint=time_elapsed(start,stop);
/* Print out results */
printf("N = %8i\n",N);
printf("\tblas\t%e\t%e\n",dblas,tblas);
printf("\tfor\t%e\t%e\n",dfor,tfor);
printf("\tintr\t%e\t%e\n",dint,tint);
}
free(x);
/* Same thing for matrix-vector product */
printf("\n\nMatrix-vector:\n");
for(N=10;N<=1e4;N*=10) {
//for(N=10;N<=1e2;N*=10) {
/* Increase size of mat and vec */
mat=realloc(mat,N*N*sizeof(double));
vec=realloc(vec,N*sizeof(double));
res=realloc(res,N*sizeof(double));
/* Initialize mat and vec */
for(j=0;j<N;j++)
for(i=0;i<N;i++)
mat[j*N+i]=1.0/(i+j+2);
for(i=0;i<N;i++)
vec[i]=i+1.0;
/* Compute products */
/* BLAS */
clock_gettime(CLOCK_REALTIME,&start);
matvec_blas_(&N,&N,mat,vec,res);
clock_gettime(CLOCK_REALTIME,&stop);
tblas=time_elapsed(start,stop);
/* For loop */
clock_gettime(CLOCK_REALTIME,&start);
matvec_for_(&N,&N,mat,vec,res);
clock_gettime(CLOCK_REALTIME,&stop);
tfor=time_elapsed(start,stop);
/* Intrinsic Fortran */
clock_gettime(CLOCK_REALTIME,&start);
matvec_intrinsic_(&N,&N,mat,vec,res);
clock_gettime(CLOCK_REALTIME,&stop);
tint=time_elapsed(start,stop);
/* Print out results */
printf("N = %8i\n",N);
printf("\tblas\t%e\n",tblas);
printf("\tfor\t%e\n",tfor);
printf("\tintr\t%e\n",tint);
}
free(mat);
free(vec);
free(res);
/* Same thing for matrix-matrix product */
printf("\n\nMatrix-matrix:\n");
for(N=10;N<=1e2;N*=10) {
/* Increase size of variables */
a=realloc(a,N*N*sizeof(double));
b=realloc(b,N*N*sizeof(double));
c=realloc(c,N*N*sizeof(double));
/* Initialize */
for(j=0;j<N;j++)
for(i=0;i<N;i++) {
a[j*N+i]=1.0/(i+j+2);
b[j*N+i]=(i+j+2.0);
}
/* Compute products */
/* BLAS */
clock_gettime(CLOCK_REALTIME,&start);
matmat_blas_(&N,&N,&N,a,b,c);
clock_gettime(CLOCK_REALTIME,&stop);
tblas=time_elapsed(start,stop);
/* For loop */
clock_gettime(CLOCK_REALTIME,&start);
matmat_for_(&N,&N,&N,a,b,c);
clock_gettime(CLOCK_REALTIME,&stop);
tfor=time_elapsed(start,stop);
/* Intrinsic Fortran */
clock_gettime(CLOCK_REALTIME,&start);
matmat_intrinsic_(&N,&N,&N,a,b,c);
clock_gettime(CLOCK_REALTIME,&stop);
tint=time_elapsed(start,stop);
/* Print out results */
printf("N = %8i\n",N);
printf("\tblas\t%e\n",tblas);
printf("\tfor\t%e\n",tfor);
printf("\tintr\t%e\n",tint);
}
free(a);
free(b);
free(c);
return 0;
}