X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cc01c6a871dbbfd0cc84e26eb9f94aeb539e613e..3ca5d58e75df5f28588be1953f6b84a79b163d3b:/examples/msg/parallel_task/test_ptask.c diff --git a/examples/msg/parallel_task/test_ptask.c b/examples/msg/parallel_task/test_ptask.c index b73ab3aef4..f4a79a4e24 100644 --- a/examples/msg/parallel_task/test_ptask.c +++ b/examples/msg/parallel_task/test_ptask.c @@ -35,13 +35,13 @@ int execute(int argc, char *argv[]) int host_list_size; double *computation_duration = NULL; double *communication_table = NULL; - double communication_amount; - double computation_amount; + double communication_amount = 0; + double computation_amount = 0; double execution_time; host_list_size = argc - 3; - DEBUG1("host_list_size=%d", host_list_size); + XBT_DEBUG("host_list_size=%d", host_list_size); m_host_list = calloc(host_list_size, sizeof(m_host_t)); for (i = 1; i <= host_list_size; i++) { m_host_list[i - 1] = MSG_get_host_by_name(argv[i]); @@ -49,10 +49,11 @@ int execute(int argc, char *argv[]) "Unknown host %s. Stopping Now! ", argv[i]); } - xbt_assert1(sscanf(argv[argc - 2], "%lg", &computation_amount), - "Invalid argument %s\n", argv[argc - 2]); - xbt_assert1(sscanf(argv[argc - 1], "%lg", &communication_amount), - "Invalid argument %s\n", argv[argc - 1]); + int read; + read = sscanf(argv[argc - 2], "%lg", &computation_amount); + xbt_assert1(read, "Invalid argument %s\n", argv[argc - 2]); + read = sscanf(argv[argc - 1], "%lg", &communication_amount); + xbt_assert1(read, "Invalid argument %s\n", argv[argc - 1]); computation_duration = (double *) calloc(host_list_size, sizeof(double)); communication_table = (double *) calloc(host_list_size * host_list_size, sizeof(double)); @@ -72,9 +73,11 @@ int execute(int argc, char *argv[]) execution_time = MSG_get_clock(); MSG_parallel_task_execute(task); + MSG_task_destroy(task); + xbt_free(m_host_list); execution_time = MSG_get_clock() - execution_time; - INFO1("execution_time=%g ", execution_time); + XBT_INFO("execution_time=%g ", execution_time); return 0; } @@ -89,12 +92,12 @@ int redistribute(int argc, char *argv[]) int host_list_size; double *computation_duration = NULL; double *communication_table = NULL; - double communication_amount; + double communication_amount = 0; double redistribution_time; host_list_size = argc - 2; - DEBUG1("host_list_size=%d", host_list_size); + XBT_DEBUG("host_list_size=%d", host_list_size); m_host_list = calloc(host_list_size, sizeof(m_host_t)); for (i = 1; i <= host_list_size; i++) { m_host_list[i - 1] = MSG_get_host_by_name(argv[i]); @@ -102,8 +105,9 @@ int redistribute(int argc, char *argv[]) "Unknown host %s. Stopping Now! ", argv[i]); } - xbt_assert1(sscanf(argv[argc - 1], "%lg", &communication_amount), - "Invalid argument %s\n", argv[argc - 1]); + int read; + read = sscanf(argv[argc - 1], "%lg", &communication_amount); + xbt_assert1(read, "Invalid argument %s\n", argv[argc - 1]); computation_duration = (double *) calloc(host_list_size, sizeof(double)); communication_table = (double *) calloc(host_list_size * host_list_size, sizeof(double)); @@ -122,9 +126,11 @@ int redistribute(int argc, char *argv[]) redistribution_time = MSG_get_clock(); MSG_parallel_task_execute(task); + MSG_task_destroy(task); + xbt_free(m_host_list); redistribution_time = MSG_get_clock() - redistribution_time; - INFO1("redistribution_time=%g ", redistribution_time); + XBT_INFO("redistribution_time=%g ", redistribution_time); return 0; } @@ -149,7 +155,7 @@ MSG_error_t test_all(const char *platform_file, res = MSG_main(); - INFO1("Simulation time %g", MSG_get_clock()); + XBT_INFO("Simulation time %g", MSG_get_clock()); return res; }