forked from csc-training/summerschool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspokesman.c
74 lines (56 loc) · 1.83 KB
/
spokesman.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <mpi.h>
#define DATASIZE 64
#define WRITER_ID 0
void single_writer(int, int *, int);
int main(int argc, char *argv[])
{
int my_id, ntasks, i, localsize;
int *localvector;
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &ntasks);
MPI_Comm_rank(MPI_COMM_WORLD, &my_id);
if (ntasks > 64) {
fprintf(stderr, "Datasize (64) should be divisible by number "
"of tasks.\n");
MPI_Abort(MPI_COMM_WORLD, EXIT_FAILURE);
}
if (DATASIZE % ntasks != 0) {
fprintf(stderr, "Datasize (64) should be divisible by number "
"of tasks.\n");
MPI_Abort(MPI_COMM_WORLD, EXIT_FAILURE);
}
localsize = DATASIZE / ntasks;
localvector = (int *) malloc(localsize * sizeof(int));
for (i = 0; i < localsize; i++) {
localvector[i] = i + 1 + localsize * my_id;
}
single_writer(my_id, localvector, localsize);
free(localvector);
MPI_Finalize();
return 0;
}
void single_writer(int my_id, int *localvector, int localsize)
{
FILE *fp;
int *fullvector;
/* TODO: Implement a function that will write the data to file so that
a single process does the file io. Use rank WRITER_ID as the io rank */
fullvector = (int*)malloc(DATASIZE*sizeof(int));
MPI_Gather(localvector, localsize, MPI_INT, fullvector, localsize,
MPI_INT, WRITER_ID, MPI_COMM_WORLD);
if(my_id == WRITER_ID){
if((fp=fopen("singlewriter.dat", "wb")) == NULL){
fprintf(stderr, "Error: %d (%s)\n", errno, strerror(errno));
MPI_Abort(MPI_COMM_WORLD, EXIT_FAILURE);
} else {
fwrite(fullvector, sizeof(int), DATASIZE, fp);
fclose(fp);
printf("Wrote %d elements to file singlewriter.dat\n", DATASIZE);
}
}
free(fullvector);
}