Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines.
[simgrid.git] / teshsuite / simdag / comm-p2p-latency-1 / comm-p2p-latency-1.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  * simple latency test
14  * send one byte from 0 to 1
15  *
16  * this is a test for multiple platforms
17  * see tesh file for expected output
18  */
19 int main(int argc, char **argv)
20 {
21   double communication_amount[] = { 0.0, 1.0, 0.0, 0.0 };
22   const double no_cost[] = { 0.0, 0.0 };
23
24   SD_init(&argc, argv);
25   SD_create_environment(argv[1]);
26
27   SD_task_t task = SD_task_create("Comm 1", NULL, 1.0);
28
29   sg_host_t *hosts = sg_host_list();
30   SD_task_schedule(task, 2, hosts, no_cost, communication_amount, -1.0);
31   xbt_free(hosts);
32
33   SD_simulate(-1.0);
34
35   printf("%g\n", SD_get_clock());
36   fflush(stdout);
37
38   SD_task_destroy(task);
39
40   return 0;
41 }