Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / teshsuite / simdag / basic1 / basic1.c
1 /* Copyright (c) 2007-2019. 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/str.h"
9
10 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(basic1, sd, "SimDag test basic1");
11
12 /* Basic SimDag Test 1
13  * Scenario:
14  *   - Create a no-op Init task
15  *   - Create two communication tasks: 1GB and 1GB
16  *   - Schedule them concurrently on the two hosts of the platform
17  * The two communications occur simultaneously. They share the network for the
18  * whole duration of the simulation.
19  * Simulated time should be:
20  *          1e9/(1/2*1.25e8) + 1e-4 = 16.0001 seconds
21  */
22 int main(int argc, char **argv)
23 {
24
25   /* initialization of SD */
26   SD_init(&argc, argv);
27
28   /* creation of the environment */
29   SD_create_environment(argv[1]);
30   /* scheduling parameters */
31   double communication_amount1 = xbt_str_parse_double(argv[2], "Invalid communication size: %s");
32   double communication_amount2 = xbt_str_parse_double(argv[3], "Invalid communication size: %s");
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 Comm A", NULL, 1.0);
37   SD_task_t taskB = SD_task_create("Task Comm B", NULL, 1.0);
38
39   SD_task_dependency_add(taskInit, taskA);
40   SD_task_dependency_add(taskInit, taskB);
41
42   sg_host_t *hosts = sg_host_list();
43   SD_task_schedule(taskInit, 1, hosts, SD_SCHED_NO_COST, SD_SCHED_NO_COST, -1.0);
44   SD_task_schedule(taskA, 1, &hosts[0], SD_SCHED_NO_COST, &communication_amount1, -1.0);
45   SD_task_schedule(taskB, 1, &hosts[1], SD_SCHED_NO_COST, &communication_amount2, -1.0);
46   xbt_free(hosts);
47
48   /* let's launch the simulation! */
49   SD_simulate(-1.0);
50   SD_task_destroy(taskA);
51   SD_task_destroy(taskB);
52   SD_task_destroy(taskInit);
53
54   XBT_INFO("Simulation time: %f", SD_get_clock());
55
56   return 0;
57 }