X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d5b29830df70e823202e384a7655e4371193ecd7..1bf033cc925aa31693ef5163ea056fde5b75ff1e:/src/msg/msg_task.cpp diff --git a/src/msg/msg_task.cpp b/src/msg/msg_task.cpp index 42a69af2f3..57b1636953 100644 --- a/src/msg/msg_task.cpp +++ b/src/msg/msg_task.cpp @@ -1,12 +1,11 @@ -/* Copyright (c) 2004-2016. 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. */ -#include "msg_private.h" -#include "src/simix/smx_private.h" - -SG_BEGIN_DECL() +#include "msg_private.hpp" +#include "src/simix/smx_private.hpp" +#include /** @addtogroup m_task_management * @@ -18,7 +17,7 @@ SG_BEGIN_DECL() XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_task, msg, "Logging specific to MSG (task)"); -void simdata_task::reportMultipleUse() const +void s_simdata_task_t::reportMultipleUse() const { if (msg_global->debug_multiple_use){ XBT_ERROR("This task is already used in there:"); @@ -49,7 +48,7 @@ void simdata_task::reportMultipleUse() const */ msg_task_t MSG_task_create(const char *name, double flop_amount, double message_size, void *data) { - msg_task_t task = xbt_new(s_msg_task_t, 1); + msg_task_t task = new s_msg_task_t; simdata_task_t simdata = new s_simdata_task_t(); task->simdata = simdata; @@ -85,17 +84,23 @@ 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 */ simdata->host_nb = host_nb; - simdata->host_list = xbt_new0(sg_host_t, host_nb); - simdata->flops_parallel_amount = flops_amount; - simdata->bytes_parallel_amount = bytes_amount; - - for (int i = 0; i < host_nb; i++) - simdata->host_list[i] = host_list[i]; + simdata->host_list = new sg_host_t[host_nb]; + std::copy_n(host_list, host_nb, simdata->host_list); + if (flops_amount != nullptr) { + simdata->flops_parallel_amount = new double[host_nb]; + std::copy_n(flops_amount, host_nb, simdata->flops_parallel_amount); + } + if (bytes_amount != nullptr) { + simdata->bytes_parallel_amount = new double[host_nb * host_nb]; + std::copy_n(bytes_amount, host_nb * host_nb, simdata->bytes_parallel_amount); + } return task; } @@ -198,7 +203,7 @@ msg_error_t MSG_task_destroy(msg_task_t task) /* free main structures */ delete task->simdata; - xbt_free(task); + delete task; return MSG_OK; } @@ -211,27 +216,49 @@ 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; } /** \ingroup m_task_management - * \brief Returns the remaining amount of flops needed to execute a task #msg_task_t. + * \brief Returns a value in ]0,1[ that represent the task remaining work + * to do: starts at 1 and goes to 0. Returns 0 if not started or finished. * - * 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. + * It works for either parallel or sequential tasks. */ -double MSG_task_get_flops_amount(msg_task_t task) { +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) { - return task->simdata->compute->remains(); + // Task in progress + return task->simdata->compute->get_remaining_ratio(); } else { + // 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; + } +} + +/** \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 != nullptr) { + return task->simdata->compute->get_remaining(); + } 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; } } @@ -304,5 +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); } - -SG_END_DECL()