Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
improve a bunch of CMake files
[simgrid.git] / teshsuite / simdag / network / mxn / mxn-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 "simgrid/simdag.h"
11
12 /*
13  * intra communication test
14  * independent communication
15  * 
16  * 0 -> 1 
17  * 2 -> 3
18  * shared is only switch which is fat pipe
19  * should be 1 + 2 latency = 3
20  */
21
22 int main(int argc, char **argv)
23 {
24   double communication_amount[] = { 0.0, 1.0, 0.0, 0.0,
25                                     0.0, 0.0, 0.0, 0.0,
26                                     0.0, 0.0, 0.0, 1.0,
27                                     0.0, 0.0, 0.0, 0.0 };
28
29   double no_cost[] = { 0.0, 0.0, 0.0, 0.0 };
30
31   SD_init(&argc, argv);
32   SD_create_environment(argv[1]);
33
34   SD_task_t task = SD_task_create("Comm 1", NULL, 1.0);
35
36   SD_task_schedule(task, 4, sg_host_list(), no_cost, communication_amount, -1.0);
37
38   SD_simulate(-1.0);
39
40   printf("%g\n", SD_get_clock());
41   fflush(stdout);
42
43   SD_task_destroy(task);
44
45   SD_exit();
46   return 0;
47 }