Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
separate allreduce tests, with one large and the other small, to avoid to lose too...
[simgrid.git] / teshsuite / simdag / basic3.c
1 /* Copyright (c) 2007-2012. 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(basic3, sd, "SimDag test basic3");
13
14 /* Basic SimDag Test 3
15  * Scenario:
16  *   - Create a chain of tasks (Init, A, Fin)
17  * Verify that the tasks are actually simulated in the right order.
18  */
19 int main(int argc, char **argv)
20 {
21
22   SD_task_t taskInit;
23   SD_task_t taskA;
24   SD_task_t taskFin;
25   xbt_dynar_t ret;
26
27   /* scheduling parameters */
28
29   double no_cost[] = { 0.0, 0.0, 0.0, 0.0 };
30
31   /* initialization of SD */
32   SD_init(&argc, argv);
33
34   /* creation of the environment */
35   SD_create_environment(argv[1]);
36
37   /* creation of the tasks and their dependencies */
38   taskInit = SD_task_create("Task Init", NULL, 1.0);
39   taskA = SD_task_create("Task A", NULL, 1.0);
40   taskFin = SD_task_create("Task Fin", NULL, 1.0);
41
42   /* let's launch the simulation! */
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, no_cost,
46                    -1.0);
47   SD_task_schedule(taskFin, 1, SD_workstation_get_list(), no_cost, no_cost,
48                    -1.0);
49
50   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
51   SD_task_dependency_add(NULL, NULL, taskA, taskFin);
52
53   ret = SD_simulate(-1.0);
54   xbt_dynar_free(&ret);
55   SD_task_destroy(taskInit);
56   SD_task_destroy(taskA);
57   SD_task_destroy(taskFin);
58
59   XBT_INFO("Simulation time: %f", SD_get_clock());
60
61   SD_exit();
62   return 0;
63 }