forked from csc-training/summerschool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspokesman_reader.c
76 lines (60 loc) · 1.87 KB
/
spokesman_reader.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <mpi.h>
#define DATASIZE 64
#define WRITER_ID 0
void single_reader(int, int *, int);
void ordered_print(int, int, int *, int);
int main(int argc, char *argv[])
{
int my_id, ntasks, 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));
single_reader(my_id, localvector, localsize);
ordered_print(ntasks, my_id, localvector, localsize);
free(localvector);
MPI_Finalize();
return 0;
}
void single_reader(int my_id, int *localvector, int localsize)
{
FILE *fp;
int *fullvector, nread;
char *fname = "singlewriter.dat";
/* TODO: Implement a function that will read the data from a file so that
a single process does the file io. Use rank WRITER_ID as the io rank */
free(fullvector);
}
/* Try to avoid this type of pattern when ever possible.
Here we are using this serialized output just to make the
debugging easier. */
void ordered_print(int ntasks, int rank, int *buffer, int n)
{
int task, i;
for (task = 0; task < ntasks; task++) {
if (rank == task) {
printf("Task %i received:", rank);
for (i = 0; i < n; i++) {
printf(" %2i", buffer[i]);
}
printf("\n");
}
MPI_Barrier(MPI_COMM_WORLD);
}
}