X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/10420d9401da7efa11b764267dff07a0f24bf978..de74c92736a83f89b47de30f7603e25d4f6687a5:/src/msg/msg_task.cpp diff --git a/src/msg/msg_task.cpp b/src/msg/msg_task.cpp index 86ece99590..ae1f59c4e0 100644 --- a/src/msg/msg_task.cpp +++ b/src/msg/msg_task.cpp @@ -216,14 +216,13 @@ msg_error_t MSG_task_cancel(msg_task_t task) { xbt_assert((task != nullptr), "Cannot cancel a nullptr task"); - if (task->simdata->compute) { - simcall_execution_cancel(task->simdata->compute); - } - else if (task->simdata->comm) { - simdata_task_t simdata = task->simdata; + simdata_task_t simdata = task->simdata; + if (simdata->compute) { + simcall_execution_cancel(simdata->compute); + } else if (simdata->comm) { simcall_comm_cancel(simdata->comm); - simdata->setNotUsed(); } + simdata->setNotUsed(); return MSG_OK; } @@ -239,38 +238,32 @@ 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; } } +/** \ingroup m_task_management + * \brief Returns the amount of flops that remain to be computed + * + * The returned value is initially the cost that you defined for the task, then it decreases until it reaches 0 + * + * It works for sequential tasks, but the remaining amount of work is not a scalar value for parallel tasks. + * So you will get an exception if you call this function on parallel tasks. Just don't do it. + */ double MSG_task_get_flops_amount(msg_task_t task) { - if (task->simdata->compute) { + if (task->simdata->compute != nullptr) { return task->simdata->compute->remains(); } else { + // Not started or already done. + // - Before starting, flops_amount is initially the task cost + // - After execution, flops_amount is set to 0 (until someone uses MSG_task_set_flops_amount, if any) return task->simdata->flops_amount; } } -/** \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. *