X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3f0c94e70e5ee6fc659b2e1dd45c765e7afbd0fe..6b9672672f0cd8aa40d392cfd422da035e14fb40:/examples/simdag/goal/goal_test.c diff --git a/examples/simdag/goal/goal_test.c b/examples/simdag/goal/goal_test.c index 0cec495a68..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 @@ -94,7 +98,7 @@ int main(int argc, char **argv) { done=SD_simulate(-1); } while(!xbt_dynar_is_empty(done)); xbt_os_timer_stop(timer); - printf("%lf\n", xbt_os_timer_elapsed(timer) ); + printf("exec_time:%lf\n", xbt_os_timer_elapsed(timer) ); xbt_dynar_free(&done); xbt_dynar_free(&reclaimed);