-
Notifications
You must be signed in to change notification settings - Fork 0
/
mpi-max-reduce.c
77 lines (59 loc) · 1.56 KB
/
mpi-max-reduce.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
77
#include <mpi.h>
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <stdbool.h>
#define ALTURA 10000
#define LARGURA 10000
int int_matrix[LARGURA][ALTURA];
//Inicializa array de inteiros
int encontra_maior(int rank, int int_arr[LARGURA])
{
int i, maior;
maior = -1;
//procura o maior valor no array
for(i=0; i<LARGURA; i++){
if(int_arr[i] > maior) { maior = int_arr[i]; }
}
return maior;
}
//main
main(int argc, char** argv){
int i, j, nodes, rank, maior, maior_local, maior_global, int_arr[LARGURA];
time_t t;
//os procedimentos de inicializacao
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &nodes);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
srand((unsigned) time(&t));
//inicializa matriz com valores randomicos
if(rank == 0){
for(i = 0; i < LARGURA; i++){
for(j = 0; j < ALTURA; j++){
int_matrix[i][j] = rand();
}
}
}
for(i = 0; i < LARGURA; i++){
int_arr[i] = -1;
}
//de 1 ate largura
for(i = 0; i < LARGURA; i++){
//manda um scatter para geral
MPI_Scatter(int_matrix[i], LARGURA/nodes, MPI_INT, int_arr, LARGURA/nodes, MPI_INT, 0, MPI_COMM_WORLD);
maior_local = encontra_maior(rank, int_arr);
//junta tudo
MPI_Reduce(&maior_local, &maior_global, 1, MPI_INT, MPI_MAX, 0, MPI_COMM_WORLD);
if(rank == 0){
if(maior < maior_global) { maior = maior_global; }
printf("%d\r", i);
fflush(stdout);
}
}
if(rank == 0){
printf("Maior elemento encontrado: %d\r\n", maior);
fflush(stdout);
}
MPI_Finalize();
return(0);
}