Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix copyright headers
[simgrid.git] / teshsuite / simdag / basic0.c
1 /* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include "simdag/simdag.h"
10
11 int main(int argc, char **argv)
12 {
13
14   SD_task_t taskInit;
15   SD_task_t taskA;
16   SD_task_t taskB;
17
18   /* scheduling parameters */
19
20   double communication_amount1[] = { 0, 100000000, 0, 0 };
21   double communication_amount2[] = { 0, 1, 0, 0 };
22   const double no_cost[] = { 0.0, 0.0 };
23
24   /* initialisation of SD */
25   SD_init(&argc, argv);
26
27   /* creation of the environment */
28   SD_create_environment(argv[1]);
29
30   /* creation of the tasks and their dependencies */
31   taskInit = SD_task_create("Init", NULL, 1.0);
32   taskA = SD_task_create("Task Comm 1", NULL, 1.0);
33   taskB = SD_task_create("Task Comm 2", NULL, 1.0);
34
35
36
37
38   /* let's launch the simulation! */
39
40   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost, no_cost,
41                    -1.0);
42   SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost,
43                    communication_amount1, -1.0);
44   SD_task_schedule(taskB, 2, SD_workstation_get_list(), no_cost,
45                    communication_amount2, -1.0);
46
47   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
48   SD_task_dependency_add(NULL, NULL, taskInit, taskB);
49
50   SD_simulate(-1.0);
51
52   SD_exit();
53   return 0;
54 }