Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics: cpu_load is not supposed to be >1 anymore
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Mon, 7 Oct 2019 15:43:01 +0000 (17:43 +0200)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Mon, 7 Oct 2019 19:47:37 +0000 (21:47 +0200)
src/plugins/host_energy.cpp

index a6e0d76..5b3cfca 100644 (file)
@@ -261,9 +261,8 @@ double HostEnergy::get_current_watts_value()
 
     /* Divide by the number of cores here to have a value between 0 and 1 */
     cpu_load /= host_->pimpl_cpu->get_core_count();
+    xbt_assert(not(cpu_load > 1), "The impossible did happen, as usual.");
 
-    if (cpu_load > 1) // A machine with a load > 1 consumes as much as a fully loaded machine, not more
-      cpu_load = 1;
     if (cpu_load > 0)
       host_was_used_ = true;
   }