-
Notifications
You must be signed in to change notification settings - Fork 0
/
mpi-soma-send.c
70 lines (66 loc) · 1.86 KB
/
mpi-soma-send.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
/*
Soma de Elementos de um vetor usando MPI_Send.
Numero de elementos do vetor: multiplo do número de processos.
*/
#include <mpi.h>
#include <stdio.h>
main(argc, argv)
int argc;
char *argv[];
{
int n,n_nos, rank;
MPI_Status status;
int inicio,fim,vetor[100000],soma_parcial,i,k;
int soma_total,soma;
/*
* Initialize MPI.
*/
MPI_Init(&argc, &argv);
/*
* Error check the number of processes.
* Determine my rank in the world group.
* The sender will be rank 0 and the receiver, rank 1.
*/
MPI_Comm_size(MPI_COMM_WORLD, &n_nos);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
n=100000;
k=n/n_nos;
inicio=rank*k;
fim=inicio+k;
if (rank==0) {
for(i=inicio;i<n;i++)
vetor[i]=1;
for (i=1;i<n_nos;i++)
{
MPI_Send(&vetor[k*i],k,MPI_INT,i,10,MPI_COMM_WORLD);
printf("rank=%d APOS SEND\n",rank);
fflush(stdout);
}
}
else {
// sleep(5);
MPI_Recv(vetor,k,MPI_INT,0,10,MPI_COMM_WORLD,&status);
printf("rank=%d APOS RECV\n",rank);
fflush(stdout);
}
soma_parcial=0;
for(i=0;(i<k);i++)
soma_parcial+=vetor[i];
printf("rank=%d soma_parcial=%d\n",rank,soma_parcial);
fflush(stdout);
if (rank==0) {
soma_total=soma_parcial;
for(i=1;i<n_nos;i++){
MPI_Recv(&soma,1,MPI_INT,MPI_ANY_SOURCE,11,MPI_COMM_WORLD,&status);
soma_total+=soma;}
printf("RESULTADO=%d\n",soma_total);
fflush(stdout);
}
else {
printf("rank=%d soma_parcial=%d\n",rank,soma_parcial);
fflush(stdout);
MPI_Send(&soma_parcial,1,MPI_INT,0,11,MPI_COMM_WORLD);
}
MPI_Finalize();
return(0);
}