Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
host_energy: rework the code converting the old syntax to the new one
[simgrid.git] / src / plugins / host_energy.cpp
1 /* Copyright (c) 2010-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/plugins/energy.h"
7 #include "simgrid/s4u/Engine.hpp"
8 #include "simgrid/s4u/Exec.hpp"
9 #include "src/include/surf/surf.hpp"
10 #include "src/kernel/activity/ExecImpl.hpp"
11 #include "src/plugins/vm/VirtualMachineImpl.hpp"
12 #include "src/surf/cpu_interface.hpp"
13
14 #include <boost/algorithm/string/classification.hpp>
15 #include <boost/algorithm/string/split.hpp>
16
17 SIMGRID_REGISTER_PLUGIN(host_energy, "Cpu energy consumption.", &sg_host_energy_plugin_init)
18
19 /** @defgroup plugin_host_energy
20
21 This is the energy plugin, enabling to account not only for computation time, but also for the dissipated energy in the
22 simulated platform.
23 To activate this plugin, first call sg_host_energy_plugin_init() before your #MSG_init(), and then use
24 MSG_host_get_consumed_energy() to retrieve the consumption of a given host.
25
26 When the host is on, this energy consumption naturally depends on both the current CPU load and the host energy profile.
27 According to our measurements, the consumption is somehow linear in the amount of cores at full speed, with an
28 abnormality when all the cores are idle. The full details are in
29 <a href="https://hal.inria.fr/hal-01523608">our scientific paper</a> on that topic.
30
31 As a result, our energy model takes 4 parameters:
32
33   - @b Idle: wattage (i.e., instantaneous consumption in Watt) when your host is up and running, but without anything to
34 do.
35   - @b Epsilon: wattage when all cores are at 0 or epsilon%, but not in Idle state.
36   - @b AllCores: wattage when all cores of the host are at 100%.
37   - @b Off: wattage when the host is turned off.
38
39 Here is an example of XML declaration:
40
41 @code{.xml}
42 <host id="HostA" speed="100.0Mf" core="4">
43     <prop id="wattage_per_state" value="100.0:120.0:200.0" />
44     <prop id="wattage_off" value="10" />
45 </host>
46 @endcode
47
48 If the 'Epsilon' parameter is omitted in the XML declaration, 'Idle' is used instead.
49
50 This example gives the following parameters: @b Off is 10 Watts; @b Idle is 100 Watts; @b Epsilon is 120 Watts and @b
51 AllCores is 200 Watts.
52 This is enough to compute the wattage as a function of the amount of loaded cores:
53
54 <table>
55 <tr><th>@#Cores loaded</th><th>Wattage</th><th>Explanation</th></tr>
56 <tr><td>0 (idle)</td><td> 100 Watts</td><td>Idle value</td></tr>
57 <tr><td>0 (not idle)</td><td> 120 Watts</td><td>Epsilon value</td></tr>
58 <tr><td>1</td><td> 140 Watts</td><td>linear extrapolation between Epsilon and AllCores</td></tr>
59 <tr><td>2</td><td> 160 Watts</td><td>linear extrapolation between Epsilon and AllCores</td></tr>
60 <tr><td>3</td><td> 180 Watts</td><td>linear extrapolation between Epsilon and AllCores</td></tr>
61 <tr><td>4</td><td> 200 Watts</td><td>AllCores value</td></tr>
62 </table>
63
64
65 ### How does DVFS interact with the host energy model?
66
67 If your host has several DVFS levels (several pstates), then you should give the energetic profile of each pstate level:
68
69 @code{.xml}
70 <host id="HostC" speed="100.0Mf,50.0Mf,20.0Mf" core="4">
71     <prop id="wattage_per_state" value="95.0:120.0:200.0, 93.0:115.0:170.0, 90.0:110.0:150.0" />
72     <prop id="wattage_off" value="10" />
73 </host>
74 @endcode
75
76 This encodes the following values
77 <table>
78 <tr><th>pstate</th><th>Performance</th><th>Idle</th><th>Epsilon</th><th>AllCores</th></tr>
79 <tr><td>0</td><td>100 Mflop/s</td><td>95 Watts</td><td>120 Watts</td><td>200 Watts</td></tr>
80 <tr><td>1</td><td>50 Mflop/s</td><td>93 Watts</td><td>115 Watts</td><td>170 Watts</td></tr>
81 <tr><td>2</td><td>20 Mflop/s</td><td>90 Watts</td><td>110 Watts</td><td>150 Watts</td></tr>
82 </table>
83
84 To change the pstate of a given CPU, use the following functions:
85 #MSG_host_get_nb_pstates(), simgrid#s4u#Host#setPstate(), #MSG_host_get_power_peak_at().
86
87 ### How accurate are these models?
88
89 This model cannot be more accurate than your instantiation: with the default values, your result will not be accurate at
90 all. You can still get accurate energy prediction, provided that you carefully instantiate the model.
91 The first step is to ensure that your timing prediction match perfectly. But this is only the first step of the path,
92 and you really want to read <a href="https://hal.inria.fr/hal-01523608">this paper</a> to see all what you need to do
93 before you can get accurate energy predictions.
94  */
95
96 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_energy, surf, "Logging specific to the SURF energy plugin");
97
98 // Forwards declaration needed to make this function a friend (because friends have external linkage by default)
99 static void on_simulation_end();
100
101 namespace simgrid {
102 namespace plugin {
103
104 class PowerRange {
105 public:
106   double idle_;
107   double epsilon_;
108   double max_;
109   double slope_;
110
111   PowerRange(double idle, double epsilon, double max) : idle_(idle), epsilon_(epsilon), max_(max), slope_(max-epsilon) {}
112 };
113
114 class HostEnergy {
115   friend void ::on_simulation_end(); // For access to host_was_used_
116 public:
117   static simgrid::xbt::Extension<simgrid::s4u::Host, HostEnergy> EXTENSION_ID;
118
119   explicit HostEnergy(simgrid::s4u::Host* ptr);
120   ~HostEnergy();
121
122   double get_current_watts_value();
123   double get_current_watts_value(double cpu_load);
124   double get_consumed_energy();
125   double get_idle_consumption();
126   double get_watt_min_at(int pstate);
127   double get_watt_max_at(int pstate);
128   double get_power_range_slope_at(int pstate);
129   void update();
130
131 private:
132   void init_watts_range_list();
133   simgrid::s4u::Host* host_ = nullptr;
134   /*< List of (idle_power, epsilon_power, max_power) tuple corresponding to each cpu pstate */
135   std::vector<PowerRange> power_range_watts_list_;
136
137   /* We need to keep track of what pstate has been used, as we will sometimes be notified only *after* a pstate has been
138    * used (but we need to update the energy consumption with the old pstate!)
139    */
140   int pstate_           = 0;
141   const int pstate_off_ = -1;
142
143   /* Only used to split total energy into unused/used hosts.
144    * If you want to get this info for something else, rather use the host_load plugin
145    */
146   bool host_was_used_  = false;
147 public:
148   double watts_off_    = 0.0; /*< Consumption when the machine is turned off (shutdown) */
149   double total_energy_ = 0.0; /*< Total energy consumed by the host */
150   double last_updated_;       /*< Timestamp of the last energy update event*/
151 };
152
153 simgrid::xbt::Extension<simgrid::s4u::Host, HostEnergy> HostEnergy::EXTENSION_ID;
154
155 /* Computes the consumption so far. Called lazily on need. */
156 void HostEnergy::update()
157 {
158   double start_time  = this->last_updated_;
159   double finish_time = surf_get_clock();
160   //
161   // We may have start == finish if the past consumption was updated since the simcall was started
162   // for example if 2 actors requested to update the same host's consumption in a given scheduling round.
163   //
164   // Even in this case, we need to save the pstate for the next call (after this if),
165   // which may have changed since that recent update.
166   if (start_time < finish_time) {
167     double previous_energy = this->total_energy_;
168
169     double instantaneous_power_consumption = this->get_current_watts_value();
170
171     double energy_this_step = instantaneous_power_consumption * (finish_time - start_time);
172
173     // TODO Trace: Trace energy_this_step from start_time to finish_time in host->getName()
174
175     this->total_energy_ = previous_energy + energy_this_step;
176     this->last_updated_ = finish_time;
177
178     XBT_DEBUG("[update_energy of %s] period=[%.8f-%.8f]; current speed=%.2E flop/s (pstate %i); total consumption before: %.8f J -> added now: %.8f J",
179               host_->get_cname(), start_time, finish_time, host_->pimpl_cpu->get_pstate_peak_speed(this->pstate_), this->pstate_, previous_energy,
180               energy_this_step);
181   }
182
183   /* Save data for the upcoming time interval: whether it's on/off and the pstate if it's on */
184   this->pstate_ = host_->is_on() ? host_->get_pstate() : pstate_off_;
185 }
186
187 HostEnergy::HostEnergy(simgrid::s4u::Host* ptr) : host_(ptr), last_updated_(surf_get_clock())
188 {
189   init_watts_range_list();
190   static bool warned = false;
191
192   const char* off_power_str = host_->get_property("wattage_off");
193   if (off_power_str == nullptr) {
194     off_power_str = host_->get_property("watt_off");
195     if (off_power_str != nullptr && not warned) {
196       warned = true;
197       XBT_WARN("Please use 'wattage_off' instead of 'watt_off' to define the idle wattage of hosts in your XML.");
198     }
199   }
200   if (off_power_str != nullptr) {
201     try {
202       this->watts_off_ = std::stod(std::string(off_power_str));
203     } catch (const std::invalid_argument&) {
204       throw std::invalid_argument(std::string("Invalid value for property wattage_off of host ") + host_->get_cname() +
205                                   ": " + off_power_str);
206     }
207   }
208   /* watts_off is 0 by default */
209 }
210
211 HostEnergy::~HostEnergy() = default;
212
213 double HostEnergy::get_idle_consumption()
214 {
215   xbt_assert(not power_range_watts_list_.empty(), "No power range properties specified for host %s",
216              host_->get_cname());
217
218   return power_range_watts_list_[0].idle_;
219 }
220
221 double HostEnergy::get_watt_min_at(int pstate)
222 {
223   xbt_assert(not power_range_watts_list_.empty(), "No power range properties specified for host %s",
224              host_->get_cname());
225   return power_range_watts_list_[pstate].epsilon_;
226 }
227
228 double HostEnergy::get_watt_max_at(int pstate)
229 {
230   xbt_assert(not power_range_watts_list_.empty(), "No power range properties specified for host %s",
231              host_->get_cname());
232   return power_range_watts_list_[pstate].max_;
233 }
234
235 double HostEnergy::get_power_range_slope_at(int pstate)
236 {
237     xbt_assert(not power_range_watts_list_.empty(), "No power range properties specified for host %s",
238                host_->get_cname());
239    return power_range_watts_list_[pstate].slope_;
240 }
241
242 /** @brief Computes the power consumed by the host according to the current situation
243  *
244  * - If the host is off, that's the watts_off value
245  * - if it's on, take the current pstate and the current processor load into account */
246 double HostEnergy::get_current_watts_value()
247 {
248   if (this->pstate_ == pstate_off_) // The host is off (or was off at the beginning of this time interval)
249     return this->watts_off_;
250
251   double current_speed = host_->get_pstate_speed(this->pstate_);
252
253   double cpu_load;
254
255   if (current_speed <= 0)
256     // Some users declare a pstate of speed 0 flops (e.g., to model boot time).
257     // We consider that the machine is then fully loaded. That's arbitrary but it avoids a NaN
258     cpu_load = 1;
259   else {
260     cpu_load = host_->pimpl_cpu->get_constraint()->get_usage() / current_speed;
261
262     /* Divide by the number of cores here to have a value between 0 and 1 */
263     cpu_load /= host_->pimpl_cpu->get_core_count();
264
265     if (cpu_load > 1) // A machine with a load > 1 consumes as much as a fully loaded machine, not more
266       cpu_load = 1;
267     if (cpu_load > 0)
268       host_was_used_ = true;
269   }
270
271   return get_current_watts_value(cpu_load);
272 }
273
274 /** @brief Computes the power that the host would consume at the provided processor load
275  *
276  * Whether the host is ON or OFF is not taken into account.
277  */
278 double HostEnergy::get_current_watts_value(double cpu_load)
279 {
280   xbt_assert(not power_range_watts_list_.empty(), "No power range properties specified for host %s",
281              host_->get_cname());
282
283   /* Return watts_off if pstate == pstate_off (ie, if the host is off) */
284   if (this->pstate_ == pstate_off_) {
285     return watts_off_;
286   }
287
288   PowerRange power_range = power_range_watts_list_.at(this->pstate_);
289   double current_power;
290
291   if (cpu_load > 0)
292   {
293       /**
294        * Something is going on, the host is not idle.
295        *
296        * The power consumption follows the regular model:
297        * P(cpu_load) = Pstatic + Pdynamic * cpu_load
298        * where Pstatic = power_range.epsilon_ and Pdynamic = power_range.slope_
299        * and the cpu_load is a value between 0 and 1.
300        */
301       current_power = power_range.epsilon_ + cpu_load * power_range.slope_;
302   }
303   else
304   {
305       /* The host is idle, take the dedicated value! */
306       current_power = power_range.idle_;
307   }
308
309   XBT_DEBUG("[get_current_watts] pstate=%i, epsilon_power=%f, max_power=%f, slope=%f", this->pstate_, power_range.epsilon_,
310             power_range.max_, power_range.slope_);
311   XBT_DEBUG("[get_current_watts] Current power (watts) = %f, load = %f", current_power, cpu_load);
312
313   return current_power;
314 }
315
316 double HostEnergy::get_consumed_energy()
317 {
318   if (last_updated_ < surf_get_clock()) // We need to simcall this as it modifies the environment
319     simgrid::kernel::actor::simcall(std::bind(&HostEnergy::update, this));
320
321   return total_energy_;
322 }
323
324 void HostEnergy::init_watts_range_list()
325 {
326   const char* old_prop = host_->get_property("watt_per_state");
327   if (old_prop != nullptr) {
328     std::vector<std::string> all_power_values;
329     boost::split(all_power_values, old_prop, boost::is_any_of(","));
330
331     std::string msg = std::string("DEPRECATION WARNING: Property 'watt_per_state' will not work after v3.28.\n");
332     msg += std::string("The old syntax 'Idle:OneCore:AllCores' must be converted into 'Idle:Epsilon:AllCores' to "
333                        "properly model the consumption of non-whole tasks on mono-core hosts. Here are the values to "
334                        "use for host '") +
335            host_->get_cname() + "' in your XML file:\n";
336     msg += "     <prop id=\"wattage_per_state\" value=\"";
337     for (auto const& current_power_values_str : all_power_values) {
338       std::vector<std::string> current_power_values;
339       boost::split(current_power_values, current_power_values_str, boost::is_any_of(":"));
340       double p_idle = xbt_str_parse_double((current_power_values.at(0)).c_str(),
341                                            "Invalid obsolete XML file. Fix your watt_per_state property.");
342       double p_one_core;
343       double p_full;
344       double p_epsilon;
345
346       if (current_power_values.size() == 3) {
347         p_idle     = xbt_str_parse_double((current_power_values.at(0)).c_str(),
348                                       "Invalid obsolete XML file. Fix your watt_per_state property.");
349         p_one_core = xbt_str_parse_double((current_power_values.at(1)).c_str(),
350                                           "Invalid obsolete XML file. Fix your watt_per_state property.");
351         p_full     = xbt_str_parse_double((current_power_values.at(2)).c_str(),
352                                       "Invalid obsolete XML file. Fix your watt_per_state property.");
353         if (host_->get_core_count() == 1) {
354           p_epsilon = p_full;
355         } else {
356           p_epsilon = p_one_core - ((p_full - p_one_core) / (host_->get_core_count() - 1));
357         }
358       } else { // consuption given with idle and full only
359         p_idle = xbt_str_parse_double((current_power_values.at(0)).c_str(),
360                                       "Invalid obsolete XML file. Fix your watt_per_state property.");
361         p_full = xbt_str_parse_double((current_power_values.at(1)).c_str(),
362                                       "Invalid obsolete XML file. Fix your watt_per_state property.");
363         if (host_->get_core_count() == 1) {
364           p_epsilon = p_full;
365         } else {
366           p_epsilon = p_idle;
367         }
368       }
369
370       PowerRange range(p_idle, p_epsilon, p_full);
371       power_range_watts_list_.push_back(range);
372
373       msg += std::to_string(p_idle) + ":" + std::to_string(p_epsilon) + ":" + std::to_string(p_full);
374       msg += ",";
375     }
376     msg.pop_back(); // Remove the extraneous ','
377     msg += "\" />";
378     XBT_WARN("%s", msg.c_str());
379     return;
380   }
381   const char* all_power_values_str = host_->get_property("wattage_per_state");
382   if (all_power_values_str == nullptr)
383     return;
384
385   std::vector<std::string> all_power_values;
386   boost::split(all_power_values, all_power_values_str, boost::is_any_of(","));
387   XBT_DEBUG("%s: power properties: %s", host_->get_cname(), all_power_values_str);
388
389   int i = 0;
390   for (auto const& current_power_values_str : all_power_values) {
391     /* retrieve the power values associated with the pstate i */
392     std::vector<std::string> current_power_values;
393     boost::split(current_power_values, current_power_values_str, boost::is_any_of(":"));
394
395     xbt_assert(current_power_values.size() == 2 || current_power_values.size() == 3,
396                "Power properties incorrectly defined for host %s."
397                "It should be 'Idle:AllCores' (or 'Idle:Epsilon:AllCores') power values.",
398                host_->get_cname());
399
400     double idle_power;
401     double epsilon_power;
402     double max_power;
403
404     char* msg_idle    = bprintf("Invalid Idle value for pstate %d on host %s: %%s", i, host_->get_cname());
405     char* msg_epsilon = bprintf("Invalid Epsilon value for pstate %d on host %s: %%s", i, host_->get_cname());
406     char* msg_max     = bprintf("Invalid AllCores value for pstate %d on host %s: %%s", i, host_->get_cname());
407
408     idle_power = xbt_str_parse_double((current_power_values.at(0)).c_str(), msg_idle);
409     if (current_power_values.size() == 2) { // Case: Idle:AllCores
410       epsilon_power = xbt_str_parse_double((current_power_values.at(0)).c_str(), msg_idle);
411       max_power     = xbt_str_parse_double((current_power_values.at(1)).c_str(), msg_max);
412     } else { // Case: Idle:Epsilon:AllCores
413       epsilon_power = xbt_str_parse_double((current_power_values.at(1)).c_str(), msg_epsilon);
414       max_power     = xbt_str_parse_double((current_power_values.at(2)).c_str(), msg_max);
415     }
416
417     XBT_DEBUG("Creating PowerRange for host %s. Idle:%f, Epsilon:%f, AllCores:%f.", host_->get_cname(), idle_power, epsilon_power, max_power);
418
419     PowerRange range(idle_power, epsilon_power, max_power);
420     power_range_watts_list_.push_back(range);
421     xbt_free(msg_idle);
422     xbt_free(msg_epsilon);
423     xbt_free(msg_max);
424     ++i;
425   }
426 }
427 } // namespace plugin
428 } // namespace simgrid
429
430 using simgrid::plugin::HostEnergy;
431
432 /* **************************** events  callback *************************** */
433 static void on_creation(simgrid::s4u::Host& host)
434 {
435   if (dynamic_cast<simgrid::s4u::VirtualMachine*>(&host)) // Ignore virtual machines
436     return;
437
438   // TODO Trace: set to zero the energy variable associated to host->getName()
439
440   host.extension_set(new HostEnergy(&host));
441 }
442
443 static void on_action_state_change(simgrid::kernel::resource::CpuAction const& action,
444                                    simgrid::kernel::resource::Action::State /*previous*/)
445 {
446   for (simgrid::kernel::resource::Cpu* const& cpu : action.cpus()) {
447     simgrid::s4u::Host* host = cpu->get_host();
448     if (host != nullptr) {
449
450       // If it's a VM, take the corresponding PM
451       simgrid::s4u::VirtualMachine* vm = dynamic_cast<simgrid::s4u::VirtualMachine*>(host);
452       if (vm) // If it's a VM, take the corresponding PM
453         host = vm->get_pm();
454
455       // Get the host_energy extension for the relevant host
456       HostEnergy* host_energy = host->extension<HostEnergy>();
457
458       if (host_energy->last_updated_ < surf_get_clock())
459         host_energy->update();
460     }
461   }
462 }
463
464 /* This callback is fired either when the host changes its state (on/off) ("onStateChange") or its speed
465  * (because the user changed the pstate, or because of external trace events) ("onSpeedChange") */
466 static void on_host_change(simgrid::s4u::Host const& host)
467 {
468   if (dynamic_cast<simgrid::s4u::VirtualMachine const*>(&host)) // Ignore virtual machines
469     return;
470
471   HostEnergy* host_energy = host.extension<HostEnergy>();
472
473   host_energy->update();
474 }
475
476 static void on_host_destruction(simgrid::s4u::Host const& host)
477 {
478   if (dynamic_cast<simgrid::s4u::VirtualMachine const*>(&host)) // Ignore virtual machines
479     return;
480
481   XBT_INFO("Energy consumption of host %s: %f Joules", host.get_cname(),
482            host.extension<HostEnergy>()->get_consumed_energy());
483 }
484
485 static void on_simulation_end()
486 {
487   std::vector<simgrid::s4u::Host*> hosts = simgrid::s4u::Engine::get_instance()->get_all_hosts();
488
489   double total_energy      = 0.0; // Total energy consumption (whole platform)
490   double used_hosts_energy = 0.0; // Energy consumed by hosts that computed something
491   for (size_t i = 0; i < hosts.size(); i++) {
492     if (dynamic_cast<simgrid::s4u::VirtualMachine*>(hosts[i]) == nullptr) { // Ignore virtual machines
493
494       double energy      = hosts[i]->extension<HostEnergy>()->get_consumed_energy();
495       total_energy += energy;
496       if (hosts[i]->extension<HostEnergy>()->host_was_used_)
497         used_hosts_energy += energy;
498     }
499   }
500   XBT_INFO("Total energy consumption: %f Joules (used hosts: %f Joules; unused/idle hosts: %f)", total_energy,
501            used_hosts_energy, total_energy - used_hosts_energy);
502 }
503
504 /* **************************** Public interface *************************** */
505
506 /** @ingroup plugin_host_energy
507  * @brief Enable host energy plugin
508  * @details Enable energy plugin to get joules consumption of each cpu. Call this function before #MSG_init().
509  */
510 void sg_host_energy_plugin_init()
511 {
512   if (HostEnergy::EXTENSION_ID.valid())
513     return;
514
515   HostEnergy::EXTENSION_ID = simgrid::s4u::Host::extension_create<HostEnergy>();
516
517   simgrid::s4u::Host::on_creation.connect(&on_creation);
518   simgrid::s4u::Host::on_state_change.connect(&on_host_change);
519   simgrid::s4u::Host::on_speed_change.connect(&on_host_change);
520   simgrid::s4u::Host::on_destruction.connect(&on_host_destruction);
521   simgrid::s4u::Engine::on_simulation_end.connect(&on_simulation_end);
522   simgrid::kernel::resource::CpuAction::on_state_change.connect(&on_action_state_change);
523   // We may only have one actor on a node. If that actor executes something like
524   //   compute -> recv -> compute
525   // the recv operation will not trigger a "CpuAction::on_state_change". This means
526   // that the next trigger would be the 2nd compute, hence ignoring the idle time
527   // during the recv call. By updating at the beginning of a compute, we can
528   // fix that. (If the cpu is not idle, this is not required.)
529   simgrid::s4u::Exec::on_start.connect([](simgrid::s4u::Actor const&, simgrid::s4u::Exec const& activity) {
530     if (activity.get_host_number() == 1) { // We only run on one host
531       simgrid::s4u::Host* host         = activity.get_host();
532       simgrid::s4u::VirtualMachine* vm = dynamic_cast<simgrid::s4u::VirtualMachine*>(host);
533       if (vm != nullptr)
534         host = vm->get_pm();
535       xbt_assert(host != nullptr);
536       host->extension<HostEnergy>()->update();
537     }
538   });
539 }
540
541 /** @ingroup plugin_host_energy
542  *  @brief updates the consumption of all hosts
543  *
544  * After this call, sg_host_get_consumed_energy() will not interrupt your process
545  * (until after the next clock update).
546  */
547 void sg_host_energy_update_all()
548 {
549   simgrid::kernel::actor::simcall([]() {
550     std::vector<simgrid::s4u::Host*> list = simgrid::s4u::Engine::get_instance()->get_all_hosts();
551     for (auto const& host : list)
552       if (dynamic_cast<simgrid::s4u::VirtualMachine*>(host) == nullptr) { // Ignore virtual machines
553         xbt_assert(host != nullptr);
554         host->extension<HostEnergy>()->update();
555       }
556   });
557 }
558
559 /** @ingroup plugin_host_energy
560  *  @brief Returns the total energy consumed by the host so far (in Joules)
561  *
562  *  Please note that since the consumption is lazily updated, it may require a simcall to update it.
563  *  The result is that the actor requesting this value will be interrupted,
564  *  the value will be updated in kernel mode before returning the control to the requesting actor.
565  */
566 double sg_host_get_consumed_energy(sg_host_t host)
567 {
568   xbt_assert(HostEnergy::EXTENSION_ID.valid(),
569              "The Energy plugin is not active. Please call sg_host_energy_plugin_init() during initialization.");
570   return host->extension<HostEnergy>()->get_consumed_energy();
571 }
572
573 /** @ingroup plugin_host_energy
574  *  @brief Get the amount of watt dissipated when the host is idling
575  */
576 double sg_host_get_idle_consumption(sg_host_t host)
577 {
578   xbt_assert(HostEnergy::EXTENSION_ID.valid(),
579              "The Energy plugin is not active. Please call sg_host_energy_plugin_init() during initialization.");
580   return host->extension<HostEnergy>()->get_idle_consumption();
581 }
582
583 /** @ingroup plugin_host_energy
584  *  @brief Get the amount of watt dissipated at the given pstate when the host is idling
585  */
586 double sg_host_get_wattmin_at(sg_host_t host, int pstate)
587 {
588   xbt_assert(HostEnergy::EXTENSION_ID.valid(),
589              "The Energy plugin is not active. Please call sg_host_energy_plugin_init() during initialization.");
590   return host->extension<HostEnergy>()->get_watt_min_at(pstate);
591 }
592 /** @ingroup plugin_host_energy
593  *  @brief  Returns the amount of watt dissipated at the given pstate when the host burns CPU at 100%
594  */
595 double sg_host_get_wattmax_at(sg_host_t host, int pstate)
596 {
597   xbt_assert(HostEnergy::EXTENSION_ID.valid(),
598              "The Energy plugin is not active. Please call sg_host_energy_plugin_init() during initialization.");
599   return host->extension<HostEnergy>()->get_watt_max_at(pstate);
600 }
601 /** @ingroup plugin_host_energy
602  *  @brief  Returns the power slope at the given pstate
603  */
604 double sg_host_get_power_range_slope_at(sg_host_t host, int pstate)
605 {
606   xbt_assert(HostEnergy::EXTENSION_ID.valid(),
607              "The Energy plugin is not active. Please call sg_host_energy_plugin_init() during initialization.");
608   return host->extension<HostEnergy>()->get_power_range_slope_at(pstate);
609 }
610 /** @ingroup plugin_host_energy
611  *  @brief Returns the current consumption of the host
612  */
613 double sg_host_get_current_consumption(sg_host_t host)
614 {
615   xbt_assert(HostEnergy::EXTENSION_ID.valid(),
616              "The Energy plugin is not active. Please call sg_host_energy_plugin_init() during initialization.");
617   return host->extension<HostEnergy>()->get_current_watts_value();
618 }