Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines.
[simgrid.git] / teshsuite / simdag / incomplete / incomplete.c
1 /* Copyright (c) 2007-2021. 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 "simgrid/simdag.h"
8 #include "xbt/log.h"
9
10 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(incomplete, sd, "SimDag incomplete test");
11
12 /* SimDag Incomplete Test
13  * Scenario:
14  *   - Create a bunch of tasks
15  *   - schedule only a subset of them (init, A and D)
16  *   - run the simulation
17  *   - Verify that we detect which tasks are not scheduled and show their state.
18  * The scheduled task A sends 1GB. Simulation time should be
19  *          1e9/1.25e8 + 1e-4 = 8.0001 seconds
20  * Task D is scheduled but depends on unscheduled task C.
21  */
22 int main(int argc, char **argv)
23 {
24   /* scheduling parameters */
25   double communication_amount1 = 1e9;
26   double no_cost = 0.0;
27
28   /* initialization of SD */
29   SD_init(&argc, argv);
30
31   /* creation of the environment */
32   SD_create_environment(argv[1]);
33
34   /* creation of the tasks and their dependencies */
35   SD_task_t taskInit = SD_task_create("Init", NULL, 1.0);
36   SD_task_t taskA = SD_task_create("Task A", NULL, 1.0);
37   SD_task_t taskB = SD_task_create("Task B", NULL, 1.0);
38   SD_task_t taskC = SD_task_create("Task C", NULL, 1.0);
39   SD_task_t taskD = SD_task_create("Task D", NULL, 1.0);
40
41   SD_task_dependency_add(taskInit, taskA);
42   SD_task_dependency_add(taskInit, taskB);
43   SD_task_dependency_add(taskC, taskD);
44
45   sg_host_t *hosts = sg_host_list();
46   SD_task_schedule(taskInit, 1, hosts, &no_cost, &no_cost, -1.0);
47   SD_task_schedule(taskA, 1, &hosts[0], &no_cost, &communication_amount1, -1.0);
48   SD_task_schedule(taskD, 1, &hosts[0], &no_cost, &communication_amount1, -1.0);
49   xbt_free(hosts);
50
51   /* let's launch the simulation! */
52   SD_simulate(-1.);
53
54   SD_task_destroy(taskA);
55   SD_task_destroy(taskB);
56   SD_task_destroy(taskC);
57   SD_task_destroy(taskD);
58   SD_task_destroy(taskInit);
59
60   XBT_INFO("Simulation time: %f", SD_get_clock());
61
62
63   return 0;
64 }