Logo AND Algorithmique Numérique Distribuée

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