Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c7ba9e45e2c18a456017d1a969d65f8a0570593a
[simgrid.git] / teshsuite / simdag / network / p2p / p2p-latency3.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  * bw and latency test 3
14  * same intention as test 2
15  * sending 2 x 1 bytes at the same time 
16  * this time in opposite direction
17  */
18
19 int main(int argc, char **argv)
20 {
21   double communication_amount1[] = { 0.0, 1.0, 0.0, 0.0 };
22   double communication_amount2[] = { 0.0, 0.0, 1.0, 0.0 };
23   double no_cost1[] = { 0.0 };
24   double no_cost[] = { 0.0, 0.0 };
25
26   SD_init(&argc, argv);
27   SD_create_environment(argv[1]);
28
29   SD_task_t root = SD_task_create("Root", NULL, 1.0);
30   SD_task_t task1 = SD_task_create("Comm 1", NULL, 1.0);
31   SD_task_t task2 = SD_task_create("Comm 2", NULL, 1.0);
32
33   SD_task_schedule(root, 1, sg_host_list(), no_cost1, no_cost1, -1.0);
34   SD_task_schedule(task1, 2, sg_host_list(), no_cost, communication_amount1, -1.0);
35   SD_task_schedule(task2, 2, sg_host_list(), no_cost, communication_amount2, -1.0);
36
37   SD_task_dependency_add(NULL, NULL, root, task1);
38   SD_task_dependency_add(NULL, NULL, root, task2);
39
40   SD_simulate(-1.0);
41
42   printf("%g\n", SD_get_clock());
43   fflush(stdout);
44
45   SD_task_destroy(root);
46   SD_task_destroy(task1);
47   SD_task_destroy(task2);
48
49   SD_exit();
50   return 0;
51 }