Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revert "[ENERGY] Fixed wrong calculation for 1-core systems"
authorChristian Heinrich <franz-christian.heinrich@inria.fr>
Fri, 16 Jun 2017 08:14:27 +0000 (10:14 +0200)
committerChristian Heinrich <franz-christian.heinrich@inria.fr>
Fri, 16 Jun 2017 08:15:14 +0000 (10:15 +0200)
This reverts commit e96681fb89b328389ad0d4aecfe7addbda714da4.

We decided to add an assert() instead, as the error was not really
in the energy plugin but in the user-supplied platform.

src/surf/plugins/host_energy.cpp

index 332f4a1..f7878d7 100644 (file)
@@ -207,8 +207,8 @@ double HostEnergy::getCurrentWattsValue(double cpu_load)
   double power_slope   = 0;
 
   if (cpu_load > 0) { /* Something is going on, the machine is not idle */
   double power_slope   = 0;
 
   if (cpu_load > 0) { /* Something is going on, the machine is not idle */
-    min_power = range.min;
-    max_power = range.max;
+    double min_power = range.min;
+    double max_power = range.max;
 
     /**
      * The min_power states how much we consume when only one single
 
     /**
      * The min_power states how much we consume when only one single
@@ -220,15 +220,15 @@ double HostEnergy::getCurrentWattsValue(double cpu_load)
      * i.e., we need min_power + (maxCpuLoad-1/coreCount)*power_slope == max_power
      * (maxCpuLoad is by definition 1)
      */
      * i.e., we need min_power + (maxCpuLoad-1/coreCount)*power_slope == max_power
      * (maxCpuLoad is by definition 1)
      */
+    double power_slope;
     int coreCount         = host->coreCount();
     double coreReciprocal = static_cast<double>(1) / static_cast<double>(coreCount);
     int coreCount         = host->coreCount();
     double coreReciprocal = static_cast<double>(1) / static_cast<double>(coreCount);
-    if (coreCount > 1) {
+    if (coreCount > 1)
       power_slope = (max_power - min_power) / (1 - coreReciprocal);
       power_slope = (max_power - min_power) / (1 - coreReciprocal);
-      current_power = min_power + (cpu_load - coreReciprocal) * power_slope;
-    } else {
-      current_power = max_power;
-    }
+    else
+      power_slope = 0; // Should be 0, since max_power == min_power (in this case)
 
 
+    current_power = min_power + (cpu_load - coreReciprocal) * power_slope;
   } else { /* Our machine is idle, take the dedicated value! */
     current_power = range.idle;
   }
   } else { /* Our machine is idle, take the dedicated value! */
     current_power = range.idle;
   }