Logo AND Algorithmique Numérique Distribuée

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