Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fcfbb915a0466d0687e1882203003a6e6dcf668f
[simgrid.git] / teshsuite / simdag / basic / basic4.c
1 /* Copyright (c) 2007-2012, 2014-2015. 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 "simgrid/simdag.h"
10 #include "xbt/log.h"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(basic4, sd, "SimDag test basic4");
13
14 /* Basic SimDag Test 4
15  * Scenario:
16  *   - Create a chain of tasks (Init, A, Fin)
17  *   - Have a 1B communication between two no-op tasks.
18  * Verify that the tasks are actually simulated in the right order.
19  * The simulated time should be equal to the network latency: 0.0001 seconds.
20  */
21 int main(int argc, char **argv)
22 {
23   /* creation of the tasks and their dependencies */
24
25   SD_task_t taskInit;
26   SD_task_t taskA;
27   SD_task_t taskFin;
28
29   /* scheduling parameters */
30
31   double no_cost[] = { 0., 0., 0., 0. };
32   double amount[] = { 0., 1., 0., 0. };
33
34   /* SD initialization */
35   SD_init(&argc, argv);
36
37   /* creation of the environment */
38   SD_create_environment(argv[1]);
39
40   /* creation of the tasks and their dependencies */
41   taskInit = SD_task_create("Task Init", NULL, 1.0);
42   taskA = SD_task_create("Task A", NULL, 1.0);
43   taskFin = SD_task_create("Task Fin", NULL, 1.0);
44
45
46   /* let's launch the simulation! */
47   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost,
48                    no_cost, -1.0);
49   SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, amount,
50                    -1.0);
51   SD_task_schedule(taskFin, 1, SD_workstation_get_list(), no_cost, no_cost,
52                    -1.0);
53
54   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
55   SD_task_dependency_add(NULL, NULL, taskA, taskFin);
56
57   SD_simulate(-1.0);
58   SD_task_destroy(taskInit);
59   SD_task_destroy(taskA);
60   SD_task_destroy(taskFin);
61
62   XBT_INFO("Simulation time: %f", SD_get_clock());
63
64   SD_exit();
65   return 0;
66 }