Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
empty portable.h and spread the include in files
[simgrid.git] / teshsuite / simdag / platforms / Evaluate_parse_time.c
1 /* Copyright (c) 2008-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 //teshsuite/simdag/platforms/evaluate_parse_time ../examples/platforms/nancy.xml
8
9 #include <stdio.h>
10 #include "src/internal_config.h"
11 #ifdef HAVE_UNISTD_H
12 #  include <unistd.h>
13 #endif
14
15 #include "simgrid/simdag.h"
16 #include "surf/surf.h"
17 #include "xbt/xbt_os_time.h"
18
19 int main(int argc, char **argv)
20 {
21   xbt_os_timer_t timer = xbt_os_timer_new();
22   SD_init(&argc, argv);
23
24   /* creation of the environment, timed */
25   xbt_os_cputimer_start(timer);
26   SD_create_environment(argv[1]);
27   xbt_os_cputimer_stop(timer);
28
29   /* Display the result and exit after cleanup */
30   printf( "%f\n", xbt_os_timer_elapsed(timer) );
31   printf("Workstation number: %zu, link number: %d\n", sg_host_count(), sg_link_count());
32   if(argv[2]){
33     printf("Wait for %ss\n",argv[2]);
34     sleep(atoi(argv[2]));
35   }
36
37   SD_exit();
38
39   free(timer);
40   return 0;
41 }