Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7116e60d90630f137484b57d1b3f5c9dce7a71ce
[simgrid.git] / teshsuite / simdag / network / p2p / test_latency1.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 <stdlib.h>
11
12 #include "simgrid/simdag.h"
13
14 /*
15  * simple latency test
16  * send one byte from 0 to 1 
17  * 
18  * this is a test for multiple platforms
19  * see tesh file for expected output
20  * 
21  */
22 int main(int argc, char **argv)
23 {
24   double time;
25   double communication_amount[] = { 0.0, 1.0, 0.0, 0.0 };
26   const double no_cost[] = { 0.0, 0.0 };
27   SD_task_t task;
28
29   SD_init(&argc, argv);
30   SD_create_environment(argv[1]);
31
32   task = SD_task_create("Comm 1", NULL, 1.0);
33
34   SD_task_schedule(task, 2, SD_workstation_get_list(), no_cost,
35                    communication_amount, -1.0);
36
37   SD_simulate(-1.0);
38
39   time = SD_get_clock();
40
41   printf("%g\n", time);
42   fflush(stdout);
43
44   SD_task_destroy(task);
45
46   SD_exit();
47
48   return 0;
49 }