Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
try again to be 32/64 bit agnostic
[simgrid.git] / teshsuite / simdag / basic5.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(basic5, sd, "SimDag test basic5");
13
14 /* Basic SimDag Test 5
15  * Scenario:
16  *   - Create a no-op Init task
17  *   - Create two tasks: send 100kB and compute 10Mflops
18  *   - Schedule them concurrently
19  * The two tasks should overlap smoothly as they use different resources.
20  * Simulated time should be:
21  *          MAX(1e5/(1.25e8), 1e7/4e9) = MAX(.0009, .0025) = 0.0025 seconds
22  */
23 int main(int argc, char **argv)
24 {
25
26   /* creation of the tasks and their dependencies */
27   SD_task_t taskInit;
28   SD_task_t taskA;
29   SD_task_t taskB;
30   xbt_dynar_t ret;
31
32   /* scheduling parameters */
33
34   double no_cost[] = { 0., 0., 0., 0. };
35   double amount[] = { 0., 100000., 0., 0. };
36   double comput[] = { 10000000. };
37
38   /* initialization of SD */
39   SD_init(&argc, argv);
40
41   /* creation of the environment */
42   SD_create_environment(argv[1]);
43
44   /* creation of the tasks and their dependencies */
45   taskInit = SD_task_create("Task Init", NULL, 1.0);
46   taskA = SD_task_create("Task A", NULL, 1.0);
47   taskB = SD_task_create("Task B", NULL, 1.0);
48
49   /* let's launch the simulation! */
50   SD_task_schedule(taskInit, 1, SD_workstation_get_list(), no_cost,
51                    no_cost, -1.0);
52   SD_task_schedule(taskA, 2, SD_workstation_get_list(), no_cost, amount,
53                    -1.0);
54   SD_task_schedule(taskB, 1, SD_workstation_get_list(), comput, no_cost,
55                    -1.0);
56
57   SD_task_dependency_add(NULL, NULL, taskInit, taskA);
58   SD_task_dependency_add(NULL, NULL, taskInit, taskB);
59
60   ret = SD_simulate(-1.0);
61   xbt_dynar_free(&ret);
62   SD_task_destroy(taskInit);
63   SD_task_destroy(taskA);
64   SD_task_destroy(taskB);
65
66   XBT_INFO("Simulation time: %f", SD_get_clock());
67
68   SD_exit();
69   return 0;
70 }