Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
New files by FS.
[simgrid.git] / teshsuite / simdag / basic5.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include "simdag/simdag.h"
4
5 int main(int argc, char **argv) {
6
7         /* creation of the tasks and their dependencies */
8     SD_task_t taskInit;
9     SD_task_t taskA;
10     SD_task_t taskB;
11
12
13     /* scheduling parameters */
14
15     double no_cost[] = { 0., 0., 0., 0. };
16     double amount[] = { 0., 100000., 0., 0.};
17     double comput[] = { 10000000. };
18
19     /* initialisation of SD */
20     SD_init(&argc, argv);
21
22     /* creation of the environment */
23     SD_create_environment(argv[1]);
24
25     /* creation of the tasks and their dependencies */
26     taskInit = SD_task_create("Task Init",NULL,1.0);
27     taskA = SD_task_create("Task A", NULL, 1.0);
28     taskB = SD_task_create("Task B", NULL, 1.0);
29
30     /* let's launch the simulation! */
31     SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost, no_cost, -1.0);
32     SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, amount, -1.0);
33     SD_task_schedule(taskB, 1, SD_workstation_get_list(), comput, no_cost, -1.0);
34
35     SD_task_dependency_add(NULL, NULL, taskInit, taskA);
36     SD_task_dependency_add(NULL, NULL, taskInit, taskB);
37     
38     SD_simulate(-1.0);
39
40     SD_exit();
41     return 0;
42 }