X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/08541e6115b2f21947429bd4c08bc3c6357f2c66..9e68ca10e951fb61e944c99c7774b1e415ae9f6d:/examples/simdag/goal/goal_test.c diff --git a/examples/simdag/goal/goal_test.c b/examples/simdag/goal/goal_test.c index 090acf9e2f..be7b99e7e6 100644 --- a/examples/simdag/goal/goal_test.c +++ b/examples/simdag/goal/goal_test.c @@ -1,10 +1,14 @@ -/* GOAL loader prototype. Not ready for public usage yet */ - -/* Copyright (c) 2011. The SimGrid Team. - * All rights reserved. */ - -/* This program is free software; you can redistribute it and/or modify it - * under the terms of the license (GNU LGPL) which comes with this package. */ +/* Example of scatter communication, accepting a large amount of processes. + * This based the experiment of Fig. 4 in http://hal.inria.fr/hal-00650233/ + * That experiment is a comparison to the LogOPSim simulator, that takes + * GOAL files as an input, thus the file name. But there is no actual link + * to the GOAL formalism beside of this. + * + * Copyright (c) 2011. The SimGrid Team. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. + */ #include #include @@ -12,6 +16,7 @@ #include "xbt/log.h" #include "xbt/ex.h" #include +#include "xbt/xbt_os_time.h" XBT_LOG_NEW_DEFAULT_CATEGORY(goal, "The GOAL loader into SimDag"); @@ -33,7 +38,7 @@ static void send_one(int from, int to) { count++; bcast_task_t bt; - if (xbt_dynar_length(reclaimed)>0) { + if (!xbt_dynar_is_empty(reclaimed)) { bt = xbt_dynar_pop_as(reclaimed,bcast_task_t); } else { bt = xbt_new(s_bcast_task_t,1); @@ -51,6 +56,7 @@ static void send_one(int from, int to) { int main(int argc, char **argv) { + xbt_os_timer_t timer = xbt_os_timer_new(); /* initialization of SD */ SD_init(&argc, argv); @@ -64,9 +70,11 @@ 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,262144); + + 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; @@ -88,7 +96,10 @@ int main(int argc, char **argv) { 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("exec_time:%lf\n", xbt_os_timer_elapsed(timer) ); + xbt_dynar_free(&done); xbt_dynar_free(&reclaimed);