Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
start to reorganize teshsuite/simdag
[simgrid.git] / teshsuite / simdag / comm-mxn-all2all / comm-mxn-all2all.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  * All2All
15  * 
16  * send 1 byte from all to all
17  * + 2 secs latency
18  * should be 8  (platform_4p_1switch.xml)
19  */
20
21 int main(int argc, char **argv)
22 {
23   double communication_amount[] = { 0.0, 1.0, 1.0, 1.0,
24                                     1.0, 0.0, 1.0, 1.0,
25                                     1.0, 1.0, 0.0, 1.0,
26                                     1.0, 1.0, 1.0, 0.0 };
27
28   double no_cost[] = { 0.0, 0.0, 0.0, 0.0 };
29
30   SD_init(&argc, argv);
31   SD_create_environment(argv[1]);
32
33   SD_task_t task = SD_task_create("All2all task", NULL, 1.0);
34
35   SD_task_schedule(task, 4, sg_host_list(), no_cost, communication_amount, -1.0);
36
37   SD_simulate(-1.0);
38
39   printf("%g\n", SD_get_clock());
40   fflush(stdout);
41
42   SD_task_destroy(task);
43
44   SD_exit();
45   return 0;
46 }