Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Surf: also parallelize update_actions_state() of models
authorChristophe Thiéry <christopho128@gmail.com>
Fri, 20 Jan 2012 16:15:46 +0000 (17:15 +0100)
committerChristophe Thiéry <christopho128@gmail.com>
Fri, 20 Jan 2012 16:15:46 +0000 (17:15 +0100)
src/surf/surf.c
src/surf/surf_config.c

index a5af424..2750110 100644 (file)
@@ -183,11 +183,13 @@ s_surf_model_description_t surf_optimization_mode_description[] = {
 static xbt_parmap_t surf_parmap; /* parallel map for share_resources */
 #endif
 
-static int surf_nthreads;        /* number of threads of the parmap (1 means no parallelism) */
+static int surf_nthreads = 1;    /* number of threads of the parmap (1 means no parallelism) */
 static double *surf_mins = NULL; /* return value of share_resources for each model */
 static int surf_min_index;       /* current index in surf_mins */
+static double min;               /* duration determined by surf_solve */
 
 static void surf_share_resources(surf_model_t model);
+static void surf_update_actions_state(surf_model_t model);
 
 /** Displays the long description of all registered models, and quit */
 void model_help(const char *category, s_surf_model_description_t * table)
@@ -442,7 +444,7 @@ void surf_presolve(void)
 
 double surf_solve(double max_date)
 {
-  double min = -1.0; /* duration */
+  min = -1.0; /* duration */
   double next_event_date = -1.0;
   double model_next_action_end = -1.0;
   double value = -1.0;
@@ -546,8 +548,16 @@ double surf_solve(double max_date)
 
   NOW = NOW + min;
 
-  xbt_dynar_foreach(model_list, iter, model)
-      model->model_private->update_actions_state(NOW, min);
+  if (surf_get_nthreads() > 1) {
+    /* parallel version */
+    xbt_parmap_apply(surf_parmap, (void_f_pvoid_t) surf_update_actions_state, model_list);
+  }
+  else {
+    /* sequential version */
+    xbt_dynar_foreach(model_list, iter, model) {
+      surf_update_actions_state(model);
+    }
+  }
 
 #ifdef HAVE_TRACING
   TRACE_paje_dump_buffer (0);
@@ -561,8 +571,8 @@ XBT_INLINE double surf_get_clock(void)
   return NOW;
 }
 
-static void surf_share_resources(surf_model_t model) {
-
+static void surf_share_resources(surf_model_t model)
+{
   if (strcmp(model->name,"network NS3")) {
     XBT_DEBUG("Running for Resource [%s]", model->name);
     double next_action_end = model->model_private->share_resources(NOW);
@@ -573,6 +583,11 @@ static void surf_share_resources(surf_model_t model) {
   }
 }
 
+static void surf_update_actions_state(surf_model_t model)
+{
+  model->model_private->update_actions_state(NOW, min);
+}
+
 /**
  * \brief Returns the number of parallel threads used to update the models.
  * \return the number of threads (1 means no parallelism)
index 0954084..ad2b55e 100644 (file)
@@ -486,7 +486,7 @@ void surf_config_init(int *argc, char **argv)
         _surf_cfg_cb_contexts_parallel_mode, NULL);
 
     /* number of parallel threads for Surf */
-    default_value_int = 1;
+    default_value_int = surf_get_nthreads();
     xbt_cfg_register(&_surf_cfg_set, "surf/nthreads",
                      "Number of parallel threads used to update Surf models",
                      xbt_cfgelm_int, &default_value_int, 1, 1,