Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Introduce on_???_cb functions to shield the signals
[simgrid.git] / src / plugins / host_dvfs.cpp
1 /* Copyright (c) 2010-2021. 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/dvfs.h>
7 #include <simgrid/plugins/load.h>
8 #include <simgrid/s4u/Actor.hpp>
9 #include <simgrid/s4u/Host.hpp>
10 #include <simgrid/s4u/VirtualMachine.hpp>
11 #include <xbt/asserts.h>
12 #include <xbt/config.hpp>
13
14 #include "src/internal_config.h" // HAVE_SMPI
15 #include "src/kernel/activity/CommImpl.hpp"
16 #include "src/surf/network_interface.hpp"
17 #if HAVE_SMPI
18 #include "src/smpi/include/smpi_request.hpp"
19 #include "src/smpi/plugins/ampi/ampi.hpp"
20 #endif
21
22 #include <boost/algorithm/string.hpp>
23
24 SIMGRID_REGISTER_PLUGIN(host_dvfs, "Dvfs support", &sg_host_dvfs_plugin_init)
25
26 static simgrid::config::Flag<double>
27     cfg_sampling_rate("plugin/dvfs/sampling-rate",
28                       "How often should the dvfs plugin check whether the frequency needs to be changed?", 0.1,
29                       [](double val) {
30                         if (val != 0.1)
31                           sg_host_dvfs_plugin_init();
32                       });
33
34 static simgrid::config::Flag<std::string> cfg_governor("plugin/dvfs/governor",
35                                                        "Which Governor should be used that adapts the CPU frequency?",
36                                                        "performance",
37
38                                                        std::map<std::string, std::string, std::less<>>({
39 #if HAVE_SMPI
40                                                          {"adagio", "TODO: Doc"},
41 #endif
42                                                              {"conservative", "TODO: Doc"}, {"ondemand", "TODO: Doc"},
43                                                              {"performance", "TODO: Doc"}, {"powersave", "TODO: Doc"},
44                                                        }),
45
46                                                        [](const std::string& val) {
47                                                          if (val != "performance")
48                                                            sg_host_dvfs_plugin_init();
49                                                        });
50
51 static simgrid::config::Flag<int>
52     cfg_min_pstate("plugin/dvfs/min-pstate",
53                    "Which pstate is the minimum (and hence fastest) pstate for this governor?", 0);
54
55 static const int max_pstate_not_limited = -1;
56 static simgrid::config::Flag<int>
57     cfg_max_pstate("plugin/dvfs/max-pstate",
58                    "Which pstate is the maximum (and hence slowest) pstate for this governor?", max_pstate_not_limited);
59
60 /** @addtogroup SURF_plugin_load
61
62   This plugin makes it very simple for users to obtain the current load for each host.
63
64 */
65
66 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_plugin_dvfs, surf, "Logging specific to the SURF HostDvfs plugin");
67
68 namespace simgrid {
69 namespace plugin {
70
71 namespace dvfs {
72
73 /**
74  *  Add this to your host tag:
75  *    - \<prop id="plugin/dvfs/governor" value="performance" /\>
76  *
77  *  Valid values as of now are: performance, powersave, ondemand, conservative
78  *  It doesn't matter if you use uppercase or lowercase.
79  *
80  *  For the sampling rate, use this:
81  *
82  *    - \<prop id="plugin/dvfs/sampling-rate" value="2" /\>
83  *
84  *  This will run the update() method of the specified governor every 2 seconds
85  *  on that host.
86  *
87  *  These properties can also be used within the \<config\> tag to configure
88  *  these values globally. Using them within the \<host\> will overwrite this
89  *  global configuration
90  */
91 class Governor {
92   simgrid::s4u::Host* const host_;
93   double sampling_rate_;
94   unsigned long min_pstate = cfg_min_pstate; //< Never use a pstate less than this one
95   unsigned long max_pstate = cfg_max_pstate; //< Never use a pstate larger than this one
96
97 public:
98   explicit Governor(simgrid::s4u::Host* ptr)
99       : host_(ptr)
100   {
101     if (cfg_max_pstate == max_pstate_not_limited)
102       max_pstate = host_->get_pstate_count() - 1;
103     init();
104   }
105   virtual ~Governor() = default;
106   virtual std::string get_name() const = 0;
107   simgrid::s4u::Host* get_host() const { return host_; }
108   unsigned long get_min_pstate() const { return min_pstate; }
109   unsigned long get_max_pstate() const { return max_pstate; }
110
111   void init()
112   {
113     const char* local_sampling_rate_config = host_->get_property(cfg_sampling_rate.get_name());
114     if (local_sampling_rate_config != nullptr) {
115       sampling_rate_ = std::stod(local_sampling_rate_config);
116     } else {
117       sampling_rate_ = cfg_sampling_rate;
118     }
119     const char* local_min_pstate_config = host_->get_property(cfg_min_pstate.get_name());
120     if (local_min_pstate_config != nullptr) {
121       min_pstate = std::stoul(local_min_pstate_config);
122     }
123
124     const char* local_max_pstate_config = host_->get_property(cfg_max_pstate.get_name());
125     if (local_max_pstate_config != nullptr) {
126       max_pstate = std::stoul(local_max_pstate_config);
127     }
128     xbt_assert(max_pstate <= host_->get_pstate_count() - 1, "Value for max_pstate too large!");
129     xbt_assert(min_pstate <= max_pstate, "min_pstate is larger than max_pstate!");
130   }
131
132   virtual void update()         = 0;
133   double get_sampling_rate() const { return sampling_rate_; }
134 };
135
136 /**
137  * The linux kernel doc describes this governor as follows:
138  * https://www.kernel.org/doc/Documentation/cpu-freq/governors.txt
139  *
140  * > The CPUfreq governor "performance" sets the CPU statically to the
141  * > highest frequency within the borders of scaling_min_freq and
142  * > scaling_max_freq.
143  *
144  * We do not support scaling_min_freq/scaling_max_freq -- we just pick the lowest frequency.
145  */
146 class Performance : public Governor {
147 public:
148   using Governor::Governor;
149   std::string get_name() const override { return "Performance"; }
150
151   void update() override { get_host()->set_pstate(get_min_pstate()); }
152 };
153
154 /**
155  * The linux kernel doc describes this governor as follows:
156  * https://www.kernel.org/doc/Documentation/cpu-freq/governors.txt
157  *
158  * > The CPUfreq governor "powersave" sets the CPU statically to the
159  * > lowest frequency within the borders of scaling_min_freq and
160  * > scaling_max_freq.
161  *
162  * We do not support scaling_min_freq/scaling_max_freq -- we just pick the lowest frequency.
163  */
164 class Powersave : public Governor {
165 public:
166   using Governor::Governor;
167   std::string get_name() const override { return "Powersave"; }
168
169   void update() override { get_host()->set_pstate(get_max_pstate()); }
170 };
171
172 /**
173  * The linux kernel doc describes this governor as follows:
174  * https://www.kernel.org/doc/Documentation/cpu-freq/governors.txt
175  *
176  * > The CPUfreq governor "ondemand" sets the CPU frequency depending on the
177  * > current system load. [...] when triggered, cpufreq checks
178  * > the CPU-usage statistics over the last period and the governor sets the
179  * > CPU accordingly.
180  */
181 class OnDemand : public Governor {
182   /**
183    * See https://elixir.bootlin.com/linux/v4.15.4/source/drivers/cpufreq/cpufreq_ondemand.c
184    * DEF_FREQUENCY_UP_THRESHOLD and od_update()
185    */
186   double freq_up_threshold_ = 0.80;
187
188 public:
189   using Governor::Governor;
190   std::string get_name() const override { return "OnDemand"; }
191
192   void update() override
193   {
194     double load = get_host()->get_core_count() * sg_host_get_avg_load(get_host());
195     sg_host_load_reset(get_host()); // Only consider the period between two calls to this method!
196
197     if (load > freq_up_threshold_) {
198       get_host()->set_pstate(get_min_pstate()); /* Run at max. performance! */
199       XBT_INFO("Load: %f > threshold: %f --> changed to pstate %lu", load, freq_up_threshold_, get_min_pstate());
200     } else {
201       /* The actual implementation uses a formula here: (See Kernel file cpufreq_ondemand.c:158)
202        *
203        *    freq_next = min_f + load * (max_f - min_f) / 100
204        *
205        * So they assume that frequency increases by 100 MHz. We will just use
206        * lowest_pstate - load*pstatesCount()
207        */
208       // Load is now < freq_up_threshold; exclude pstate 0 (the fastest)
209       // because pstate 0 can only be selected if load > freq_up_threshold_
210       auto new_pstate = get_max_pstate() - static_cast<unsigned long>(load) * (get_max_pstate() + 1);
211       if (new_pstate < get_min_pstate())
212         new_pstate = get_min_pstate();
213       get_host()->set_pstate(new_pstate);
214
215       XBT_DEBUG("Load: %f < threshold: %f --> changed to pstate %lu", load, freq_up_threshold_, new_pstate);
216     }
217   }
218 };
219
220 /**
221  * This is the conservative governor, which is very similar to the
222  * OnDemand governor. The Linux Kernel Documentation describes it
223  * very well, see https://www.kernel.org/doc/Documentation/cpu-freq/governors.txt:
224  *
225  * > The CPUfreq governor "conservative", much like the "ondemand"
226  * > governor, sets the CPU frequency depending on the current usage.  It
227  * > differs in behavior in that it gracefully increases and decreases the
228  * > CPU speed rather than jumping to max speed the moment there is any load
229  * > on the CPU. This behavior is more suitable in a battery powered
230  * > environment.
231  */
232 class Conservative : public Governor {
233   double freq_up_threshold_   = .8;
234   double freq_down_threshold_ = .2;
235
236 public:
237   using Governor::Governor;
238   std::string get_name() const override { return "Conservative"; }
239
240   void update() override
241   {
242     double load = get_host()->get_core_count() * sg_host_get_avg_load(get_host());
243     unsigned long pstate = get_host()->get_pstate();
244     sg_host_load_reset(get_host()); // Only consider the period between two calls to this method!
245
246     if (load > freq_up_threshold_) {
247       if (pstate != get_min_pstate()) {
248         get_host()->set_pstate(pstate - 1);
249         XBT_INFO("Load: %f > threshold: %f -> increasing performance to pstate %lu", load, freq_up_threshold_,
250                  pstate - 1);
251       } else {
252         XBT_DEBUG("Load: %f > threshold: %f -> but cannot speed up even more, already in highest pstate %lu", load,
253                   freq_up_threshold_, pstate);
254       }
255     } else if (load < freq_down_threshold_) {
256       if (pstate != get_max_pstate()) { // Are we in the slowest pstate already?
257         get_host()->set_pstate(pstate + 1);
258         XBT_INFO("Load: %f < threshold: %f -> slowing down to pstate %lu", load, freq_down_threshold_, pstate + 1);
259       } else {
260         XBT_DEBUG("Load: %f < threshold: %f -> cannot slow down even more, already in slowest pstate %lu", load,
261                   freq_down_threshold_, pstate);
262       }
263     }
264   }
265 };
266
267 #if HAVE_SMPI
268 class Adagio : public Governor {
269   unsigned long best_pstate = 0;
270   double start_time         = 0;
271   double comp_counter       = 0;
272   double comp_timer         = 0;
273
274   std::vector<std::vector<double>> rates; // Each host + all frequencies of that host
275
276   unsigned int task_id   = 0;
277   bool iteration_running = false; /*< Are we currently between iteration_in and iteration_out calls? */
278
279 public:
280   explicit Adagio(simgrid::s4u::Host* ptr)
281       : Governor(ptr), rates(100, std::vector<double>(ptr->get_pstate_count(), 0.0))
282   {
283     simgrid::smpi::plugin::ampi::on_iteration_in.connect([this](simgrid::s4u::Actor const& actor) {
284       // Every instance of this class subscribes to this event, so one per host
285       // This means that for any actor, all 'hosts' are normally notified of these
286       // changes, even those who don't currently run the actor 'proc_id'.
287       // -> Let's check if this signal call is for us!
288       if (get_host() == actor.get_host()) {
289         iteration_running = true;
290       }
291     });
292     simgrid::smpi::plugin::ampi::on_iteration_out.connect([this](simgrid::s4u::Actor const& actor) {
293       if (get_host() == actor.get_host()) {
294         iteration_running = false;
295         task_id           = 0;
296       }
297     });
298     simgrid::s4u::Exec::on_start_cb([this](simgrid::s4u::Exec const& activity) {
299       if (activity.get_host() == get_host())
300         pre_task();
301     });
302     simgrid::s4u::Activity::on_completion_cb([this](simgrid::s4u::Activity& activity) {
303       const auto* exec = dynamic_cast<simgrid::s4u::Exec*>(&activity);
304       if (exec == nullptr) // Only Execs are concerned here
305         return;
306       // For more than one host (not yet supported), we can access the host via
307       // simcalls_.front()->issuer->get_iface()->get_host()
308       if (exec->get_host() == get_host() && iteration_running) {
309         comp_timer += exec->get_finish_time() - exec->get_start_time();
310       }
311     });
312     // FIXME I think that this fires at the same time for all hosts, so when the src sends something,
313     // the dst will be notified even though it didn't even arrive at the recv yet
314     kernel::activity::CommImpl::on_start.connect([this](const kernel::activity::CommImpl& comm) {
315       const auto* act = static_cast<kernel::resource::NetworkAction*>(comm.surf_action_);
316       if ((get_host() == &act->get_src() || get_host() == &act->get_dst()) && iteration_running) {
317         post_task();
318       }
319     });
320   }
321
322   std::string get_name() const override { return "Adagio"; }
323
324   void pre_task()
325   {
326     sg_host_load_reset(get_host());
327     comp_counter = sg_host_get_computed_flops(get_host()); // Should be 0 because of the reset
328     comp_timer   = 0;
329     start_time   = simgrid::s4u::Engine::get_clock();
330     if (rates.size() <= task_id)
331       rates.resize(task_id + 5, std::vector<double>(get_host()->get_pstate_count(), 0.0));
332     if (rates[task_id][best_pstate] == 0)
333       best_pstate = 0;
334     get_host()->set_pstate(best_pstate); // Load our schedule
335     XBT_DEBUG("Set pstate to %lu", best_pstate);
336   }
337
338   void post_task()
339   {
340     double computed_flops = sg_host_get_computed_flops(get_host()) - comp_counter;
341     double target_time    = (simgrid::s4u::Engine::get_clock() - start_time);
342     target_time           = target_time * 99.0 / 100.0; // FIXME We account for t_copy arbitrarily with 1%
343                                                         // -- this needs to be fixed
344
345     bool is_initialized         = rates[task_id][best_pstate] != 0;
346     rates[task_id][best_pstate] = computed_flops / comp_timer;
347     if (not is_initialized) {
348       for (unsigned long i = 1; i < get_host()->get_pstate_count(); i++) {
349         rates[task_id][i] = rates[task_id][0] * (get_host()->get_pstate_speed(i) / get_host()->get_speed());
350       }
351     }
352
353     for (unsigned long pstate = get_host()->get_pstate_count() - 1; pstate != 0; pstate--) {
354       if (computed_flops / rates[task_id][pstate] <= target_time) {
355         // We just found the pstate we want to use!
356         best_pstate = pstate;
357         break;
358       }
359     }
360     task_id++;
361   }
362
363   void update() override {}
364 };
365 #endif
366 } // namespace dvfs
367 } // namespace plugin
368 } // namespace simgrid
369
370 /* **************************** events  callback *************************** */
371 static void on_host_added(simgrid::s4u::Host& host)
372 {
373   if (dynamic_cast<simgrid::s4u::VirtualMachine*>(&host)) // Ignore virtual machines
374     return;
375
376   std::string name              = std::string("dvfs-daemon-") + host.get_cname();
377   simgrid::s4u::ActorPtr daemon = simgrid::s4u::Actor::create(name.c_str(), &host, []() {
378     /**
379      * This lambda function is the function the actor (daemon) will execute
380      * all the time - in the case of the dvfs plugin, this controls when to
381      * lower/raise the frequency.
382      */
383     simgrid::s4u::ActorPtr daemon_proc = simgrid::s4u::Actor::self();
384
385     XBT_DEBUG("DVFS process on %s is a daemon: %d", daemon_proc->get_host()->get_cname(), daemon_proc->is_daemon());
386
387     std::string dvfs_governor;
388     const char* host_conf = daemon_proc->get_host()->get_property("plugin/dvfs/governor");
389     if (host_conf != nullptr) {
390       dvfs_governor = std::string(host_conf);
391       boost::algorithm::to_lower(dvfs_governor);
392     } else {
393       dvfs_governor = cfg_governor;
394       boost::algorithm::to_lower(dvfs_governor);
395     }
396
397     auto governor = [&dvfs_governor, &daemon_proc]() -> std::unique_ptr<simgrid::plugin::dvfs::Governor> {
398       if (dvfs_governor == "conservative")
399         return std::make_unique<simgrid::plugin::dvfs::Conservative>(daemon_proc->get_host());
400       if (dvfs_governor == "ondemand")
401         return std::make_unique<simgrid::plugin::dvfs::OnDemand>(daemon_proc->get_host());
402 #if HAVE_SMPI
403       if (dvfs_governor == "adagio")
404         return std::make_unique<simgrid::plugin::dvfs::Adagio>(daemon_proc->get_host());
405 #endif
406       if (dvfs_governor == "powersave")
407         return std::make_unique<simgrid::plugin::dvfs::Powersave>(daemon_proc->get_host());
408       if (dvfs_governor != "performance")
409         XBT_CRITICAL("No governor specified for host %s, falling back to Performance",
410                      daemon_proc->get_host()->get_cname());
411       return std::make_unique<simgrid::plugin::dvfs::Performance>(daemon_proc->get_host());
412     }();
413
414     while (true) {
415       // Sleep *before* updating; important for startup (i.e., t = 0).
416       // In the beginning, we want to go with the pstates specified in the platform file
417       // (so we sleep first)
418       simgrid::s4u::this_actor::sleep_for(governor->get_sampling_rate());
419       governor->update();
420       XBT_DEBUG("Governor (%s) just updated!", governor->get_name().c_str());
421     }
422
423     XBT_WARN("I should have never reached this point: daemons should be killed when all regular processes are done");
424     return 0;
425   });
426
427   // This call must be placed in this function. Otherwise, the daemonize() call comes too late and
428   // SMPI will take this process as an MPI process!
429   daemon->daemonize();
430 }
431
432 /* **************************** Public interface *************************** */
433
434 /**
435  * @brief Initializes the HostDvfs plugin
436  * @details The HostDvfs plugin provides an API to get the current load of each host.
437  */
438 void sg_host_dvfs_plugin_init()
439 {
440   static bool inited = false;
441   if (inited)
442     return;
443   inited = true;
444
445   sg_host_load_plugin_init();
446
447   simgrid::s4u::Host::on_creation_cb(&on_host_added);
448 }