Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into clean_events
[simgrid.git] / teshsuite / simdag / comm-p2p-latency-2 / comm-p2p-latency-2.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 2
14  * send 2 x 1 byte from 2 task in same direction 0 -> 1
15  */
16
17 int main(int argc, char **argv)
18 {
19   double communication_amount1[] = { 0.0, 1.0, 0.0, 0.0 };
20   double communication_amount2[] = { 0.0, 1.0, 0.0, 0.0 };
21   double no_cost1[] = { 0.0 };
22   double no_cost[] = { 0.0, 0.0 };
23
24   SD_init(&argc, argv);
25   SD_create_environment(argv[1]);
26
27   SD_task_t root = SD_task_create("Root", NULL, 1.0);
28   SD_task_t task1 = SD_task_create("Comm 1", NULL, 1.0);
29   SD_task_t task2 = SD_task_create("Comm 2", NULL, 1.0);
30
31   sg_host_t *hosts = sg_host_list();
32   SD_task_schedule(root, 1, hosts, no_cost1, no_cost1, -1.0);
33   SD_task_schedule(task1, 2, hosts, no_cost, communication_amount1, -1.0);
34   SD_task_schedule(task2, 2, hosts, no_cost, communication_amount2, -1.0);
35   xbt_free(hosts);
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
50   return 0;
51 }