Esempio n. 1
0
static void create_environment(xbt_os_timer_t parse_time, const char *platformFile)
{
  xbt_ex_t e;
  TRY {
    xbt_os_timer_start(parse_time);
    SD_create_environment(platformFile);
    xbt_os_timer_stop(parse_time);
  }
  CATCH(e) {
    xbt_die("Error while loading %s: %s", platformFile, e.msg);
  }
}
Esempio n. 2
0
void smpi_bench_begin(void)
{
  xbt_os_timer_start(smpi_process_timer());
  smpi_current_rank = smpi_process_index();
}
Esempio n. 3
0
void smpi_bench_begin(void)
{
  xbt_os_timer_start(smpi_process_timer());
}