Main.c 19.3 KB
Newer Older
1
2
3
#include <stdio.h>
#include <stdlib.h>
#include <mpi.h>
iker_martin's avatar
iker_martin committed
4
#include <fcntl.h>
5
#include <unistd.h>
iker_martin's avatar
iker_martin committed
6
#include <sys/stat.h>
7
8
#include "process_stage.h"
#include "Main_datatypes.h"
9
#include "configuration.h"
10
#include "../IOcodes/results.h"
11
#include "../malleability/CommDist.h"
12
13
#include "../malleability/malleabilityManager.h"
#include "../malleability/malleabilityStates.h"
14

15
16
#define DR_MAX_SIZE 1000000000

iker_martin's avatar
iker_martin committed
17
int work();
18
double iterate(int async_comm);
19
20
double iterate_relaxed(double *time, double *times_stages);
double iterate_rigid(double *time, double *times_stages);
21

22
void init_group_struct(char *argv[], int argc, int myId, int numP);
23
void init_application();
24
void obtain_op_times();
25
26
void free_application_data();

27
void print_general_info(int myId, int grp, int numP);
28
int print_local_results();
29
int print_final_results();
iker_martin's avatar
iker_martin committed
30
int create_out_file(char *nombre, int *ptr, int newstdout);
31

iker_martin's avatar
iker_martin committed
32
33
configuration *config_file;
group_data *group;
34
results_data *results;
35
MPI_Comm comm, new_comm;
36
int run_id = 0; // Utilizado para diferenciar más fácilmente ejecuciones en el análisis
37

38
int main(int argc, char *argv[]) {
39
    int numP, myId, res, commited;
iker_martin's avatar
iker_martin committed
40
    int req;
41
    int im_child;
42
    size_t i;
43

44
    int num_cpus, num_nodes;
45
    char *nodelist = NULL;
46
    num_cpus = 20; //FIXME NUMERO MAGICO //TODO Usar openMP para obtener el valor con un pragma
47
48
49
    if (argc >= 5) {
      nodelist = argv[3];
      num_nodes = atoi(argv[4]);
50
      num_cpus = num_nodes * num_cpus;
51
52
    }

53
    MPI_Init_thread(&argc, &argv, MPI_THREAD_MULTIPLE, &req);
iker_martin's avatar
iker_martin committed
54
    MPI_Comm_rank(MPI_COMM_WORLD, &myId);
55
    MPI_Comm_size(MPI_COMM_WORLD, &numP);
56
    comm = MPI_COMM_WORLD;
57
    new_comm = MPI_COMM_NULL;
iker_martin's avatar
iker_martin committed
58

59
60
    if(req != MPI_THREAD_MULTIPLE) {
      printf("No se ha obtenido la configuración de hilos necesaria\nSolicitada %d -- Devuelta %d\n", req, MPI_THREAD_MULTIPLE);
61
62
      fflush(stdout);
      MPI_Abort(MPI_COMM_WORLD, -50);
63
64
    }

65
    init_group_struct(argv, argc, myId, numP);
66
    im_child = init_malleability(myId, numP, ROOT, comm, argv[0], nodelist, num_cpus, num_nodes);
67

68
    if(!im_child) { //TODO REFACTOR Simplificar inicio
69
70
71
72
      init_application();

      set_benchmark_configuration(config_file);

73
74
75
76
      if(config_file->n_groups > 1) {
        set_malleability_configuration(config_file->groups[group->grp+1].sm, config_file->groups[group->grp+1].ss, 
  	  config_file->groups[group->grp+1].phy_dist, config_file->groups[group->grp+1].rm, config_file->groups[group->grp+1].rs);
        set_children_number(config_file->groups[group->grp+1].procs); // TODO TO BE DEPRECATED
77

78
79
80
81
        malleability_add_data(&(group->grp), 1, MPI_INT, 1, 0);
        malleability_add_data(&run_id, 1, MPI_INT, 1, 0);
        malleability_add_data(&(group->iter_start), 1, MPI_INT, 1, 0);
        malleability_add_data(&(results->exec_start), 1, MPI_DOUBLE, 1, 0);
82
83
84

        if(config_file->sdr) {
	  for(i=0; i<group->sync_data_groups; i++) {
85
            malleability_add_data(group->sync_array[i], group->sync_qty[i], MPI_CHAR, 0, 0);
86
87
88
89
	  }
        }
        if(config_file->adr) {
	  for(i=0; i<group->async_data_groups; i++) {
90
            malleability_add_data(group->async_array[i], group->async_qty[i], MPI_CHAR, 0, 1);
91
92
93
	  }
        }
      }
94

95
      MPI_Barrier(comm);
96
      results->exec_start = MPI_Wtime();
97
    } else { //Init hijos
98
      MAM_Commit(&commited, &comm);
99
      get_benchmark_configuration(&config_file);
100

101
102
      // TODO Refactor - Que sea una unica funcion
      // Obtiene las variables que van a utilizar los hijos
103
      void *value = NULL;
104
      size_t entries;
105
      malleability_get_data(&value, 0, 1, 0);
106
      group->grp = *((int *)value);
107

108
      malleability_get_data(&value, 1, 1, 0);
109
      run_id = *((int *)value);
110
      
111
      malleability_get_data(&value, 2, 1, 0);
112
      group->iter_start = *((int *)value);
113

114
      if(config_file->sdr) {
115
        malleability_get_entries(&entries, 0, 0);
116
        group->sync_qty = (int *) malloc(entries * sizeof(int));
117
118
        group->sync_array = (char **) malloc(entries * sizeof(char *));
	for(i=0; i<entries; i++) {
119
          malleability_get_data(&value, i, 0, 0);
120
          group->sync_array[i] = (char *)value;
121
          group->sync_qty[i] = DR_MAX_SIZE;
122
	}
123
124
        group->sync_qty[entries-1] = config_file->sdr % DR_MAX_SIZE ? config_file->sdr % DR_MAX_SIZE : DR_MAX_SIZE;
        group->sync_data_groups = entries;
125
126
      }
      if(config_file->adr) {
127
        malleability_get_entries(&entries, 0, 1);
128
        group->async_qty = (int *) malloc(entries * sizeof(int));
129
130
        group->async_array = (char **) malloc(entries * sizeof(char *));
	for(i=0; i<entries; i++) {
131
          malleability_get_data(&value, i, 0, 1);
132
          group->async_array[i] = (char *)value;
133
          group->async_qty[i] = DR_MAX_SIZE;
134
	}
135
136
        group->async_qty[entries-1] = config_file->adr % DR_MAX_SIZE ? config_file->adr % DR_MAX_SIZE : DR_MAX_SIZE;
        group->async_data_groups = entries;
137
138
      }

139
      group->grp = group->grp + 1;
140
141
      results = malloc(sizeof(results_data));
      init_results_data(results, config_file->n_resizes, config_file->n_stages, config_file->groups[group->grp].iters);
142

143
144
      malleability_get_data(&value, 3, 1, 0);
      results->exec_start = *((double *)value);
145
146
    }

147
148
149
    //
    // EMPIEZA LA EJECUCION-------------------------------
    //
150
151
    group->grp = group->grp - 1; // TODO REFACTOR???
    do {
152
153
      MPI_Comm_size(comm, &(group->numP));
      MPI_Comm_rank(comm, &(group->myId));
154
      group->grp = group->grp + 1;
155

156
      if(group->grp != 0) {
157
        obtain_op_times(0); //Obtener los nuevos valores de tiempo para el computo
158
        malleability_retrieve_times(&results->spawn_time[group->grp - 1], &results->sync_time[group->grp - 1], &results->async_time[group->grp - 1], &results->malleability_time[group->grp - 1]);
159
      }
160

161
      if(config_file->n_groups != group->grp + 1) { //TODO Llevar a otra funcion
162
        set_malleability_configuration(config_file->groups[group->grp+1].sm, config_file->groups[group->grp+1].ss, 
163
			config_file->groups[group->grp+1].phy_dist, config_file->groups[group->grp+1].rm, config_file->groups[group->grp+1].rs);
164
        set_children_number(config_file->groups[group->grp+1].procs); // TODO TO BE DEPRECATED
165

166
        if(group->grp != 0) {
167
168
          malleability_modify_data(&(group->grp), 0, 1, MPI_INT, 1, 0);
          malleability_modify_data(&(group->iter_start), 2, 1, MPI_INT, 1, 0);
169
        }
170
      }
171
172

      res = work();
173

174
      if(res == MAM_ZOMBIE) break;
175
      if(res==1) { // Se ha llegado al final de la aplicacion
176
        MPI_Barrier(comm);
177
178
        results->exec_time = MPI_Wtime() - results->exec_start - results->wasted_time;
      }
179

180
      print_local_results();
181
      reset_results_index(results);
182
183
184

      if(comm != MPI_COMM_WORLD) MPI_Comm_free(&comm);
      comm = new_comm;
185
    } while(config_file->n_groups > group->grp + 1 && config_file->groups[group->grp+1].sm == MALL_SPAWN_MERGE);
186

187
188
189
    //
    // TERMINA LA EJECUCION ----------------------------------------------------------
    //
190
    print_final_results(); // Pasado este punto ya no pueden escribir los procesos
191

192
    MPI_Barrier(comm);
193
194
195
196
    if(comm != MPI_COMM_WORLD && comm != MPI_COMM_NULL) {
      MPI_Comm_free(&comm);
    }

197
    if(group->myId == ROOT && config_file->groups[group->grp].sm == MALL_SPAWN_MERGE) {
198
199
      MPI_Abort(MPI_COMM_WORLD, -100);
    }
200
    free_application_data();
201

202
203
204
205
206
    MPI_Finalize();
    return 0;
}

/*
207
208
209
210
211
212
213
214
215
 * Función de trabajo principal.
 *
 * Incializa los datos para realizar el computo y a continuacion
 * pasa a realizar "maxiter" iteraciones de computo.
 *
 * Terminadas las iteraciones realiza el redimensionado de procesos.
 * Si el redimensionado se realiza de forma asincrona se 
 * siguen realizando iteraciones de computo hasta que termine la 
 * comunicacion asincrona y realizar entonces la sincrona.
216
217
218
219
 *
 * Si el grupo de procesos es el ultimo que va a ejecutar, se devuelve
 * el valor 1 para indicar que no se va a seguir trabajando con nuevos grupos
 * de procesos. En caso contrario se devuelve 0.
220
 */
iker_martin's avatar
iker_martin committed
221
int work() {
222
  int iter, maxiter, state, res, commited;
223
  int wait_completed = MAM_CHECK_COMPLETION;
224

225
  maxiter = config_file->groups[group->grp].iters;
226
  state = MAM_NOT_STARTED;
227

228
  res = 0;
229
  for(iter=group->iter_start; iter < maxiter; iter++) {
230
    iterate(state);
231
  }
232

233
  if(config_file->n_groups != group->grp + 1)
234
    malleability_checkpoint(&state, wait_completed);
235

236
  iter = 0;
237
  while(state == MAM_PENDING) {
238
    if(group->grp+1 < config_file->n_groups && iter < config_file->groups[group->grp+1].iters) {
239
      iterate(state);
240
241
      iter++;
      group->iter_start = iter;
242
243
    } else { wait_completed = MAM_WAIT_COMPLETION; }
    malleability_checkpoint(&state, wait_completed);
244
  }
245

246
  
247
  if(config_file->n_groups == group->grp + 1) res=1;
248
  else { MAM_Commit(&commited, &new_comm); }
249
  if(state == MAM_ZOMBIE) res=state;
250
  return res;
251
252
}

253
254
255
256
257
258
259
260
261
262

/////////////////////////////////////////
/////////////////////////////////////////
//COMPUTE FUNCTIONS
/////////////////////////////////////////
/////////////////////////////////////////


/*
 * Simula la ejecucción de una iteración de computo en la aplicación
263
264
 * que dura al menos un tiempo determinado por la suma de todas las
 * etapas definidas en la configuracion.
265
 */
266
double iterate(int async_comm) {
267
  double time, *times_stages_aux;
268
  size_t i;
269
270
  double aux = 0;

271
  times_stages_aux = malloc(config_file->n_stages * sizeof(double));
272

273
  if(config_file->rigid_times) {
274
    aux = iterate_rigid(&time, times_stages_aux);
275
  } else {
276
    aux = iterate_relaxed(&time, times_stages_aux);
277
278
  }

279
  // Se esta realizando una redistribucion de datos asincrona
280
  if(async_comm == MAM_PENDING) { 
281
  // TODO Que diferencie entre ambas en el IO
282
    results->iters_async += 1;
283
284
  }

285
  // TODO Pasar el resto de este código a results.c
286
  if(results->iter_index == results->iters_size) { // Aumentar tamaño de ambos vectores de resultados
287
    realloc_results_iters(results, config_file->n_stages, results->iters_size + 100);
288
  }
289
  results->iters_time[results->iter_index] = time;
290
  for(i=0; i < config_file->n_stages; i++) {
291
    results->stage_times[i][results->iter_index] = times_stages_aux[i];
292
  }
293
  results->iter_index = results->iter_index + 1;
294
  // TODO Pasar hasta aqui
295

296
  free(times_stages_aux);
297

298
  return aux;
299
300
}

301
302
303

/*
 * Performs an iteration. The gathered times for iterations
304
 * and stages could be IMPRECISE in order to ensure the 
305
306
307
308
309
 * global execution time is precise.
 */
double iterate_relaxed(double *time, double *times_stages) {
  size_t i;
  double start_time, start_time_stage, aux=0;
310
  start_time = MPI_Wtime(); // Imprecise timings
311
312

  for(i=0; i < config_file->n_stages; i++) {
313
    start_time_stage = MPI_Wtime(); 
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
    aux+= process_stage(*config_file, config_file->stages[i], *group, comm);
    times_stages[i] = MPI_Wtime() - start_time_stage;
  }

  *time = MPI_Wtime() - start_time; // Guardar tiempos
  return aux;
}

/*
 * Performs an iteration. The gathered times for iterations
 * and stages are ensured to be precise but the global 
 * execution time could be imprecise.
 */
double iterate_rigid(double *time, double *times_stages) {
  size_t i;
  double start_time, start_time_stage, aux=0;

  MPI_Barrier(comm);
  start_time = MPI_Wtime();

  for(i=0; i < config_file->n_stages; i++) {
    start_time_stage = MPI_Wtime();
    aux+= process_stage(*config_file, config_file->stages[i], *group, comm);
337
    MPI_Barrier(comm);
338
339
340
    times_stages[i] = MPI_Wtime() - start_time_stage;
  }

341
  MPI_Barrier(comm);
342
343
344
345
  *time = MPI_Wtime() - start_time; // Guardar tiempos
  return aux;
}

346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
//======================================================||
//======================================================||
//=============INIT/FREE/PRINT FUNCTIONS================||
//======================================================||
//======================================================||

/*
 * Muestra datos generales sobre los procesos, su grupo,
 * en que nodo residen y la version de MPI utilizada.
 */
void print_general_info(int myId, int grp, int numP) {
  int len;
  char *name = malloc(MPI_MAX_PROCESSOR_NAME * sizeof(char));
  char *version = malloc(MPI_MAX_LIBRARY_VERSION_STRING * sizeof(char));
  MPI_Get_processor_name(name, &len);
  MPI_Get_library_version(version, &len);
  printf("P%d Nuevo GRUPO %d de %d procs en nodo %s con %s\n", myId, grp, numP, name, version);

  free(name);
  free(version);
}

368

369
370
371
/*
 * Pide al proceso raiz imprimir los datos sobre las iteraciones realizadas por el grupo de procesos.
 */
372
373
int print_local_results() {
  int ptr_local, ptr_out, err;
374
375
  char *file_name;

376
  compute_results_iter(results, group->myId, group->numP, ROOT, config_file->n_stages, config_file->capture_method, comm);
377
  if(group->myId == ROOT) {
378
379
    ptr_out = dup(1);

380
381
382
383
384
385
386
387
    file_name = NULL;
    file_name = malloc(40 * sizeof(char));
    if(file_name == NULL) return -1; // No ha sido posible alojar la memoria
    err = snprintf(file_name, 40, "R%d_G%dNP%dID%d.out", run_id, group->grp, group->numP, group->myId);
    if(err < 0) return -2; // No ha sido posible obtener el nombre de fichero
    create_out_file(file_name, &ptr_local, 1);
  
    print_config_group(config_file, group->grp);
388
    print_iter_results(*results);
389
    print_stage_results(*results, config_file->n_stages);
390
391
    free(file_name);

392
    fflush(stdout);
393
394
    close(1);
    dup(ptr_out);
395
    close(ptr_out);
396
397
398
399
400
401
402
403
404
  }
  return 0;
}

/*
 * Si es el ultimo grupo de procesos, pide al proceso raiz mostrar los datos obtenidos de tiempo de ejecucion, creacion de procesos
 * y las comunicaciones.
 */
int print_final_results() {
405
  int ptr_global, err, ptr_out;
406
407
408
409
  char *file_name;

  if(group->myId == ROOT) {

410
    if(config_file->n_groups == group->grp+1) {
411
412
413
414
415
416
      file_name = NULL;
      file_name = malloc(20 * sizeof(char));
      if(file_name == NULL) return -1; // No ha sido posible alojar la memoria
      err = snprintf(file_name, 20, "R%d_Global.out", run_id);
      if(err < 0) return -2; // No ha sido posible obtener el nombre de fichero

417
      ptr_out = dup(1);
418
      create_out_file(file_name, &ptr_global, 1);
419
420
      print_config(config_file);
      print_global_results(*results, config_file->n_resizes);
421
      fflush(stdout);
422
      free(file_name);
423
424
425

      close(1);
      dup(ptr_out);
426
427
428
429
430
431
432
433
434
    }
  }
  return 0;
}

/*
 * Inicializa la estructura group
 */
void init_group_struct(char *argv[], int argc, int myId, int numP) {
435
  group = malloc(sizeof(group_data));
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
  group->myId        = myId;
  group->numP        = numP;
  group->grp         = 0;
  group->iter_start  = 0;
  group->argc        = argc;
  group->argv        = argv;
}

/*
 * Inicializa los datos para este grupo de procesos.
 *
 * En caso de ser el primer grupo de procesos, lee el fichero de configuracion
 * e inicializa los vectores de comunicacion.
 *
 * En caso de ser otro grupo de procesos entra a la funcion "Sons_init()" donde
 * se comunican con los padres para inicializar sus datos.
 */
void init_application() {
454
455
  int i, last_index;

456
457
458
459
460
461
462
463
  if(group->argc < 2) {
    printf("Falta el fichero de configuracion. Uso:\n./programa config.ini id\nEl argumento numerico id es opcional\n");
    MPI_Abort(MPI_COMM_WORLD, -1);
  }
  if(group->argc > 2) {
    run_id = atoi(group->argv[2]);
  }

464
  init_config(group->argv[1], &config_file);
465
  results = malloc(sizeof(results_data));
466
  init_results_data(results, config_file->n_resizes, config_file->n_stages, config_file->groups[group->grp].iters);
467
  if(config_file->sdr) {
468
469
470
471
472
473
474
475
476
477
    group->sync_data_groups = config_file->sdr % DR_MAX_SIZE ? config_file->sdr/DR_MAX_SIZE+1 : config_file->sdr/DR_MAX_SIZE;
    group->sync_qty = (int *) malloc(group->sync_data_groups * sizeof(int));
    group->sync_array = (char **) malloc(group->sync_data_groups * sizeof(char *));
    last_index = group->sync_data_groups-1; 
    for(i=0; i<last_index; i++) {
      group->sync_qty[i] = DR_MAX_SIZE;
      malloc_comm_array(&(group->sync_array[i]), group->sync_qty[i], group->myId, group->numP);
    }
    group->sync_qty[last_index] = config_file->sdr % DR_MAX_SIZE ? config_file->sdr % DR_MAX_SIZE : DR_MAX_SIZE;
    malloc_comm_array(&(group->sync_array[last_index]), group->sync_qty[last_index], group->myId, group->numP);
478
  }
479

480
  if(config_file->adr) {
481
482
483
484
485
486
487
488
489
490
    group->async_data_groups = config_file->adr % DR_MAX_SIZE ? config_file->adr/DR_MAX_SIZE+1 : config_file->adr/DR_MAX_SIZE;
    group->async_qty = (int *) malloc(group->async_data_groups * sizeof(int));
    group->async_array = (char **) malloc(group->async_data_groups * sizeof(char *));
    last_index = group->async_data_groups-1; 
    for(i=0; i<last_index; i++) {
      group->async_qty[i] = DR_MAX_SIZE;
      malloc_comm_array(&(group->async_array[i]), group->async_qty[i], group->myId, group->numP);
    }
    group->async_qty[last_index] = config_file->adr % DR_MAX_SIZE ? config_file->adr % DR_MAX_SIZE : DR_MAX_SIZE;
    malloc_comm_array(&(group->async_array[last_index]), group->async_qty[last_index], group->myId, group->numP);
491
  }
492
493

  obtain_op_times(1);
494
495
496
497
}

/*
 * Obtiene cuanto tiempo es necesario para realizar una operacion de PI
498
499
500
501
502
503
504
505
 *
 * Si compute esta a 1 se considera que se esta inicializando el entorno
 * y realizará trabajo extra.
 *
 * Si compute esta a 0 se considera un entorno inicializado y solo hay que
 * realizar algunos cambios de reserva de memoria. Si es necesario recalcular
 * algo se obtiene el total de tiempo utilizado en dichas tareas y se resta
 * al tiempo total de ejecucion.
506
 */
507
void obtain_op_times(int compute) {
508
  size_t i;
509
  double time = 0;
510
  for(i=0; i<config_file->n_stages; i++) {
511
    time+=init_stage(config_file, i, *group, comm, compute);
512
  }
513
  if(!compute) {results->wasted_time += time;}
514
515
516
517
518
519
}

/*
 * Libera toda la memoria asociada con la aplicacion
 */
void free_application_data() {
520
521
522
523
524
525
526
527
528
  size_t i;

  if(config_file->sdr && group->sync_array != NULL) {
    for(i=0; i<group->sync_data_groups; i++) {
      free(group->sync_array[i]);
      group->sync_array[i] = NULL;
    }
    free(group->sync_qty);
    group->sync_qty = NULL;
529
    free(group->sync_array);
530
531
    group->sync_array = NULL;

532
  }
533
534
535
536
537
538
539
  if(config_file->adr && group->async_array != NULL) {
    for(i=0; i<group->async_data_groups; i++) {
      free(group->async_array[i]);
      group->async_array[i] = NULL;
    }
    free(group->async_qty);
    group->async_qty = NULL;
540
    free(group->async_array);
541
    group->async_array = NULL;
542
  }
543
544
  free_malleability();

545
546
547
  free_results_data(results, config_file->n_stages);
  free(results);

548
  free_config(config_file);
549
  
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
  free(group);
}


/* 
 * Función para crear un fichero con el nombre pasado como argumento.
 * Si el nombre ya existe, se escribe la informacion a continuacion.
 *
 * El proceso que llama a la función pasa a tener como salida estandar
 * dicho fichero si el valor "newstdout" es verdadero.
 *
 */
int create_out_file(char *nombre, int *ptr, int newstdout) {
  int err;

  *ptr = open(nombre, O_WRONLY | O_CREAT | O_APPEND, 0644);
  if(*ptr < 0) return -1; // No ha sido posible crear el fichero

  if(newstdout) {
    err = close(1);
    if(err < 0) return -2; // No es posible modificar la salida estandar
    err = dup(*ptr);
    if(err < 0) return -3; // No es posible modificar la salida estandar
  }

  return 0;
}