Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
oops
[simgrid.git] / src / simdag / sd_dotloader.cpp
index 324363d..860f409 100644 (file)
@@ -5,7 +5,10 @@
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 #include "simdag_private.hpp"
+#include "simgrid/s4u/Activity.hpp"
+#include "simgrid/s4u/Comm.hpp"
 #include "simgrid/s4u/Engine.hpp"
+#include "simgrid/s4u/Exec.hpp"
 #include "simgrid/simdag.h"
 #include "src/internal_config.h"
 #include "xbt/file.hpp"
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(sd_dotparse, sd, "Parsing DOT files");
 
+namespace simgrid {
+namespace s4u {
+
+std::vector<ActivityPtr> create_DAG_from_dot(const std::string& filename)
+{
+  FILE* in_file = fopen(filename.c_str(), "r");
+  xbt_assert(in_file != nullptr, "Failed to open file: %s", filename.c_str());
+
+  Agraph_t* dag_dot = agread(in_file, NIL(Agdisc_t*));
+
+  std::unordered_map<std::string, ActivityPtr> activities;
+  std::vector<ActivityPtr> dag;
+
+  ActivityPtr root;
+  ActivityPtr end;
+  ActivityPtr act;
+  /* Create all the nodes */
+  Agnode_t* node = nullptr;
+  for (node = agfstnode(dag_dot); node; node = agnxtnode(dag_dot, node)) {
+    char* name    = agnameof(node);
+    double amount = atof(agget(node, (char*)"size"));
+
+    if (activities.find(name) == activities.end()) {
+      XBT_DEBUG("See <Exec id = %s amount = %.0f>", name, amount);
+      act = Exec::init()->set_name(name)->set_flops_amount(amount)->vetoable_start();
+      activities.insert({std::string(name), act});
+      if (strcmp(name, "root") && strcmp(name, "end"))
+        dag.push_back(act);
+    } else {
+      XBT_WARN("Exec '%s' is defined more than once", name);
+    }
+  }
+  /*Check if 'root' and 'end' nodes have been explicitly declared.  If not, create them. */
+  if (activities.find("root") == activities.end())
+    root = Exec::init()->set_name("root")->set_flops_amount(0)->vetoable_start();
+  else
+    root = activities.at("root");
+
+  if (activities.find("end") == activities.end())
+    end = Exec::init()->set_name("end")->set_flops_amount(0)->vetoable_start();
+  else
+    end = activities.at("end");
+
+  /* Create edges */
+  std::vector<Agedge_t*> edges;
+  for (node = agfstnode(dag_dot); node; node = agnxtnode(dag_dot, node)) {
+    edges.clear();
+    for (Agedge_t* edge = agfstout(dag_dot, node); edge; edge = agnxtout(dag_dot, edge))
+      edges.push_back(edge);
+
+    /* Be sure edges are sorted */
+    std::sort(edges.begin(), edges.end(), [](const Agedge_t* a, const Agedge_t* b) { return AGSEQ(a) < AGSEQ(b); });
+
+    for (Agedge_t* edge : edges) {
+      const char* src_name = agnameof(agtail(edge));
+      const char* dst_name = agnameof(aghead(edge));
+      double size          = atof(agget(edge, (char*)"size"));
+
+      ActivityPtr src = activities.at(src_name);
+      ActivityPtr dst = activities.at(dst_name);
+      if (size > 0) {
+        std::string name = std::string(src_name) + "->" + dst_name;
+        XBT_DEBUG("See <Comm id=%s amount = %.0f>", name.c_str(), size);
+        if (activities.find(name) == activities.end()) {
+          act = Comm::sendto_init()->set_name(name)->set_payload_size(size)->vetoable_start();
+          src->add_successor(act);
+          act->add_successor(dst);
+          activities.insert({name, act});
+          dag.push_back(act);
+        } else {
+          XBT_WARN("Comm '%s' is defined more than once", name.c_str());
+        }
+      } else {
+        src->add_successor(dst);
+      }
+    }
+  }
+
+  XBT_DEBUG("All activities have been created, put %s at the beginning and %s at the end", root->get_cname(),
+            end->get_cname());
+  dag.insert(dag.begin(), root);
+  dag.push_back(end);
+
+  /* Connect entry tasks to 'root', and exit tasks to 'end'*/
+  for (const auto& a : dag) {
+    if (a->dependencies_solved() && a != root) {
+      XBT_DEBUG("Activity '%s' has no dependencies. Add dependency from 'root'", a->get_cname());
+      root->add_successor(a);
+    }
+
+    if (a->is_waited_by() == 0 && a != end) {
+      XBT_DEBUG("Activity '%s' has no successors. Add dependency to 'end'", a->get_cname());
+      a->add_successor(end);
+    }
+  }
+  agclose(dag_dot);
+  fclose(in_file);
+
+  return dag;
+}
+
+} // namespace s4u
+} // namespace simgrid
+
 xbt_dynar_t SD_dotload_generic(const char* filename, bool sequential, bool schedule);
 
 static void dot_task_p_free(void *task) {
-  SD_task_destroy(*(SD_task_t *)task);
+  (*(SD_task_t*)task)->destroy();
 }
 
 /** @brief loads a DOT file describing a DAG
@@ -71,11 +178,11 @@ xbt_dynar_t SD_dotload_generic(const char* filename, bool sequential, bool sched
     if (jobs.find(name) == jobs.end()) {
       if (sequential) {
         XBT_DEBUG("See <job id=%s amount =%.0f>", name, amount);
-        task = SD_task_create_comp_seq(name, nullptr , amount);
+        task = simgrid::sd::Task::create_comp_seq(name, amount, nullptr);
       } else {
         double alpha = atof(agget(node, (char *) "alpha"));
         XBT_DEBUG("See <job id=%s amount =%.0f alpha = %.3f>", name, amount, alpha);
-        task = SD_task_create_comp_par_amdahl(name, nullptr , amount, alpha);
+        task = simgrid::sd::Task::create_comp_par_amdahl(name, amount, nullptr, alpha);
       }
 
       jobs.insert({std::string(name), task});
@@ -83,8 +190,7 @@ xbt_dynar_t SD_dotload_generic(const char* filename, bool sequential, bool sched
       if (strcmp(name,"root") && strcmp(name,"end"))
         xbt_dynar_push(result, &task);
 
-      if ((sequential) &&
-          ((schedule && schedule_success) || XBT_LOG_ISENABLED(sd_dotparse, xbt_log_priority_verbose))) {
+      if (sequential && ((schedule && schedule_success) || XBT_LOG_ISENABLED(sd_dotparse, xbt_log_priority_verbose))) {
         /* try to take the information to schedule the task only if all is right*/
         char *char_performer = agget(node, (char *) "performer");
         char *char_order = agget(node, (char *) "order");
@@ -94,7 +200,7 @@ xbt_dynar_t SD_dotload_generic(const char* filename, bool sequential, bool sched
 
         if ((performer != -1 && order != -1) && performer < static_cast<int>(sg_host_count())) {
           /* required parameters are given and less performers than hosts are required */
-          XBT_DEBUG ("Task '%s' is scheduled on workstation '%d' in position '%d'", task->name, performer, order);
+          XBT_DEBUG("Task '%s' is scheduled on workstation '%d' in position '%d'", task->get_cname(), performer, order);
           auto comp = computers.find(char_performer);
           if (comp != computers.end()) {
             computer = comp->second;
@@ -103,12 +209,12 @@ xbt_dynar_t SD_dotload_generic(const char* filename, bool sequential, bool sched
             computers.insert({char_performer, computer});
           }
           if (static_cast<unsigned int>(order) < computer->size()) {
-            const s_SD_task_t* task_test = computer->at(order);
+            const_SD_task_t task_test = computer->at(order);
             if (task_test && task_test != task) {
               /* the user gave the same order to several tasks */
               schedule_success = false;
               XBT_VERB("Task '%s' wants to start on performer '%s' at the same position '%s' as task '%s'",
-                       task_test->name, char_performer, char_order, task->name);
+                       task_test->get_cname(), char_performer, char_order, task->get_cname());
               continue;
             }
           } else
@@ -118,7 +224,7 @@ xbt_dynar_t SD_dotload_generic(const char* filename, bool sequential, bool sched
         } else {
           /* one of required parameters is not given */
           schedule_success = false;
-          XBT_VERB("The schedule is ignored, task '%s' can not be scheduled on %d hosts", task->name, performer);
+          XBT_VERB("The schedule is ignored, task '%s' can not be scheduled on %d hosts", task->get_cname(), performer);
         }
       }
     } else {
@@ -128,17 +234,17 @@ xbt_dynar_t SD_dotload_generic(const char* filename, bool sequential, bool sched
 
   /*Check if 'root' and 'end' nodes have been explicitly declared.  If not, create them. */
   if (jobs.find("root") == jobs.end())
-    root = (sequential ? SD_task_create_comp_seq("root", nullptr, 0)
-                       : SD_task_create_comp_par_amdahl("root", nullptr, 0, 0));
+    root = (sequential ? simgrid::sd::Task::create_comp_seq("root", 0, nullptr)
+                       : simgrid::sd::Task::create_comp_par_amdahl("root", 0, nullptr, 0));
   else
     root = jobs.at("root");
 
-  SD_task_set_state(root, SD_SCHEDULABLE);   /* by design the root task is always SCHEDULABLE */
+  root->set_state(SD_SCHEDULABLE);           /* by design the root task is always SCHEDULABLE */
   xbt_dynar_insert_at(result, 0, &root);     /* Put it at the beginning of the dynar */
 
   if (jobs.find("end") == jobs.end())
-    end = (sequential ? SD_task_create_comp_seq("end", nullptr, 0)
-                      : SD_task_create_comp_par_amdahl("end", nullptr, 0, 0));
+    end = (sequential ? simgrid::sd::Task::create_comp_seq("end", 0, nullptr)
+                      : simgrid::sd::Task::create_comp_par_amdahl("end", 0, nullptr, 0));
   else
     end = jobs.at("end");
 
@@ -165,9 +271,9 @@ xbt_dynar_t SD_dotload_generic(const char* filename, bool sequential, bool sched
         XBT_DEBUG("See <transfer id=%s amount = %.0f>", name.c_str(), size);
         if (jobs.find(name) == jobs.end()) {
           if (sequential)
-            task = SD_task_create_comm_e2e(name.c_str(), nullptr, size);
+            task = simgrid::sd::Task::create_comm_e2e(name.c_str(), size, nullptr);
           else
-            task = SD_task_create_comm_par_mxn_1d_block(name.c_str(), nullptr, size);
+            task = simgrid::sd::Task::create_comm_par_mxn_1d_block(name.c_str(), size, nullptr);
           SD_task_dependency_add(src, task);
           SD_task_dependency_add(task, dst);
           jobs.insert({name, task});
@@ -181,19 +287,19 @@ xbt_dynar_t SD_dotload_generic(const char* filename, bool sequential, bool sched
     }
   }
 
-  XBT_DEBUG("All tasks have been created, put %s at the end of the dynar", end->name);
+  XBT_DEBUG("All tasks have been created, put %s at the end of the dynar", end->get_cname());
   xbt_dynar_push(result, &end);
 
   /* Connect entry tasks to 'root', and exit tasks to 'end'*/
   unsigned i;
   xbt_dynar_foreach (result, i, task){
-    if (task->predecessors->empty() && task->inputs->empty() && task != root) {
-      XBT_DEBUG("Task '%s' has no source. Add dependency from 'root'", task->name);
+    if (task->has_unsolved_dependencies() == 0 && task != root) {
+      XBT_DEBUG("Task '%s' has no source. Add dependency from 'root'", task->get_cname());
       SD_task_dependency_add(root, task);
     }
 
-    if (task->successors->empty() && task->outputs->empty() && task != end) {
-      XBT_DEBUG("Task '%s' has no destination. Add dependency to 'end'", task->name);
+    if (task->is_waited_by() == 0 && task != end) {
+      XBT_DEBUG("Task '%s' has no destination. Add dependency to 'end'", task->get_cname());
       SD_task_dependency_add(task, end);
     }
   }
@@ -213,7 +319,7 @@ xbt_dynar_t SD_dotload_generic(const char* filename, bool sequential, bool sched
             if (previous_task && not SD_task_dependency_exists(previous_task, cur_task))
               SD_task_dependency_add(previous_task, cur_task);
 
-            SD_task_schedulel(cur_task, 1, hosts[std::stoi(elm.first)]);
+            cur_task->schedulev({hosts[std::stoi(elm.first)]});
             previous_task = cur_task;
           }
         }
@@ -237,6 +343,16 @@ xbt_dynar_t SD_dotload_generic(const char* filename, bool sequential, bool sched
   return result;
 }
 #else
+namespace simgrid {
+namespace s4u {
+std::vector<ActivityPtr> create_DAG_from_dot(const std::string& filename)
+{
+  xbt_die("create_DAG_from_dot() is not usable because graphviz was not found.\n"
+          "Please install graphviz, graphviz-dev, and libgraphviz-dev (and erase CMakeCache.txt) before recompiling.");
+}
+} // namespace s4u
+} // namespace simgrid
+
 xbt_dynar_t SD_dotload(const char *filename) {
   xbt_die("SD_dotload_generic() is not usable because graphviz was not found.\n"
       "Please install graphviz, graphviz-dev, and libgraphviz-dev (and erase CMakeCache.txt) before recompiling.");