malleabilityTimes.c 2.94 KB
Newer Older
1
2
3
4
5
#include "malleabilityTimes.h"

void def_malleability_times(MPI_Datatype *new_type);

void init_malleability_times() {
6
7
8
9
10
  #if USE_MAL_DEBUG
    DEBUG_FUNC("Initializing recording structure", mall->myId, mall->numP); fflush(stdout); MPI_Barrier(mall->comm);
  #endif

  mall_conf->times = (malleability_times_t *) malloc(sizeof(malleability_times_t));
11
  if(mall_conf->times == NULL) {
12
13
    perror("Error al crear la estructura de tiempos interna para maleabilidad\n");
    MPI_Abort(MPI_COMM_WORLD, -5);
14
15
16
17
  }

  reset_malleability_times();
  def_malleability_times(&mall_conf->times->times_type);
18
19
20
21

  #if USE_MAL_DEBUG
    DEBUG_FUNC("Initialized recording structure", mall->myId, mall->numP); fflush(stdout); MPI_Barrier(mall->comm);
  #endif
22
23
24
25
26
27
28
29
30
31
32
}


void reset_malleability_times() {
  malleability_times_t *times = mall_conf->times;
  times->spawn_start = 0; times->sync_start = 0; times->async_start = 0; times->malleability_start = 0;
  times->sync_end = 0; times->async_end = 0; times->malleability_end = 0;
  times->spawn_time = 0;
}

void free_malleability_times() {
33
34
35
  #if USE_MAL_DEBUG
    DEBUG_FUNC("Freeing recording structure", mall->myId, mall->numP); fflush(stdout); MPI_Barrier(mall->comm);
  #endif
36
37
38
39
40
41
42
  if(mall_conf->times != NULL) {
    if(mall_conf->times->times_type != MPI_DATATYPE_NULL) {
      MPI_Type_free(&mall_conf->times->times_type);
      mall_conf->times->times_type = MPI_DATATYPE_NULL;
    }
    free(mall_conf->times);
  }
43
44
45
  #if USE_MAL_DEBUG
    DEBUG_FUNC("Freed recording structure", mall->myId, mall->numP); fflush(stdout); MPI_Barrier(mall->comm);
  #endif
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
}

void malleability_times_broadcast(int root) {
  malleability_times_t *times = mall_conf->times;
  MPI_Bcast(mall_conf->times, 1, times->times_type, root, mall->intercomm);
}

void malleability_I_retrieve_times(double *sp_time, double *sy_time, double *asy_time, double *mall_time) {
  malleability_times_t *times = mall_conf->times;
  *sp_time = times->spawn_time;
  *sy_time = times->sync_end - times->sync_start;
  *asy_time = times->async_end - times->async_start;
  *mall_time = times->malleability_end - times->malleability_start;
}

void def_malleability_times(MPI_Datatype *new_type) {
  int i, counts = 4;
  int blocklengths[counts];
  MPI_Aint displs[counts], dir;
  MPI_Datatype types[counts];

  blocklengths[0] = blocklengths[1] = blocklengths[2] = blocklengths[3] = 1;
  types[0] = types[1] =  types[2] = types[3] = MPI_DOUBLE;

  // Se pasa el vector a traves de la direccion de "mall_conf"
  // Rellenar vector displs
  MPI_Get_address(mall_conf->times, &dir);

  // Obtener direccion base
  MPI_Get_address(&(mall_conf->times->spawn_time), &displs[0]);
  MPI_Get_address(&(mall_conf->times->sync_start), &displs[1]);
  MPI_Get_address(&(mall_conf->times->async_start), &displs[2]);
  MPI_Get_address(&(mall_conf->times->malleability_start), &displs[3]);

  for(i=0;i<counts;i++) displs[i] -= dir;

  MPI_Type_create_struct(counts, blocklengths, displs, types, new_type);
  MPI_Type_commit(new_type);
}