Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
dcb3ac4a9135094d4198d4290d26627e200ae8fb
[simgrid.git] / teshsuite / simdag / basic5.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(basic5, sd, "SimDag test basic5");
13
14 int main(int argc, char **argv)
15 {
16
17   /* creation of the tasks and their dependencies */
18   SD_task_t taskInit;
19   SD_task_t taskA;
20   SD_task_t taskB;
21
22
23   /* scheduling parameters */
24
25   double no_cost[] = { 0., 0., 0., 0. };
26   double amount[] = { 0., 100000., 0., 0. };
27   double comput[] = { 10000000. };
28
29   /* initialization of SD */
30   SD_init(&argc, argv);
31
32   /* creation of the environment */
33   SD_create_environment(argv[1]);
34
35   /* creation of the tasks and their dependencies */
36   taskInit = SD_task_create("Task Init", NULL, 1.0);
37   taskA = SD_task_create("Task A", NULL, 1.0);
38   taskB = SD_task_create("Task B", NULL, 1.0);
39
40   /* let's launch the simulation! */
41   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost,
42                    no_cost, -1.0);
43   SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, amount,
44                    -1.0);
45   SD_task_schedule(taskB, 1, SD_workstation_get_list(), comput, no_cost,
46                    -1.0);
47
48   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
49   SD_task_dependency_add(NULL, NULL, taskInit, taskB);
50
51   SD_simulate(-1.0);
52
53   XBT_INFO("Simulation time: %f", SD_get_clock());
54
55   SD_exit();
56   return 0;
57 }