Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix full flag mode with Mac.
[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 #include "xbt/log.h"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(basic0, sd, "SimDag test basic0");
13
14 int main(int argc, char **argv)
15 {
16
17   SD_task_t taskInit;
18   SD_task_t taskA;
19   SD_task_t taskB;
20
21   /* scheduling parameters */
22
23   double communication_amount1[] = { 0, 100000000, 0, 0 };
24   double communication_amount2[] = { 0, 1, 0, 0 };
25   const double no_cost[] = { 0.0, 0.0 };
26
27   /* initialization of SD */
28   SD_init(&argc, argv);
29
30   /* creation of the environment */
31   SD_create_environment(argv[1]);
32
33   /* creation of the tasks and their dependencies */
34   taskInit = SD_task_create("Init", NULL, 1.0);
35   taskA = SD_task_create("Task Comm 1", NULL, 1.0);
36   taskB = SD_task_create("Task Comm 2", NULL, 1.0);
37
38
39
40
41   /* let's launch the simulation! */
42
43   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost,
44                    no_cost, -1.0);
45   SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost,
46                    communication_amount1, -1.0);
47   SD_task_schedule(taskB, 2, SD_workstation_get_list(), no_cost,
48                    communication_amount2, -1.0);
49
50   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
51   SD_task_dependency_add(NULL, NULL, taskInit, taskB);
52
53   SD_simulate(-1.0);
54
55   INFO1("Simulation time: %f", SD_get_clock());
56
57   SD_exit();
58   return 0;
59 }