"Results/DataRedist/Synch/config55.ini" did not exist on "90aa227d92575fe7f068f7c84b4047d6cf108e02"
malleabilityTimes.c 3.08 KB
Newer Older
1
#include "malleabilityTimes.h"
2
#include "malleabilityDataStructures.h"
3
4
5
6

void def_malleability_times(MPI_Datatype *new_type);

void init_malleability_times() {
7
8
9
10
11
  #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));
12
  if(mall_conf->times == NULL) {
13
14
    perror("Error al crear la estructura de tiempos interna para maleabilidad\n");
    MPI_Abort(MPI_COMM_WORLD, -5);
15
16
17
18
  }

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

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


void reset_malleability_times() {
  malleability_times_t *times = mall_conf->times;
28
29
  times->spawn_start = 0; times->sync_start = 0; times->async_start = 0; times->user_start = 0; times->malleability_start = 0;
  times->sync_end = 0; times->async_end = 0; times->user_end = 0; times->malleability_end = 0;
30
31
32
33
  times->spawn_time = 0;
}

void free_malleability_times() {
34
  #if USE_MAL_DEBUG
35
    DEBUG_FUNC("Freeing recording structure", mall->myId, mall->numP); fflush(stdout);
36
  #endif
37
38
39
40
41
42
43
  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);
  }
44
  #if USE_MAL_DEBUG
45
    DEBUG_FUNC("Freed recording structure", mall->myId, mall->numP); fflush(stdout);
46
  #endif
47
48
49
}

void malleability_times_broadcast(int root) {
50
  MPI_Bcast(mall_conf->times, 1, mall_conf->times->times_type, root, mall->intercomm);
51
52
}

53
void MAM_I_retrieve_times(double *sp_time, double *sy_time, double *asy_time, double *user_time, double *mall_time) {
54
55
56
57
  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;
58
  *user_time = times->user_end - times->user_start;
59
60
61
62
  *mall_time = times->malleability_end - times->malleability_start;
}

void def_malleability_times(MPI_Datatype *new_type) {
63
  int i, counts = 5;
64
65
66
67
  int blocklengths[counts];
  MPI_Aint displs[counts], dir;
  MPI_Datatype types[counts];

68
69
  blocklengths[0] = blocklengths[1] = blocklengths[2] = blocklengths[3] = blocklengths[4] = 1;
  types[0] = types[1] =  types[2] = types[3] = types[4] = MPI_DOUBLE;
70
71
72
73
74
75
76
77
78

  // 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]);
79
80
  MPI_Get_address(&(mall_conf->times->user_start), &displs[3]);
  MPI_Get_address(&(mall_conf->times->malleability_start), &displs[4]);
81
82
83
84
85
86

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

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