Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Maybe this time I got it right.
[simgrid.git] / src / smpi / smpi_bench.c
1 #include "private.h"
2
3 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_bench, smpi,
4                                 "Logging specific to SMPI (benchmarking)");
5
6 static void smpi_execute(double duration) {
7   smx_host_t host;
8   smx_action_t action;
9   smx_mutex_t mutex;
10   smx_cond_t cond;
11   e_surf_action_state_t state;
12
13   if(duration > 0.001) {
14     host = SIMIX_host_self();
15     mutex = SIMIX_mutex_init();
16     cond = SIMIX_cond_init();
17     DEBUG1("Sleep for %f to handle real computation time", duration);
18     duration *= xbt_cfg_get_double(_surf_cfg_set, "reference_speed");
19     action = SIMIX_action_execute(host, "computation", duration);
20     SIMIX_mutex_lock(mutex);
21     SIMIX_register_action_to_condition(action, cond);
22     for(state = SIMIX_action_get_state(action);
23         state == SURF_ACTION_READY ||
24         state == SURF_ACTION_RUNNING; state = SIMIX_action_get_state(action)) {
25       SIMIX_cond_wait(cond, mutex);
26     }
27     SIMIX_unregister_action_to_condition(action, cond);
28     SIMIX_mutex_unlock(mutex);
29     SIMIX_action_destroy(action);
30     SIMIX_cond_destroy(cond);
31     SIMIX_mutex_destroy(mutex);
32   }
33 }
34
35 void smpi_bench_begin(int rank, const char* mpi_call) {
36   if(mpi_call && rank >= 0 && xbt_cfg_get_int(_surf_cfg_set, "SMPE")) {
37     INFO3("SMPE: ts=%f rank=%d type=end et=%s", SIMIX_get_clock(), rank, mpi_call);
38   }
39   xbt_os_timer_start(smpi_process_timer());
40 }
41
42 void smpi_bench_end(int rank, const char* mpi_call) {
43   xbt_os_timer_t timer = smpi_process_timer();
44
45   xbt_os_timer_stop(timer);
46   smpi_execute(xbt_os_timer_elapsed(timer));
47   if(mpi_call && rank >= 0 && xbt_cfg_get_int(_surf_cfg_set, "SMPE")) {
48     INFO3("SMPE: ts=%f rank=%d type=begin et=%s", SIMIX_get_clock(), rank, mpi_call);
49   }
50 }
51
52 /*
53 TODO
54 void smpi_do_once_1(const char *file, int line)
55 {
56   smpi_do_once_duration_node_t curr, prev;
57
58   smpi_bench_end();
59   SIMIX_mutex_lock(smpi_global->do_once_mutex);
60   prev = NULL;
61   for(curr = smpi_global->do_once_duration_nodes;
62       NULL != curr && (strcmp(curr->file, file) || curr->line != line);
63       curr = curr->next) {
64     prev = curr;
65   }
66   if(NULL == curr) {
67     curr = xbt_new(s_smpi_do_once_duration_node_t, 1);
68     curr->file = xbt_strdup(file);
69     curr->line = line;
70     curr->duration = -1;
71     curr->next = NULL;
72     if(NULL == prev) {
73       smpi_global->do_once_duration_nodes = curr;
74     } else {
75       prev->next = curr;
76     }
77   }
78   smpi_global->do_once_duration = &curr->duration;
79 }
80
81 int smpi_do_once_2()
82 {
83   double duration = *(smpi_global->do_once_duration);
84
85   if(0 > duration) {
86     smpi_start_timer();
87     return 1;
88   }
89   SIMIX_mutex_unlock(smpi_global->do_once_mutex);
90   smpi_execute(duration);
91   smpi_bench_begin();
92   return 0;
93 }
94
95 void smpi_do_once_3()
96 {
97   *(smpi_global->do_once_duration) = smpi_stop_timer();
98 }
99 */