X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/49c2edffe16f2c11e13a1a8771e2b30fb711404f..c0c7607cc0cb97760a59eb3f40481fbe9469cc0a:/examples/s4u/exec-dvfs/s4u-exec-dvfs.cpp?ds=sidebyside diff --git a/examples/s4u/exec-dvfs/s4u-exec-dvfs.cpp b/examples/s4u/exec-dvfs/s4u-exec-dvfs.cpp index 8ae88ea325..77fba840f0 100644 --- a/examples/s4u/exec-dvfs/s4u-exec-dvfs.cpp +++ b/examples/s4u/exec-dvfs/s4u-exec-dvfs.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2020. 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. */ @@ -17,11 +17,11 @@ static int dvfs() XBT_INFO("Current power peak=%f", host->get_speed()); - // Run a task + // Run a Computation simgrid::s4u::this_actor::execute(workload); - double task_time = simgrid::s4u::Engine::get_clock(); - XBT_INFO("Task1 duration: %.2f", task_time); + double exec_time = simgrid::s4u::Engine::get_clock(); + XBT_INFO("Computation1 duration: %.2f", exec_time); // Change power peak int new_pstate = 2; @@ -32,11 +32,11 @@ static int dvfs() XBT_INFO("Current power peak=%f", host->get_speed()); - // Run a second task + // Run a second Computation simgrid::s4u::this_actor::execute(workload); - task_time = simgrid::s4u::Engine::get_clock() - task_time; - XBT_INFO("Task2 duration: %.2f", task_time); + exec_time = simgrid::s4u::Engine::get_clock() - exec_time; + XBT_INFO("Computation2 duration: %.2f", exec_time); // Verify that the default pstate is set to 0 host = simgrid::s4u::Host::by_name_or_null("MyHost2");