Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
4c66b2fe1c0160e8679e1e6b261c6312b0e11c73
[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 <stdlib.h>
11 #include "simgrid/simdag.h"
12 #include "surf/surf.h"
13 #include "xbt/xbt_os_time.h"
14
15 int main(int argc, char **argv)
16 {
17   xbt_os_timer_t timer = xbt_os_timer_new();
18
19   /* initialization of SD */
20   SD_init(&argc, argv);
21
22   /* creation of the environment, timed */
23   xbt_os_cputimer_start(timer);
24   SD_create_environment(argv[1]);
25   xbt_os_cputimer_stop(timer);
26
27   /* Display the result and exit after cleanup */
28   printf( "%f\n", xbt_os_timer_elapsed(timer) );
29     printf("Workstation number: %zu, link number: %d\n",
30            sg_host_count(), sg_link_count());
31   if(argv[2]){
32     printf("Wait for %ss\n",argv[2]);
33     sleep(atoi(argv[2]));
34   }
35
36   SD_exit();
37
38   free(timer);
39   return 0;
40 }