X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/079bef13256f87de97315cb8c9f0e57d463d62d7..048eca56ac5a50c0eed581d0e086c25f07c89013:/src/smpi/smpi_bench.c diff --git a/src/smpi/smpi_bench.c b/src/smpi/smpi_bench.c index 7e69951c1e..b0f25dcaf6 100644 --- a/src/smpi/smpi_bench.c +++ b/src/smpi/smpi_bench.c @@ -126,6 +126,18 @@ void smpi_bench_destroy(void) xbt_dict_free(&calls); } +XBT_PUBLIC(void) smpi_execute_flops_(double *flops); +void smpi_execute_flops_(double *flops) +{ + smpi_execute_flops(*flops); +} + +XBT_PUBLIC(void) smpi_execute_(double *duration); +void smpi_execute_(double *duration) +{ + smpi_execute(*duration); +} + void smpi_execute_flops(double flops) { smx_action_t action; smx_host_t host; @@ -138,7 +150,7 @@ void smpi_execute_flops(double flops) { simcall_host_execution_wait(action); } -static void smpi_execute(double duration) +void smpi_execute(double duration) { if (duration >= smpi_cpu_threshold) { XBT_DEBUG("Sleep for %g to handle real computation time", duration); @@ -496,28 +508,28 @@ void smpi_shared_free(void *ptr) } #endif -int smpi_shared_known_call(const char* func, const char* input) { - char* loc = bprintf("%s:%s", func, input); - xbt_ex_t ex; - int known; +int smpi_shared_known_call(const char* func, const char* input) +{ + char* loc = bprintf("%s:%s", func, input); + xbt_ex_t ex; + int known = 0; - if(!calls) { - calls = xbt_dict_new_homogeneous(NULL); - } - TRY { - xbt_dict_get(calls, loc); /* Succeed or throw */ - known = 1; - } - CATCH(ex) { - if(ex.category == not_found_error) { - known = 0; - xbt_ex_free(ex); - } else { - RETHROW; - } - } - free(loc); - return known; + if (!calls) { + calls = xbt_dict_new_homogeneous(NULL); + } + TRY { + xbt_dict_get(calls, loc); /* Succeed or throw */ + known = 1; + } + TRY_CLEANUP { + xbt_free(loc); + } + CATCH(ex) { + if (ex.category != not_found_error) + RETHROW; + xbt_ex_free(ex); + } + return known; } void* smpi_shared_get_call(const char* func, const char* input) {