-
Notifications
You must be signed in to change notification settings - Fork 0
/
mpiGather.c
59 lines (54 loc) · 1.64 KB
/
mpiGather.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
#include "mpi.h"
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <unistd.h>
#include <time.h>
#define MAXVECT 10
#define MAXPROC 5
#define imprimirvector(v,n) printf("Mi vista (%d) del vector\n",myrank); for (i = 0 ; i < n; i++) printf("[%d: %d] ",myrank,v[i]); printf("\n");
int main(int argc, char *argv[])
{
int myrank, worldsize;
int i;
int root;
int vector[MAXVECT];
int *rec_vector;
char hostname[HOST_NAME_MAX + 1];
gethostname(hostname, HOST_NAME_MAX + 1);
srand(time(NULL));
int choosen = (rand()%MAXPROC);
root = 0;
// Escriba las lineas que permitan:
// (1) Inicializar el dominio MPI
// (2) Guardar en la variable 'worldsize' el numero de procesos
// involucrados en la ejecucion de esta app
// (3) Guardar el rango del proceso
//
// (1)
MPI_Init(NULL, NULL);
// (2)
MPI_Comm_size(MPI_COMM_WORLD, &worldsize);
// (3)
MPI_Comm_rank(MPI_COMM_WORLD, &myrank);
rec_vector = (int*) malloc(sizeof(int) * MAXVECT/worldsize);
for (i = 0; i < MAXVECT/worldsize; i++) {
rec_vector[i] = (MAXVECT/worldsize) * myrank + i;
}
if (myrank == choosen) {
imprimirvector(rec_vector,MAXVECT/worldsize);
}
// Escriba la linea que permite recoger los datos del vector con la
// instruccion MPI_Gather
//
// (4)
MPI_Gather(rec_vector, MAXVECT/worldsize, MPI_INT,vector,MAXVECT/worldsize, MPI_INT,root,MPI_COMM_WORLD);
if (myrank == root) {
imprimirvector(vector,MAXVECT);
}
// Inserta la instruccion que termina el contexto de ejecucion de MPI
//
// (5)
MPI_Finalize();
return 0;
}