Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
don't load private headers from C tests: they will turn to C++
[simgrid.git] / teshsuite / simdag / platforms / Evaluate_get_route_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 //for i in $(seq 1 100); do teshsuite/simdag/platforms/evaluate_get_route_time ../examples/platforms/cluster.xml 1 2> /tmp/null ; done
8
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include "simgrid/simdag.h"
13 #include "surf/surf.h"
14 #include "xbt/xbt_os_time.h"
15
16 #define BILLION  1000000000L;
17
18 int main(int argc, char **argv)
19 {
20   sg_host_t w1, w2;
21   const sg_host_t *workstations;
22   int i, j;
23   int list_size;
24   xbt_os_timer_t timer = xbt_os_timer_new();
25
26   /* SD initialization */
27   SD_init(&argc, argv);
28
29   /* creation of the environment */
30   SD_create_environment(argv[1]);
31
32   workstations = sg_host_list();
33   list_size = sg_host_count();
34
35   /* Random number initialization */
36   srand( (int) (xbt_os_time()*1000) );
37
38   do{
39     i = rand()%list_size;
40     j = rand()%list_size;
41   }while(i==j);
42
43   w1 = workstations[i];
44   w2 = workstations[j];
45   printf("%d\tand\t%d\t\t",i,j);
46
47   xbt_os_cputimer_start(timer);
48   SD_route_get_list(w1, w2);
49   xbt_os_cputimer_stop(timer);
50
51   printf("%f\n", xbt_os_timer_elapsed(timer) );
52
53   SD_exit();
54
55   return 0;
56 }