X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d49a39ee0fbc8f850d4561fca040e50198b00d68..54a25f9e51c5aa862e5306c508234188fd295247:/src/simix/smx_context_raw.c diff --git a/src/simix/smx_context_raw.c b/src/simix/smx_context_raw.c index 3f21edd1e5..766d7e1879 100644 --- a/src/simix/smx_context_raw.c +++ b/src/simix/smx_context_raw.c @@ -159,10 +159,16 @@ static xbt_parmap_t parmap; static smx_context_factory_t raw_factory; +#include "xbt/xbt_os_time.h" +static xbt_os_timer_t timer; +static double totaltime; + + static void smx_ctx_raw_wrapper(smx_ctx_raw_t context); static int smx_ctx_raw_factory_finalize(smx_context_factory_t *factory) { + INFO1("Total User Time: %lf", totaltime); if(parmap) xbt_parmap_destroy(parmap); return smx_ctx_base_factory_finalize(factory); @@ -223,9 +229,11 @@ static void smx_ctx_raw_free(smx_context_t context) static void smx_ctx_raw_suspend(smx_context_t context) { smx_current_context = (smx_context_t)maestro_raw_context; + xbt_os_timer_stop(timer); raw_swapcontext( &((smx_ctx_raw_t) context)->stack_top, ((smx_ctx_raw_t) context)->old_stack_top); + xbt_os_timer_start(timer); } static void smx_ctx_raw_stop(smx_context_t context) @@ -236,6 +244,7 @@ static void smx_ctx_raw_stop(smx_context_t context) static void smx_ctx_raw_wrapper(smx_ctx_raw_t context) { + xbt_os_timer_start(timer); (context->super.code) (context->super.argc, context->super.argv); smx_ctx_raw_stop((smx_context_t) context); @@ -248,6 +257,7 @@ static void smx_ctx_raw_resume(smx_process_t process) raw_swapcontext( &((smx_ctx_raw_t) context)->old_stack_top, ((smx_ctx_raw_t) context)->stack_top); + totaltime += xbt_os_timer_elapsed(timer); } @@ -280,8 +290,7 @@ static int smx_ctx_raw_get_thread_id(){ static void smx_ctx_raw_runall(xbt_dynar_t processes) { - if (SIMIX_context_is_parallel() - && xbt_dynar_length(processes) >= SIMIX_context_get_parallel_threshold()) { + if (xbt_dynar_length(processes) >= SIMIX_context_get_parallel_threshold()) { DEBUG1("Runall // %lu", xbt_dynar_length(processes)); raw_factory->self = smx_ctx_raw_self_parallel; raw_factory->get_thread_id = smx_ctx_raw_get_thread_id; @@ -308,9 +317,26 @@ void SIMIX_ctx_raw_factory_init(smx_context_factory_t *factory) (*factory)->name = "smx_raw_context_factory"; parmap = xbt_parmap_new(2); - (*factory)->self = smx_ctx_raw_self_parallel; - (*factory)->get_thread_id = smx_ctx_raw_get_thread_id; - (*factory)->runall = smx_ctx_raw_runall; + if (SIMIX_context_is_parallel()) { + if (SIMIX_context_get_parallel_threshold() > 1) { + /* choose dynamically */ + (*factory)->runall = smx_ctx_raw_runall; + } + else { + /* always parallel */ + (*factory)->self = smx_ctx_raw_self_parallel; + (*factory)->get_thread_id = smx_ctx_raw_get_thread_id; + (*factory)->runall = smx_ctx_raw_runall_parallel; + } + } + else { + /* always serial */ + (*factory)->self = smx_ctx_base_self; + (*factory)->get_thread_id = smx_ctx_base_get_thread_id; + (*factory)->runall = smx_ctx_raw_runall_serial; + } raw_factory = *factory; + + timer = xbt_os_timer_new(); }