forked from csc-training/advanced-mpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskeleton.c
60 lines (49 loc) · 1.18 KB
/
skeleton.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
#include <stdio.h>
#include <mpi.h>
int main(int argc, char **argv)
{
int rank;
int array[8][8];
//TODO: Declare a variable storing the MPI datatype
int i, j;
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
// Initialize arrays
if (rank == 0) {
for (i = 0; i < 8; i++) {
for (j = 0; j < 8; j++) {
array[i][j] = (i + 1) * 10 + j + 1;
}
}
} else {
for (i = 0; i < 8; i++) {
for (j = 0; j < 8; j++) {
array[i][j] = 0;
}
}
}
if (rank == 0) {
printf("Data in rank 0\n");
for (i = 0; i < 8; i++) {
for (j = 0; j < 8; j++) {
printf("%3d", array[i][j]);
}
printf("\n");
}
}
//TODO: Create datatype
//TODO: Send data
//TODO: Free datatype
// Print out the result on rank 1
if (rank == 1) {
printf("Received data\n");
for (i = 0; i < 8; i++) {
for (j = 0; j < 8; j++) {
printf("%3d", array[i][j]);
}
printf("\n");
}
}
MPI_Finalize();
return 0;
}