Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reintroduce some changes removed by previous commit of Malek
[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   SD_task_t taskInit;
8   SD_task_t taskA;
9   SD_task_t taskB;
10
11    /* scheduling parameters */
12
13   double communication_amount1[] = { 0, 100000000, 0, 0 };
14   double communication_amount2[] = { 0, 1, 0, 0 };
15   const double no_cost[] = {0.0, 0.0};
16
17   /* initialisation of SD */
18   SD_init(&argc, argv);
19
20   /* creation of the environment */
21   SD_create_environment(argv[1]);
22
23   /* creation of the tasks and their dependencies */
24   taskInit = SD_task_create("Init",NULL,1.0);
25   taskA = SD_task_create("Task Comm 1", NULL, 1.0);
26   taskB = SD_task_create("Task Comm 2", NULL, 1.0);
27   
28
29  
30   
31   /* let's launch the simulation! */
32
33   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost, no_cost, -1.0);
34   SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, communication_amount1, -1.0);
35   SD_task_schedule(taskB, 2, SD_workstation_get_list(), no_cost, communication_amount2, -1.0);
36
37   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
38   SD_task_dependency_add(NULL, NULL, taskInit, taskB);
39
40   SD_simulate(-1.0);
41
42   SD_exit();
43   return 0;
44 }
45