Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
simplify
[simgrid.git] / examples / deprecated / simdag / ptg-dotload / sd_ptg-dotload.c
1 /* Copyright (c) 2013-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_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   xbt_assert(dot != NULL, "No dot load may be you have a cycle in your graph");
30
31   /* Display all the tasks */
32   XBT_INFO("------------------- Display all tasks of the loaded DAG ---------------------------");
33   xbt_dynar_foreach(dot, cursor, task) {
34     SD_task_dump(task);
35   }
36
37   /* Schedule them all on all the first host*/
38   XBT_INFO("------------------- Schedule tasks ---------------------------");
39   sg_host_t *hosts = sg_host_list();
40   int count = sg_host_count();
41   xbt_dynar_foreach(dot, cursor, task) {
42     if (SD_task_get_kind(task) == SD_TASK_COMP_PAR_AMDAHL) {
43         SD_task_schedulev(task, count, hosts);
44     }
45   }
46   xbt_free(hosts);
47
48   XBT_INFO("------------------- Run the schedule ---------------------------");
49   SD_simulate(-1);
50   XBT_INFO("Makespan: %f", SD_get_clock());
51   xbt_dynar_foreach(dot, cursor, task) {
52     SD_task_destroy(task);
53   }
54   xbt_dynar_free_container(&dot);
55
56   return 0;
57 }