Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a313557ba33ce38919c8e875a8101d0cdd3829b6
[simgrid.git] / examples / simdag / dot / ptg_test.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 <stdlib.h>
8 #include <stdio.h>
9 #include "simgrid/simdag.h"
10 #include "xbt/log.h"
11 #include "xbt/ex.h"
12 #include <string.h>
13 #include <libgen.h>
14
15 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Logging specific to this SimDag example");
16
17 /* simple test trying to load a Parallel Task Graph (PTG) as a DOT file.    */
18 int main(int argc, char **argv){
19   xbt_dynar_t dot;
20   unsigned int cursor;
21   SD_task_t task;
22
23   /* initialization of SD */
24   SD_init(&argc, argv);
25
26   /* Check our arguments */
27   xbt_assert (argc > 1,"Usage: %s platform_file dot_file example: %s ../2clusters.xml ptg.dot", argv[0], argv[0]);
28
29   /* creation of the environment */
30   SD_create_environment(argv[1]);
31
32   /* load the DOT file */
33   dot = SD_PTG_dotload(argv[2]);
34   if(dot == NULL){
35     SD_exit();
36     xbt_die("No dot load may be you have a cycle in your graph");
37   }
38
39   /* Display all the tasks */
40   XBT_INFO("------------------- Display all tasks of the loaded DAG ---------------------------");
41   xbt_dynar_foreach(dot, cursor, task) {
42     SD_task_dump(task);
43   }
44
45   FILE *dotout = fopen("dot.dot", "w");
46   fprintf(dotout, "digraph A {\n");
47   xbt_dynar_foreach(dot, cursor, task) {
48     SD_task_dotty(task, dotout);
49   }
50   fprintf(dotout, "}\n");
51   fclose(dotout);
52
53   /* Schedule them all on all the first workstation */
54   XBT_INFO("------------------- Schedule tasks ---------------------------");
55   const sg_host_t *ws_list = sg_host_list();
56   int count = sg_host_count();
57   xbt_dynar_foreach(dot, cursor, task) {
58     if (SD_task_get_kind(task) == SD_TASK_COMP_PAR_AMDAHL) {
59         SD_task_schedulev(task, count, ws_list);
60     }
61   }
62
63   XBT_INFO("------------------- Run the schedule ---------------------------");
64   SD_simulate(-1);
65   XBT_INFO("Makespan: %f", SD_get_clock());
66   xbt_dynar_foreach(dot, cursor, task) {
67     SD_task_destroy(task);
68   }
69   xbt_dynar_free_container(&dot);
70
71   /* exit */
72   SD_exit();
73   return 0;
74 }