X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fac386f72521a1a5445139839cdd4ec0f3150182..49917b46ab016e69fcc807dffa1f836046a29362:/src/msg/msg_task.cpp diff --git a/src/msg/msg_task.cpp b/src/msg/msg_task.cpp index 3b119af69b..3e1d68be7a 100644 --- a/src/msg/msg_task.cpp +++ b/src/msg/msg_task.cpp @@ -86,7 +86,9 @@ msg_task_t MSG_task_create(const char *name, double flop_amount, double message_ msg_task_t MSG_parallel_task_create(const char *name, int host_nb, const msg_host_t * host_list, double *flops_amount, double *bytes_amount, void *data) { - msg_task_t task = MSG_task_create(name, 0, 0, data); + // Task's flops amount is set to an arbitrary value > 0.0 to be able to distinguish, in + // MSG_task_get_remaining_work_ratio(), a finished task and a task that has not started yet. + msg_task_t task = MSG_task_create(name, 1.0, 0, data); simdata_task_t simdata = task->simdata; /* Simulator Data specific to parallel tasks */ @@ -219,7 +221,6 @@ msg_error_t MSG_task_cancel(msg_task_t task) simdata_task_t simdata = task->simdata; if (simdata->compute) { simcall_execution_cancel(simdata->compute); - MSG_host_del_task(MSG_process_get_host(MSG_process_self()), task); } else if (simdata->comm) { simcall_comm_cancel(simdata->comm); } @@ -232,22 +233,16 @@ msg_error_t MSG_task_cancel(msg_task_t task) * to do: starts at 1 and goes to 0. Returns 0 if not started or finished. * * It works for either parallel or sequential tasks. - * TODO: Improve this function by returning 1 if the task has not started */ double MSG_task_get_remaining_work_ratio(msg_task_t task) { xbt_assert((task != nullptr), "Cannot get information from a nullptr task"); if (task->simdata->compute) { // Task in progress - return task->simdata->compute->remains(); - - //} else if ((MSG_task_get_flops_amount(task) == 0 and task->simdata->flops_parallel_amount == nullptr) //this is a sequential task - // or (task->simdata->flops_parallel_amount != nullptr and task->simdata->flops_parallel_amount == 0)) { - // // Task finished - // return 1; + return task->simdata->compute->remainingRatio(); } else { - // Task not started or finished - return 0; + // Task not started (flops_amount is > 0.0) or finished (flops_amount is set to 0.0) + return task->simdata->flops_amount > 0.0 ? 1.0 : 0.0; } } @@ -270,18 +265,6 @@ double MSG_task_get_flops_amount(msg_task_t task) { } } -/** \ingroup m_task_management - * \brief Returns the initial amount of flops needed to execute a task #msg_task_t. - * - * Once a task has been processed, this amount is set to 0. If you want, you can reset this value with - * #MSG_task_set_flops_amount before restarting the task. - * - * Warning: Only work for simple task, not parallel task. - */ -double MSG_task_get_initial_flops_amount(msg_task_t task) { - return task->simdata->flops_amount; -} - /** \ingroup m_task_management * \brief set the computation amount needed to process a task #msg_task_t. *