Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
SimDag Revolution: SD_workstation becomes sg_host
[simgrid.git] / teshsuite / simdag / network / mxn / test_intra_independent_comm.c
1 /* Latency tests                                                            */
2
3 /* Copyright (c) 2007, 2009-2011, 2013-2015. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include <stdio.h>
10 #include <stdlib.h>
11
12 #include "simgrid/simdag.h"
13
14 /*
15  * intra communication test
16  * independent communication
17  * 
18  * 0 -> 1 
19  * 2 -> 3
20  * shared is only switch which is fat pipe
21  * should be 1 + 2 latency = 3
22  */
23
24 int main(int argc, char **argv)
25 {
26   double time;
27   SD_task_t task;
28
29   double communication_amount[] = { 0.0, 1.0, 0.0, 0.0,
30     0.0, 0.0, 0.0, 0.0,
31     0.0, 0.0, 0.0, 1.0,
32     0.0, 0.0, 0.0, 0.0,
33   };
34
35   double no_cost[] = { 0.0, 0.0, 0.0, 0.0 };
36
37
38   /***************************************/
39
40   SD_init(&argc, argv);
41   SD_create_environment(argv[1]);
42
43   task = SD_task_create("Comm 1", NULL, 1.0);
44
45   SD_task_schedule(task, 4, sg_host_list(), no_cost,
46                    communication_amount, -1.0);
47
48   SD_simulate(-1.0);
49
50   time = SD_get_clock();
51
52   printf("%g\n", time);
53   fflush(stdout);
54
55   SD_task_destroy(task);
56
57   SD_exit();
58
59   return 0;
60 }