-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmpi.c
223 lines (177 loc) · 4.08 KB
/
mpi.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
// mpicc -g -Wall mpi.c -o mpi.out -O3 && mpirun -np 5 mpi.out 20 100
// mpicc -g -Wall mpi.c -o mpi.out -O3 -L /home/firaja/Downloads/mpiP-3.4.1/lib -lmpiP -lm -lbfd -liberty -lunwind
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <mpi.h>
#include "config.h"
#define ROOT 0
void showDistances(int matrix[], int n);
void populateMatrix(int matrix[], int n, int density, int rank, int processes);
void gatherResult(int matrix[], int n, int rank, int processes);
void castKRow(int matrix[], int n, int section, int kRow[], int k, int rank);
void floydWarshall(int matrix[], int n, int rank, int processes);
int main(int argc, char* argv[])
{
struct timespec start, end;
long long accum;
int n, density;
int* matrix;
int processes, rank;
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &processes);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
if (rank == ROOT)
{
if(argc <= 2)
{
n = DEFAULT;
density = 100;
}
else
{
n = atoi(argv[1]);
density = atoi(argv[2]);
}
}
MPI_Bcast(&n, 1, MPI_INT, 0, MPI_COMM_WORLD);
matrix = malloc(n * n / processes * sizeof(int));
populateMatrix(matrix, n, density, rank, processes);
if (rank == ROOT)
{
clock_gettime(CLOCK_MONOTONIC_RAW, &start);
}
floydWarshall(matrix, n, rank, processes);
gatherResult(matrix, n, rank, processes);
free(matrix);
if (rank == ROOT)
{
clock_gettime(CLOCK_MONOTONIC_RAW, &end);
accum = (end.tv_sec - start.tv_sec) * 1000000 + (end.tv_nsec - start.tv_nsec) / 1000;
printf("[DISTRIBUTED] Total elapsed time %lld ns\n", accum);
}
MPI_Finalize();
return 0;
}
void populateMatrix(int matrix[], int n, int density, int rank, int processes) {
int i, j, value;
int* temp_mat = NULL;
if (rank == ROOT) {
srand(42);
temp_mat = malloc(n*n*sizeof(int));
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++){
if(i == j)
{
temp_mat[i*n+j] = 0;
}
else
{
value = 1 + rand() % MAX;
if(value > density)
{
temp_mat[i*n+j] = INF;
}
else
{
temp_mat[i*n+j] = value;
}
}
}
}
int split = n * n/processes;
MPI_Scatter(temp_mat, split, MPI_INT, matrix, split, MPI_INT, 0, MPI_COMM_WORLD);
printf("*** Adjacency matrix:\n");
showDistances(temp_mat, n);
free(temp_mat);
}
else
{
int split = n * n/processes;
MPI_Scatter(temp_mat, split, MPI_INT, matrix, split, MPI_INT, 0, MPI_COMM_WORLD);
}
}
void showDistances(int matrix[], int n)
{
if(PRINTABLE)
{
int i, j;
printf(" ");
for(i = 0; i < n; i++)
{
printf("[%d] ", i);
}
printf("\n");
for(i = 0; i < n; i++) {
printf("[%d]", i);
for(j = 0; j < n; j++)
{
if(matrix[i * n + j] == INF)
{
printf(" inf");
}
else
{
printf("%5d", matrix[i * n + j]);
}
}
printf("\n");
}
printf("\n");
}
}
void gatherResult(int matrix[], int n, int rank, int processes)
{
int* temp_mat = NULL;
if (rank == ROOT) {
temp_mat = malloc(n * n * sizeof(int));
int split = n * n / processes;
MPI_Gather(matrix, split, MPI_INT, temp_mat, split, MPI_INT, 0, MPI_COMM_WORLD);
printf("The solution is:\n");
showDistances(temp_mat, n);
free(temp_mat);
}
else
{
int split = n * n / processes;
MPI_Gather(matrix, split, MPI_INT, temp_mat, split, MPI_INT, 0, MPI_COMM_WORLD);
}
}
void floydWarshall(int matrix[], int n, int rank, int processes)
{
int k, i, j, temp;
int* kRow = malloc(n*sizeof(int));
int section = n / processes;
for (k = 0; k < n; k++)
{
castKRow(matrix, n, section, kRow, k, rank);
for (i = 0; i < section; i++)
{
for (j = 0; j < n; j++)
{
temp = matrix[i * n + k] + kRow[j];
if (temp < matrix[i * n + j])
{
matrix[i * n + j] = temp;
}
}
}
}
free(kRow);
}
void castKRow(int matrix[], int n, int section, int kRow[], int k, int rank)
{
int j;
int localK = k % section;
int competenceHead;
competenceHead = k / section;
if (rank == competenceHead)
{
for (j = 0; j < n; j++)
{
kRow[j] = matrix[localK * n + j];
}
}
MPI_Bcast(kRow, n, MPI_INT, competenceHead, MPI_COMM_WORLD);
}