This repository has been archived by the owner on Jun 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmpi.c
396 lines (328 loc) · 12.1 KB
/
mpi.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
#include <stdio.h>
#include <stdlib.h>
#include <mpi.h>
/* ------------ VARIABLES ------------- */
typedef struct
{
double tIni;
double tFin;
long long sumParcial;
} datos;
typedef struct
{
int id;
int numDiv;
long long div;
double tpoCalculo;
} divisorProceso;
/* ------------------------------------ */
/* ------------------- PROTOTIPOS -------------------- */
long long pedirNumero();
long long acumDivUno(long long, int);
long long acumDivVarios(int, long long, long long, long long, MPI_Datatype *, int);
MPI_Datatype getMPI_Struct(divisorProceso *);
/* --------------------------------------------------- */
int main(int argc, char **argv)
{
int id, nprocs;
long long numEntrada;
int defectivo; //Boolean: 1 o 0.
long long temp;
datos tiempo;
divisorProceso divisorParcial;
MPI_Datatype structDivisor;
long long arrayDatos[3];
long long ullIntervalo = 0L;
long long ullTotal = 0L;
long long acumDiv = 0L;
MPI_Status status;
int TAG = 50;
int TAG1 = 51;
int i;
int x;
int procesosFinalizados = 0;
//Vectores usados para la salida por pantalla y para almacenar informacion de los procesos en el proceso 0
double *tpoCalculo;
int *numDivisores;
long long *divParciales;
long long resto = 0;
/*Tags*/
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &id);
MPI_Comm_size(MPI_COMM_WORLD, &nprocs);
structDivisor = getMPI_Struct(&divisorParcial);
// ID 0 recibe el numero por teclado o linea de entrada
if (id == 0)
{
if (argc >= 2)
{
numEntrada = atoll(argv[1]);
if (numEntrada <= 0)
{
printf("\nERROR: El numero introducido debe ser > 0.\n");
numEntrada = pedirNumero();
}
}
else
{
numEntrada = pedirNumero();
}
if (nprocs == 1) // Solo hay un proceso
{
//Si solo hay un proceso llamamos a una variante que consiste en que el proc 0 haga todo el trabajo
tiempo.tIni = MPI_Wtime();
temp = acumDivUno(numEntrada, 0);
tiempo.tFin = MPI_Wtime();
//En funcion del resultado sabemos el tipo de numero
if (temp == 0)
{
printf("El numero %lld es PERFECTO.\n", numEntrada);
}
else if (temp > 0)
{
printf("El numero %lld NO es PERFECTO, es EXCESIVO (%lld)\n", numEntrada, temp);
}
else // temp < 0
{
printf("El numero %lld NO es PERFECTO, es DEFECTIVO (%lld)\n", numEntrada, temp);
}
printf("Ejecucion: %lf\n", tiempo.tFin - tiempo.tIni);
MPI_Finalize();
return 0;
}
else // Si hay mas de un proceso
{
//Reservamos los vectores en funcion del numero de procesos que vaya haber quitando el proc 0
tpoCalculo = (double *) malloc((nprocs - 1) * sizeof(double));
numDivisores = (int *) malloc((nprocs - 1) * sizeof(int));
divParciales = (long long *) malloc((nprocs - 1) * sizeof(long long));
for (x = 0; x < nprocs - 1; x++)
{
divParciales[x] = 0;
numDivisores[x] = 0;
tpoCalculo[x] = 0;
}
/*Calculamos los intervalos del numero dividido entre dos, puesto que es imposible que un numero x
*tenga un divisor mas grande que su mitad*/
ullIntervalo = (numEntrada / 2) / (nprocs - 1);
//Calcular si el numero tiene un resto para repartirlo entre los procesos
resto = (numEntrada / 2) % (nprocs - 1);
}
arrayDatos[0] = ullIntervalo; //Intervalos calculados
arrayDatos[1] = numEntrada; //Numero que estamos calculando si es perfecto
arrayDatos[2] = resto; //Resto de la division de los intervalos
}
// Tiempo de inicio de la operacion
tiempo.tIni = MPI_Wtime();
MPI_Bcast(&arrayDatos, 3, MPI_LONG_LONG, 0, MPI_COMM_WORLD);
if (id != 0)
{
// Función que devuelve el acumulador de cada hilo, y le pasa por referencia el struct del divisor
acumDivVarios(id, arrayDatos[0], arrayDatos[1], arrayDatos[2], &structDivisor, nprocs);
}
else
{
while (procesosFinalizados < nprocs - 1)
{
MPI_Recv((void *)&divisorParcial, 1, structDivisor, MPI_ANY_SOURCE, TAG, MPI_COMM_WORLD, &status);
if (divisorParcial.div > 0)
{
acumDiv += divisorParcial.div;
// Calculamos un vector con los divisores parciales de cada proceso
divParciales[divisorParcial.id - 1] += divisorParcial.div;
printf("DIV:%4d, DIV RECV:%20lld, DIV ACU:%4d, SUMA ACU: %20lld (%15lld)\n",
divisorParcial.id, divisorParcial.div, divisorParcial.numDiv, acumDiv, numEntrada - acumDiv);
}
else
{
procesosFinalizados++;
printf("FIN:%4d, SUMA RECV:%20lld, SUMA ACU:%4d, SUMA ACU OK\n", divisorParcial.id, divParciales[divisorParcial.id - 1], divisorParcial.numDiv);
tpoCalculo[divisorParcial.id - 1] = divisorParcial.tpoCalculo;
numDivisores[divisorParcial.id - 1] = divisorParcial.numDiv;
}
}
MPI_Recv(&ullTotal, 1, MPI_LONG_LONG, nprocs - 1, TAG1, MPI_COMM_WORLD, &status);
}
// Tiempo de fin de la operacion
tiempo.tFin = MPI_Wtime();
if (id == 0)
{
//Si el numero no coincide, significa que esta mal calculado
if (ullTotal != acumDiv)
{
printf("\n\nSUMA TOTAL ERROR: calculada %lld recibida %lld O_o\n\n", acumDiv, ullTotal);
}
else
{
printf("\n\nSUMA TOTAL OK: calculada %lld recibida %lld\n\n", acumDiv, ullTotal);
}
i = 0;
//TABLA
printf("\nProceso | Nº Divisores | Suma | Tpo calculo\n");
printf("--------------------------------------------------------------------\n");
for (x = 1; x < nprocs; x++)
{
i += numDivisores[x - 1];
printf("%7d | %14d | %16lld | %f\n", x, numDivisores[x - 1], divParciales[x - 1], tpoCalculo[x - 1]);
}
printf("--------------------------------------------------------------------\n");
printf(" TOTAL | %14d | %16lld\n\n", i, acumDiv);
temp = numEntrada - ullTotal;
if (temp == 0)
{
printf("El numero %lld es PERFECTO.\n", numEntrada);
}
else if (temp < 0)
{
printf("El numero %lld NO es PERFECTO, es EXCESIVO (%lld)\n", numEntrada, temp * -1);
}
else // temp > 0
{
printf("El numero %lld NO es PERFECTO, es DEFECTIVO (%lld)\n", numEntrada, temp);
}
printf("Numero de Procesos: %d\n", nprocs);
printf("Tiempo procesamiento: %lf\n", tiempo.tFin - tiempo.tIni);
}
MPI_Finalize();
return 0;
}
long long pedirNumero()
{
long long numEntrada;
do
{
printf("Introduce el numero: ");
fflush(stdout);
scanf("%lld", &numEntrada);
if (numEntrada <= 0)
{
printf("\nERROR: El numero introducido debe ser > 0.\n");
}
} while (numEntrada <= 0);
return numEntrada;
}
long long acumDivVarios(int id, long long ullIntervalo, long long nFinal, long long resto, MPI_Datatype *structDivisor, int nprocs)
{
long long iInicio, iFinal;
long long acumDivRecibido = 0L;
long long divisorExtra;
MPI_Status status;
divisorProceso divisor;
//Etiqueta: Identificador conversacion
int TAG = 50;
int TAG1 = 51;
//Calculamos el intervalo para cada hilo
iInicio = (id - 1) * ullIntervalo + 1;
iFinal = (id - 1) * ullIntervalo + ullIntervalo;
//Devuelve la resta del Acumulador de divisores con el numero pasado por parametro.
long long l;
long long acumDiv = 0L; // Acumulacion de la suma de divisores
int i = 0;
//Se rellena el struct que se usa para enviar los datos
divisor.id = id;
divisor.tpoCalculo = 0; // Se rellena en el momento en el que se han calculado todos los divisores
divisor.numDiv = 0;
double tIni = MPI_Wtime();
double tFin;
//Calculo sumatorio divisores en un intervalo
for (l = iInicio; l <= iFinal; l++)
{
if (nFinal % l == 0 && nFinal - l != 0)
{
acumDiv += l;
i++;
divisor.div = l;
divisor.numDiv = i;
MPI_Send((void *)&divisor, 1, *structDivisor, 0, TAG, MPI_COMM_WORLD);
}
}
// Reduce a la mitad el procesamiento, el intervalo reparte el resto a otros procesadores
if (id <= resto)
{
//Se coge el numero de entrada dividido a la mitad, y se le resta el resto menos el identificador del proceso
divisorExtra = ((nFinal / 2) - (resto - id));
/*Ej: 28/3 (procesos) -> resto = 1
divisorExtra = (28/2) - 1 - id
Vemos que si el id es 1, que es el unico que entraria en el if(id <= resto), el divisorExtra = 14, que efectivamente
seria el divisor que tendria que calcular extra el proc 1*/
if ((nFinal % divisorExtra) == 0)
{
acumDiv += divisorExtra;
i++; // Ha encontrado otro divisor
divisor.div = divisorExtra;
divisor.numDiv = i;
MPI_Send((void *)&divisor, 1, *structDivisor, 0, TAG, MPI_COMM_WORLD);
}
}
tFin = MPI_Wtime();
if (id != 1)
{
MPI_Recv((void *)&acumDivRecibido, 1, MPI_LONG_LONG, id - 1, TAG1, MPI_COMM_WORLD, &status);
}
acumDiv += acumDivRecibido;
if (id != nprocs - 1)
{
//Enviamos al proceso id+1 (id = nuestra id) nuestro acumDiv
MPI_Send((void *)&acumDiv, 1, MPI_LONG_LONG, id + 1, TAG1, MPI_COMM_WORLD);
}
else
{
//Si el proceso es el ultimo
MPI_Send((void *)&acumDiv, 1, MPI_LONG_LONG, 0, TAG1, MPI_COMM_WORLD);
}
//Enviamos un mensaje con div -1 indicando que el proceso ha terminado de calcular divisores
divisor.div = -1;
// Guardamos el tiempo de calculo de cada proceso en el struct
divisor.tpoCalculo = tFin - tIni;
MPI_Send((void *)&divisor, 1, *structDivisor, 0, TAG, MPI_COMM_WORLD);
return acumDiv;
}
long long acumDivUno(long long iFinal, int id)
{
//Devuelve la resta del Acumulador de divisores con el numero pasado por parametro.
long long l;
long long acumDiv = 0L; // Acumulacion de la suma de divisores
int i = 0;
//Calculo numero perfecto
for (l = 1; l <= (iFinal / 2); l++)
{
if (iFinal % l == 0)
{
acumDiv += l;
i++;
printf("DIV:%4d, DIV RECV:%20lld, DIV ACU:%4d, SUMA ACU: %20lld (%15lld)\n", id, l, i, acumDiv, iFinal - acumDiv);
}
}
return (acumDiv - iFinal);
}
MPI_Datatype getMPI_Struct(divisorProceso *dProceso)
{
MPI_Datatype structDivisor;
int longitudes[4];
MPI_Aint desplaz[4];
MPI_Aint direcc[5];
MPI_Datatype tipos[4];
tipos[0] = MPI_INT;
tipos[1] = MPI_INT;
tipos[2] = MPI_LONG_LONG;
tipos[3] = MPI_DOUBLE;
/* ESPECIFICAMOS EL NUMERO DE ELEMENTOS DE CADA TIPO */
longitudes[0] = 1; // Un int
longitudes[1] = 1; // Un int
longitudes[2] = 1; // Un long long
longitudes[3] = 1; // Un double
/* CALCULAMOS LOS DESPLAZAMIENTOS DE LOS MIEMBROS DE LA ESTRUCTURA RELATIVOS AL COMIENZO DE LA MISMA */
MPI_Get_address(dProceso, &direcc[0]);
MPI_Get_address(&(dProceso->id), &direcc[1]);
MPI_Get_address(&(dProceso->numDiv), &direcc[2]);
MPI_Get_address(&(dProceso->div), &direcc[3]);
MPI_Get_address(&(dProceso->tpoCalculo), &direcc[4]);
desplaz[0] = direcc[1] - direcc[0];
desplaz[1] = direcc[2] - direcc[0];
desplaz[2] = direcc[3] - direcc[0];
desplaz[3] = direcc[4] - direcc[0];
/* CREACION DE TIPO DE DATOS DERIVADOS */
MPI_Type_create_struct(4, longitudes, desplaz, tipos, &structDivisor);
MPI_Type_commit(&structDivisor);
return structDivisor;
}