-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
104 lines (57 loc) · 2.1 KB
/
main.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
78
79
80
81
82
83
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <mpi.h>
#include "./includes/utils.h"
#include "./includes/estructuras_de_datos.h"
#include "./includes/branch_and_bound.h"
int main(int argc, char* argv[]) {
FILE* archivo_de_matriz = NULL;
double comienzo, fin, duracion_local, duracion;
int ok_local = 1, tam_un_msg;
char uso[256];
char* buf;
MPI_Init(&argc, &argv);
universo = MPI_COMM_WORLD;
MPI_Comm_size(universo, &num_de_procesos);
MPI_Comm_rank(universo, &mi_id_proceso);
if (mi_id_proceso == 0 && argc != 2) ok_local = 0;
Chequeo_de_errores(ok_local, uso, universo);
if (mi_id_proceso == 0) {
archivo_de_matriz = fopen(argv[1], "r");
if (archivo_de_matriz == NULL) ok_local = 0;
}
Chequeo_de_errores(ok_local, "No se puede abrir el archivo de la matriz", universo);
Leer_matriz_de_adyacencias(archivo_de_matriz);
if (mi_id_proceso == 0) fclose(archivo_de_matriz);
mejor_camino_local = Alocar_camino(NULL);
Inicializar_camino(mejor_camino_local, MIN);
costo_del_mejor_camino = MIN;
MPI_Type_contiguous(n+1, MPI_INT, &camino_mpi_t);
MPI_Type_commit(&camino_mpi_t);
MPI_Pack_size(1, MPI_INT, universo, &tam_un_msg);
buffer_mpi =
malloc(100*num_de_procesos*(tam_un_msg + MPI_BSEND_OVERHEAD)*sizeof(char));
MPI_Buffer_attach(buffer_mpi,
100*num_de_procesos*(tam_un_msg + MPI_BSEND_OVERHEAD));
MPI_Barrier(universo);
comienzo = MPI_Wtime();
Busqueda_branch_and_bound();
fin = MPI_Wtime();
duracion_local = fin - comienzo;
MPI_Reduce(&duracion_local, &duracion, 1, MPI_DOUBLE, MPI_MAX, 0, universo);
Limpiar_cola_mensages();
MPI_Barrier(universo);
MPI_Buffer_detach(&buf, &tam_un_msg);
if (mi_id_proceso == 0) {
Imprimir_camino(mejor_camino_local, "Mejor camino");
printf("Costo = %d\n", mejor_camino_local->costo);
printf("Tiempo = %f segundos\n", duracion);
}
MPI_Type_free(&camino_mpi_t);
free(mejor_camino_local->ciudades);
free(mejor_camino_local);
free(matriz_de_adyacencias);
MPI_Finalize();
return 0;
}