Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2961efdd87406c054ac09e7203608604afec23c0
[simgrid.git] / teshsuite / simdag / basic / basic0.c
1 /* Copyright (c) 2007-2012, 2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include "simdag/simdag.h"
10 #include "xbt/log.h"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(basic0, sd, "SimDag test basic0");
13
14 /* Basic SimDag Test 0
15  * Scenario:
16  *   - Create a no-op Init task
17  *   - Create two communication tasks: 100MB and 1B
18  *   - Schedule them concurrently on the two hosts of the platform
19  * The two communications occur simultaneously but one is so short that it has
20  * no impact on the other.
21  * Simulated time should be:
22  *          1e8/1.25e8 + 1e-4 = 0.8001 seconds
23  * This corresponds to paying latency once and having the full bandwidth for the
24  * big message.
25  */
26 int main(int argc, char **argv)
27 {
28   SD_task_t taskInit;
29   SD_task_t taskA;
30   SD_task_t taskB;
31   xbt_dynar_t ret;
32
33   /* scheduling parameters */
34
35   double communication_amount1[] = { 0, 1e8, 0, 0 };
36   double communication_amount2[] = { 0, 1, 0, 0 };
37   const double no_cost[] = { 0.0, 0.0 };
38
39   /* initialization of SD */
40   SD_init(&argc, argv);
41
42   /* creation of the environment */
43   SD_create_environment(argv[1]);
44
45   /* creation of the tasks and their dependencies */
46   taskInit = SD_task_create("Init", NULL, 1.0);
47   taskA = SD_task_create("Task Comm 1", NULL, 1.0);
48   taskB = SD_task_create("Task Comm 2", NULL, 1.0);
49
50   /* let's launch the simulation! */
51
52   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost,
53                    no_cost, -1.0);
54   SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost,
55                    communication_amount1, -1.0);
56   SD_task_schedule(taskB, 2, SD_workstation_get_list(), no_cost,
57                    communication_amount2, -1.0);
58
59   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
60   SD_task_dependency_add(NULL, NULL, taskInit, taskB);
61
62   ret = SD_simulate(-1.0);
63   xbt_dynar_free(&ret);
64   SD_task_destroy(taskInit);
65   SD_task_destroy(taskA);
66   SD_task_destroy(taskB);
67
68   XBT_INFO("Simulation time: %f", SD_get_clock());
69
70   SD_exit();
71   return 0;
72 }