Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move my favorite test first
[simgrid.git] / teshsuite / simdag / basic1.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   double communication_amount1 = 1000000000;
13   double communication_amount2 = 1000000000;
14   double no_cost = 0.0;
15
16   const SD_workstation_t *workstation;
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
33   workstation = SD_workstation_get_list();
34
35   /* let's launch the simulation! */
36   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), &no_cost, &no_cost,
37                    -1.0);
38   SD_task_schedule(taskA, 1, &workstation[0], &no_cost,
39                    &communication_amount1, -1.0);
40   SD_task_schedule(taskB, 1, &workstation[1], &no_cost,
41                    &communication_amount2, -1.0);
42
43   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
44   SD_task_dependency_add(NULL, NULL, taskInit, taskB);
45
46   SD_simulate(-1.0);
47
48   SD_exit();
49   return 0;
50 }