Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Tesh files: kill obsolete variables SG_TEST_EXENV and EXEEXT.
[simgrid.git] / examples / s4u / exec-dvfs / s4u-exec-dvfs.cpp
index 32ef5dd..5fde1fd 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2007-2018. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2007-2019. 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. */
@@ -21,7 +21,7 @@ static int dvfs()
   simgrid::s4u::this_actor::execute(workload);
 
   double task_time = simgrid::s4u::Engine::get_clock();
-  XBT_INFO("Task1 simulation time: %e", task_time);
+  XBT_INFO("Task1 duration: %.2f", task_time);
 
   // Change power peak
   int new_pstate = 2;
@@ -36,7 +36,7 @@ static int dvfs()
   simgrid::s4u::this_actor::execute(workload);
 
   task_time = simgrid::s4u::Engine::get_clock() - task_time;
-  XBT_INFO("Task2 simulation time: %e", task_time);
+  XBT_INFO("Task2 duration: %.2f", task_time);
 
   // Verify that the default pstate is set to 0
   host = simgrid::s4u::Host::by_name_or_null("MyHost2");