#include "misc.h"
#include "options.h"
+#include "tracing.h"
#include "process.h"
if (load > 0.0) {
double flops = opt::comp_cost(load);
m_task_t task = MSG_task_create("computation", flops, 0.0, NULL);
+ TRACE_msg_set_task_category(task, TRACE_CAT_COMP);
DEBUG2("compute %g flop%s", flops, ESSE(flops));
MSG_task_execute(task);
comp += flops;