Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ignore timing errors since they are really useless
[simgrid.git] / teshsuite / simdag / basic2.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include "simdag/simdag.h"
4
5 int main(int argc, char **argv)
6 {
7
8   SD_task_t taskInit;
9   SD_task_t taskA;
10   SD_task_t taskB;
11
12   const SD_workstation_t *workstation;
13
14   double communication_amount1 = 1000000000;
15   double communication_amount2 = 100000000;
16   double no_cost = 0.0;
17
18   /* initialisation of SD */
19   SD_init(&argc, argv);
20
21   /* creation of the environment */
22   SD_create_environment(argv[1]);
23
24   /* creation of the tasks and their dependencies */
25   taskInit = SD_task_create("Init", NULL, 1.0);
26   taskA = SD_task_create("Task Comm A", NULL, 1.0);
27   taskB = SD_task_create("Task Comm B", NULL, 1.0);
28
29
30   /* scheduling parameters */
31
32   workstation = SD_workstation_get_list();
33
34   /* let's launch the simulation! */
35   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), &no_cost, &no_cost,
36                    -1.0);
37   SD_task_schedule(taskA, 1, &workstation[0], &no_cost,
38                    &communication_amount1, -1.0);
39   SD_task_schedule(taskB, 1, &workstation[1], &no_cost,
40                    &communication_amount2, -1.0);
41
42   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
43   SD_task_dependency_add(NULL, NULL, taskInit, taskB);
44
45   SD_simulate(-1.0);
46
47   SD_exit();
48   return 0;
49 }