Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / examples / simdag / ptg-dotload / sd_ptg-dotload.c
1 /* Copyright (c) 2013-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/log.h"
9
10 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Logging specific to this SimDag example");
11
12 /* simple test trying to load a Parallel Task Graph (PTG) as a DOT file.    */
13 int main(int argc, char **argv){
14   xbt_dynar_t dot;
15   unsigned int cursor;
16   SD_task_t task;
17
18   /* initialization of SD */
19   SD_init(&argc, argv);
20
21   /* Check our arguments */
22   xbt_assert (argc > 1,"Usage: %s platform_file dot_file example: %s ../2clusters.xml ptg.dot", argv[0], argv[0]);
23
24   /* creation of the environment */
25   SD_create_environment(argv[1]);
26
27   /* load the DOT file */
28   dot = SD_PTG_dotload(argv[2]);
29   if(dot == NULL){
30     xbt_die("No dot load may be you have a cycle in your graph");
31   }
32
33   /* Display all the tasks */
34   XBT_INFO("------------------- Display all tasks of the loaded DAG ---------------------------");
35   xbt_dynar_foreach(dot, cursor, task) {
36     SD_task_dump(task);
37   }
38
39   /* Schedule them all on all the first host*/
40   XBT_INFO("------------------- Schedule tasks ---------------------------");
41   sg_host_t *hosts = sg_host_list();
42   int count = sg_host_count();
43   xbt_dynar_foreach(dot, cursor, task) {
44     if (SD_task_get_kind(task) == SD_TASK_COMP_PAR_AMDAHL) {
45         SD_task_schedulev(task, count, hosts);
46     }
47   }
48   xbt_free(hosts);
49
50   XBT_INFO("------------------- Run the schedule ---------------------------");
51   SD_simulate(-1);
52   XBT_INFO("Makespan: %f", SD_get_clock());
53   xbt_dynar_foreach(dot, cursor, task) {
54     SD_task_destroy(task);
55   }
56   xbt_dynar_free_container(&dot);
57
58   return 0;
59 }