Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ignore timing errors since they are really useless
[simgrid.git] / teshsuite / simdag / basic0.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   /* scheduling parameters */
13
14   double communication_amount1[] = { 0, 100000000, 0, 0 };
15   double communication_amount2[] = { 0, 1, 0, 0 };
16   const double no_cost[] = { 0.0, 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 1", NULL, 1.0);
27   taskB = SD_task_create("Task Comm 2", NULL, 1.0);
28
29
30
31
32   /* let's launch the simulation! */
33
34   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost, no_cost,
35                    -1.0);
36   SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost,
37                    communication_amount1, -1.0);
38   SD_task_schedule(taskB, 2, SD_workstation_get_list(), no_cost,
39                    communication_amount2, -1.0);
40
41   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
42   SD_task_dependency_add(NULL, NULL, taskInit, taskB);
43
44   SD_simulate(-1.0);
45
46   SD_exit();
47   return 0;
48 }