Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a201a84abefd61a238796a98f07d299ac806537e
[simgrid.git] / teshsuite / simdag / network / mxn / test_intra_independent_comm.c
1
2 /*
3  * SimDag
4  * Latency tests
5  * Copyright (C) 2007 
6  * Sascha Hunold, Frederic Suter
7  */
8
9 #include <stdio.h>
10 #include <stdlib.h>
11
12 #include "simdag/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   double time;
26   SD_task_t task;
27   
28   double communication_amount[] = 
29         {     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, SD_workstation_get_list(), no_cost, communication_amount, -1.0);
46   
47   SD_simulate(-1.0);
48   
49   time = SD_get_clock();
50
51   printf("%g\n", time);
52   fflush(stdout);
53
54   SD_task_destroy(task);
55   
56   SD_exit();
57   
58   return 0;
59 }
60