X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/06be3c38e53373a99dfdaacb1c412779b2fdc787..6ed785970bbb0b94322103726f147dbea26ea48c:/src/msg/msg_task.cpp diff --git a/src/msg/msg_task.cpp b/src/msg/msg_task.cpp index b71d7fa843..57b1636953 100644 --- a/src/msg/msg_task.cpp +++ b/src/msg/msg_task.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2018. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -7,8 +7,6 @@ #include "src/simix/smx_private.hpp" #include -extern "C" { - /** @addtogroup m_task_management * * Since most scheduling algorithms rely on a concept of task that can be either computed locally or @@ -86,7 +84,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 +219,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,17 +231,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->remainingRatio(); + return task->simdata->compute->get_remaining_ratio(); } 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; } } @@ -256,7 +254,7 @@ double MSG_task_get_remaining_work_ratio(msg_task_t task) { */ double MSG_task_get_flops_amount(msg_task_t task) { if (task->simdata->compute != nullptr) { - return task->simdata->compute->remains(); + return task->simdata->compute->get_remaining(); } else { // Not started or already done. // - Before starting, flops_amount is initially the task cost @@ -333,4 +331,3 @@ void MSG_task_set_bound(msg_task_t task, double bound) if (task->simdata->compute) simcall_execution_set_bound(task->simdata->compute, task->simdata->bound); } -}