Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5a2b3d5d74ecec158403749133970759a90f328c
[simgrid.git] / teshsuite / simdag / basic / basic6.c
1 /* Copyright (c) 2007-2012, 2014-2015. 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/asserts.h"
9 #include "xbt/log.h"
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(basic6, sd, "SimDag test basic6");
12 /* test scheduling 2 tasks at the same time without artificial dependencies */
13
14 /* Basic SimDag Test 6
15  * Scenario:
16  *   - Schedule two parallel tasks concurrently on a P2P platform
17  *   - Hosts computes 1B per second
18  * Computing power is shared between tasks.
19  * Simulated time should be:
20  *          1/(1/2) = 2 seconds
21  */
22
23 int main(int argc, char **argv)
24 {
25   double comm_cost[] = { 0.0, 0.0, 0.0, 0.0 };
26   double comp_cost[] = { 1.0 };
27   xbt_dynar_t ret;
28
29   SD_init(&argc, argv);
30   SD_create_environment(argv[1]);
31
32   SD_task_t taskA = SD_task_create("Task A", NULL, 1.0);
33   SD_task_t taskB = SD_task_create("Task B", NULL, 1.0);
34
35   SD_task_schedule(taskA, 1, sg_host_list(), comp_cost, comm_cost, -1.0);
36   SD_task_schedule(taskB, 1, sg_host_list(), comp_cost, comm_cost, -1.0);
37
38   ret = SD_simulate(-1.0);
39   xbt_assert(xbt_dynar_length(ret) == 2, "I was expecting the completion of 2 tasks, but I got %lu instead",
40              xbt_dynar_length(ret));
41   SD_task_destroy(taskA);
42   SD_task_destroy(taskB);
43
44   XBT_INFO("Simulation time: %f", SD_get_clock());
45
46   SD_exit();
47   return 0;
48 }