-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenMP.c
222 lines (195 loc) · 5.56 KB
/
openMP.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <omp.h>
#include <ctype.h>
#include "matrixMultiplication/matrixMultiplication.h"
#include "matrixMultiplication.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <omp.h>
void multiplyMatrixesSecuencial(const int *size,const int *verbose);
void multiplyMatrixesOmp(const int *size,const int *verbose);
int review_omp_threads (void);
int main(int argc, char *argv[]){
const int size = strtol(argv[1], NULL, 10);
int verbose = 0;
if (argc == 3 && strcmp(argv[3], "verbose") == 0) {
verbose = 1;
}
// printf("pthreads: %d", num_threads);
multiplyMatrixesSecuencial(&size, &verbose);
// multiplyMatrixesOmp(&size, &verbose);
// review_omp_threads();
return 0;
}
int randomNumber(){
int upper = 100, lower = 1;
int num = (rand() % (upper - lower + 1)) + lower;
return num;
}
void multiplyMatrixesSecuencial(const int *size,const int *verbose){
clock_t t;
//Dynamic memory allocation
int n, i, j, k;
int(*a)[*size][*size] = malloc(sizeof *a);
int(*b)[*size][*size] = malloc(sizeof *b);
int(*c)[*size][*size] = malloc(sizeof *c);
// Fill the matrix with random numbers
for (i = 0; i < *size; i++) {
for (j = 0; j < *size; j++) {
(*a)[i][j] = randomNumber();
(*b)[i][j] = randomNumber();
}
}
// Multiply th matrixes
t = clock();
for (i = 0; i < *size; i++) {
for (j = 0; j < *size; j++) {
(*c)[i][j] = 0;
for (k = 0; k < *size; k++) {
(*c)[i][j] += (*a)[i][k] * (*b)[k][j];
}
}
}
t = clock() - t;
double time_taken = ((double)t)/CLOCKS_PER_SEC; // in seconds
// Showing information if verbose
if(*verbose){
printf("The matrix a is: \n");
for (i = 0; i < *size; i++) {
for (j = 0; j < *size; j++) {
printf("%d\t", (*a)[i][j]);
}
printf("\n");
}
printf("The matrix b is: \n");
for (i = 0; i < *size; i++) {
for (j = 0; j < *size; j++) {
printf("%d\t", (*b)[i][j]);
}
printf("\n");
}
printf("The matrix c is: \n");
for (i = 0; i < *size; i++) {
for (j = 0; j < *size; j++) {
printf("%d\t", (*c)[i][j]);
}
printf("\n");
}
}
printf("%d:%f\n",
*size,time_taken);
free(a);
free(b);
free(c);
}
void multiplyMatrixesOmp(const int *size,const int *verbose){
clock_t t;
//Dynamic memory allocation
int n, i, j, k;
int(*a)[*size][*size] = malloc(sizeof *a);
int(*b)[*size][*size] = malloc(sizeof *b);
int(*c)[*size][*size] = malloc(sizeof *c);
// Fill the matrix with random numbers
for (int i = 0; i < *size; i++) {
for (int j = 0; j < *size; j++) {
(*a)[i][j] = randomNumber();
(*b)[i][j] = randomNumber();
}
}
// Multiply th matrixes
t = clock();
#pragma omp parallel for default(none) shared(size, a, b, c)
for (int i = 0; i < *size; i++) {
for (int j = 0; j < *size; j++) {
(*c)[i][j] = 0;
for (int k = 0; k < *size; k++) {
(*c)[i][j] += (*a)[i][k] * (*b)[k][j];
}
}
}
t = clock() - t;
double time_taken = ((double)t)/CLOCKS_PER_SEC; // in seconds
// Showing information if verbose
if(*verbose){
printf("The matrix a is: \n");
for (i = 0; i < *size; i++) {
for (j = 0; j < *size; j++) {
printf("%d\t", (*a)[i][j]);
}
printf("\n");
}
printf("The matrix b is: \n");
for (i = 0; i < *size; i++) {
for (j = 0; j < *size; j++) {
printf("%d\t", (*b)[i][j]);
}
printf("\n");
}
printf("The matrix c is: \n");
for (i = 0; i < *size; i++) {
for (j = 0; j < *size; j++) {
printf("%d\t", (*c)[i][j]);
}
printf("\n");
}
}
printf("%d:%f\n",
*size,time_taken);
free(a);
free(b);
free(c);
}
int review_omp_threads (void)
{
omp_set_nested(1);
omp_set_dynamic(0);
#pragma omp parallel
{
#pragma omp parallel
{
#pragma omp single
{
/*
* If OMP_NUM_THREADS=2,3 was set, the following should print:
* Inner: num_thds=3
* Inner: num_thds=3
*
* If nesting is not supported, the following should print:
* Inner: num_thds=1
* Inner: num_thds=1
*/
printf ("Inner: num_thds=%d\n", omp_get_num_threads());
}
}
#pragma omp barrier
omp_set_nested(0);
#pragma omp parallel
{
#pragma omp single
{
/*
* Even if OMP_NUM_THREADS=2,3 was set, the following should
* print, because nesting is disabled:
* Inner: num_thds=1
* Inner: num_thds=1
*/
printf ("Inner: num_thds=%d\n", omp_get_num_threads());
}
}
#pragma omp barrier
#pragma omp single
{
/*
* If OMP_NUM_THREADS=2,3 was set, the following should print:
* Outer: num_thds=2
*/
printf ("Outer: num_thds=%d\n", omp_get_num_threads());
}
}
return 0;
}