Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines.
[simgrid.git] / teshsuite / simdag / comm-p2p-latency-3 / comm-p2p-latency-3.c
1 /* Latency tests                                                            */
2
3 /* Copyright (c) 2007-2021. 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   sg_host_t *hosts = sg_host_list();
34   SD_task_schedule(root, 1, hosts, no_cost1, no_cost1, -1.0);
35   SD_task_schedule(task1, 2, hosts, no_cost, communication_amount1, -1.0);
36   SD_task_schedule(task2, 2, hosts, no_cost, communication_amount2, -1.0);
37   xbt_free(hosts);
38
39   SD_task_dependency_add(root, task1);
40   SD_task_dependency_add(root, task2);
41
42   SD_simulate(-1.0);
43
44   printf("%g\n", SD_get_clock());
45   fflush(stdout);
46
47   SD_task_destroy(root);
48   SD_task_destroy(task1);
49   SD_task_destroy(task2);
50
51   return 0;
52 }