Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into vmtrace
[simgrid.git] / examples / simdag / goal / goal_test.c
index 4f1ddf5..ab76bc6 100644 (file)
@@ -12,6 +12,7 @@
 #include "xbt/log.h"
 #include "xbt/ex.h"
 #include <string.h>
+#include "xbt/xbt_os_time.h"
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(goal, "The GOAL loader into SimDag");
 
@@ -23,26 +24,35 @@ typedef struct {
 const SD_workstation_t* ws_list;
 int count = 0;
 
+xbt_dynar_t reclaimed;
+
 static void send_one(int from, int to) {
   //XBT_DEBUG("send_one(%d, %d)",from,to);
 
-  if (count %1000 == 0)
+  if (count %100000 == 0)
     XBT_INFO("Sending task #%d",count);
   count++;
 
-  bcast_task_t bt = xbt_new(s_bcast_task_t,1);
-
+  bcast_task_t bt;
+  if (!xbt_dynar_is_empty(reclaimed)) {
+     bt = xbt_dynar_pop_as(reclaimed,bcast_task_t);
+  } else {
+    bt = xbt_new(s_bcast_task_t,1);
+  }
   bt->i=from;
   bt->j=(from+to)/2;
   bt->k=to;
 
-  SD_task_t t = SD_task_create_comm_e2e("Blab",bt,424242);
+  SD_task_t task = SD_task_create_comm_e2e(NULL,bt,424242);
+
   XBT_DEBUG("Schedule task between %d and %d",bt->i,bt->j);
-  SD_task_schedulel(t,2,ws_list[bt->i],ws_list[bt->j]);
-  SD_task_watch(t,SD_DONE);
+  SD_task_schedulel(task,2,ws_list[bt->i],ws_list[bt->j]);
+  SD_task_watch(task,SD_DONE);
 }
 
+
 int main(int argc, char **argv) {
+  xbt_os_timer_t timer = xbt_os_timer_new();
 
   /* initialization of SD */
   SD_init(&argc, argv);
@@ -54,10 +64,13 @@ int main(int argc, char **argv) {
   }
 
   ws_list = SD_workstation_get_list();
+  reclaimed = xbt_dynar_new(sizeof(bcast_task_t),xbt_free_ref);
   xbt_dynar_t done = NULL;
-  send_one(0,10000);
+
+  xbt_os_timer_start(timer);
+  send_one(0,SD_workstation_get_number());
   do {
-    if (done != NULL && xbt_dynar_length(done) > 0) {
+    if (done != NULL && !xbt_dynar_is_empty(done)) {
       unsigned int cursor;
       SD_task_t task;
 
@@ -69,14 +82,24 @@ int main(int argc, char **argv) {
         if (bt->j != bt->k -1)
           send_one(bt->j,bt->k);
 
+        if (xbt_dynar_length(reclaimed)<100) {
+          xbt_dynar_push_as(reclaimed,bcast_task_t,bt);
+        } else {
+          free(bt);
+        }
         SD_task_destroy(task);
-        free(bt);
       }
       xbt_dynar_free(&done);
     }
     done=SD_simulate(-1);
-  } while(xbt_dynar_length(done) > 0);
+  } while(!xbt_dynar_is_empty(done));
+  xbt_os_timer_stop(timer);
+  printf("parse_time:%lf\n", xbt_os_timer_elapsed(timer) );
+
+  xbt_dynar_free(&done);
+  xbt_dynar_free(&reclaimed);
 
   SD_exit();
+  XBT_INFO("Done. Bailing out");
   return 0;
 }