Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / teshsuite / simdag / incomplete.c
1 /* Copyright (c) 2007, 2008, 2009, 2010. 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(basic2, sd, "SimDag test basic2");
13
14 int main(int argc, char **argv)
15 {
16
17   SD_task_t taskInit;
18   SD_task_t taskA, taskB, taskC, taskD;
19   xbt_dynar_t ret;
20
21   const SD_workstation_t *workstation;
22
23   double communication_amount1 = 1000000000;
24   double no_cost = 0.0;
25
26   /* initialization of SD */
27   SD_init(&argc, argv);
28
29   /* creation of the environment */
30   SD_create_environment(argv[1]);
31
32   /* creation of the tasks and their dependencies */
33   taskInit = SD_task_create("Init", NULL, 1.0);
34   taskA = SD_task_create("Task A", NULL, 1.0);
35   taskB = SD_task_create("Task B", NULL, 1.0);
36   taskC = SD_task_create("Task C", NULL, 1.0);
37   taskD = SD_task_create("Task D", NULL, 1.0);
38
39
40   /* scheduling parameters */
41
42   workstation = SD_workstation_get_list();
43
44   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
45   SD_task_dependency_add(NULL, NULL, taskInit, taskB);
46   SD_task_dependency_add(NULL, NULL, taskC, taskD);
47
48   /* let's launch the simulation! */
49   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), &no_cost,
50                    &no_cost, -1.0);
51   SD_task_schedule(taskA, 1, &workstation[0], &no_cost,
52                      &communication_amount1, -1.0);
53   SD_task_schedule(taskD, 1, &workstation[0], &no_cost,
54                      &communication_amount1, -1.0);
55
56
57   ret = SD_simulate(-1.);
58   xbt_dynar_free(&ret);
59   SD_task_destroy(taskA);
60   SD_task_destroy(taskB);
61   SD_task_destroy(taskC);
62   SD_task_destroy(taskD);
63   SD_task_destroy(taskInit);
64
65   XBT_INFO("Simulation time: %f", SD_get_clock());
66
67   SD_exit();
68   return 0;
69 }