Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5387b3c214842fee98d2e919a1af1f7d71dc14ad
[simgrid.git] / src / plugins / host_load.cpp
1 /* Copyright (c) 2010-2018. 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/load.h"
7 #include "src/include/surf/surf.hpp"
8 #include "src/plugins/vm/VirtualMachineImpl.hpp"
9 #include <simgrid/s4u.hpp>
10
11 SIMGRID_REGISTER_PLUGIN(host_load, "Cpu load", &sg_host_load_plugin_init)
12
13 /** @addtogroup plugin_load
14
15 This plugin makes it very simple for users to obtain the current load for each host.
16
17 */
18
19 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_plugin_load, surf, "Logging specific to the HostLoad plugin");
20
21 namespace simgrid {
22 namespace plugin {
23
24 class HostLoad {
25 public:
26   static simgrid::xbt::Extension<simgrid::s4u::Host, HostLoad> EXTENSION_ID;
27
28   explicit HostLoad(simgrid::s4u::Host* ptr)
29       : host_(ptr)
30       , last_updated_(surf_get_clock())
31       , last_reset_(surf_get_clock())
32       , current_speed_(host_->get_speed())
33       , current_flops_(host_->pimpl_cpu->get_constraint()->get_usage())
34       , theor_max_flops_(0)
35   {
36   }
37   ~HostLoad() = default;
38   HostLoad() = delete;
39   explicit HostLoad(simgrid::s4u::Host& ptr) = delete;
40   explicit HostLoad(simgrid::s4u::Host&& ptr) = delete;
41
42   double get_current_load();
43   double get_average_load() { return (theor_max_flops_ == 0) ? 0 : computed_flops_ / theor_max_flops_; };
44   double get_computed_flops() { return computed_flops_; }
45   double get_idle_time() { return idle_time_; } /** Return idle time since last reset */
46   double get_total_idle_time() { return total_idle_time_; } /** Return idle time over the whole simulation */
47   void update();
48   void reset();
49
50 private:
51   simgrid::s4u::Host* host_ = nullptr;
52   double last_updated_      = 0;
53   double last_reset_        = 0;
54   /**
55    * current_speed each core is running at; we need to store this as the speed
56    * will already have changed once we get notified
57    */
58   double current_speed_     = 0;
59   /**
60    * How many flops are currently used by all the processes running on this
61    * host?
62    */
63   double current_flops_     = 0;
64   double computed_flops_    = 0;
65   double idle_time_         = 0;
66   double total_idle_time_   = 0; /* This gets never reset */
67   double theor_max_flops_   = 0;
68 };
69
70 simgrid::xbt::Extension<simgrid::s4u::Host, HostLoad> HostLoad::EXTENSION_ID;
71
72 void HostLoad::update()
73 {
74   double now = surf_get_clock();
75
76   /* Current flop per second computed by the cpu; current_flops = k * pstate_speed_in_flops, k @in {0, 1, ..., cores-1}
77    * designates number of active cores; will be 0 if CPU is currently idle */
78   current_flops_ = host_->pimpl_cpu->get_constraint()->get_usage();
79
80   /* flops == pstate_speed * cores_being_currently_used */
81   computed_flops_ += (now - last_updated_) * current_flops_;
82
83   if (current_flops_ == 0) {
84     idle_time_ += (now - last_updated_);
85     total_idle_time_ += (now - last_updated_);
86     XBT_DEBUG("[%s]: Currently idle -> Added %f seconds to idle time (totaling %fs)", host_->get_cname(), (now - last_updated_), idle_time_);
87   }
88
89   theor_max_flops_ += current_speed_ * host_->get_core_count() * (now - last_updated_);
90   current_speed_ = host_->get_speed();
91   last_updated_  = now;
92 }
93
94 /**
95  * WARNING: This function does not guarantee that you have the real load at any time imagine all actions on your CPU
96  * terminate at time t. Your load is then 0. Then you query the load (still 0) and then another action starts (still at
97  * time t!). This means that the load was never really 0 (because the time didn't advance) but it will still be reported
98  * as 0.
99  *
100  * So, use at your own risk.
101  */
102 double HostLoad::get_current_load()
103 {
104   // We don't need to call update() here because it is called every time an action terminates or starts
105   // FIXME: Can this happen at the same time? stop -> call to getCurrentLoad, load = 0 -> next action starts?
106   return current_flops_ / static_cast<double>(host_->get_speed() * host_->get_core_count());
107 }
108
109 /*
110  * Resets the counters
111  */
112 void HostLoad::reset()
113 {
114   last_updated_    = surf_get_clock();
115   last_reset_      = surf_get_clock();
116   idle_time_       = 0;
117   computed_flops_  = 0;
118   theor_max_flops_ = 0;
119   current_flops_   = host_->pimpl_cpu->get_constraint()->get_usage();
120   current_speed_   = host_->get_speed();
121 }
122 } // namespace plugin
123 } // namespace simgrid
124
125 using simgrid::plugin::HostLoad;
126
127 /* **************************** events  callback *************************** */
128 /* This callback is fired either when the host changes its state (on/off) or its speed
129  * (because the user changed the pstate, or because of external trace events) */
130 static void on_host_change(simgrid::s4u::Host& host)
131 {
132   if (dynamic_cast<simgrid::s4u::VirtualMachine*>(&host)) // Ignore virtual machines
133     return;
134
135   host.extension<HostLoad>()->update();
136 }
137
138 /* This callback is called when an action (computation, idle, ...) terminates */
139 static void on_action_state_change(simgrid::surf::CpuAction* action, simgrid::kernel::resource::Action::State /*previous*/)
140 {
141   for (simgrid::surf::Cpu* const& cpu : action->cpus()) {
142     simgrid::s4u::Host* host = cpu->get_host();
143
144     if (dynamic_cast<simgrid::s4u::VirtualMachine*>(host)) // Ignore virtual machines
145       return;
146
147     if (host != nullptr) {
148       host->extension<HostLoad>()->update();
149     }
150   }
151 }
152
153 /* **************************** Public interface *************************** */
154
155 /** @ingroup plugin_load
156  * @brief Initializes the HostLoad plugin
157  * @details The HostLoad plugin provides an API to get the current load of each host.
158  */
159 void sg_host_load_plugin_init()
160 {
161   if (HostLoad::EXTENSION_ID.valid())
162     return;
163
164   HostLoad::EXTENSION_ID = simgrid::s4u::Host::extension_create<HostLoad>();
165
166   if (simgrid::s4u::Engine::is_initialized()) { // If not yet initialized, this would create a new instance
167                                                 // which would cause seg faults...
168     simgrid::s4u::Engine* e = simgrid::s4u::Engine::get_instance();
169     for (auto& host : e->get_all_hosts()) {
170       host->extension_set(new HostLoad(host));
171     }
172   }
173
174   /* When attaching a callback into a signal, you can use a lambda as follows, or a regular function as done below */
175
176   simgrid::s4u::Host::on_creation.connect([](simgrid::s4u::Host& host) {
177     if (dynamic_cast<simgrid::s4u::VirtualMachine*>(&host)) // Ignore virtual machines
178       return;
179     host.extension_set(new HostLoad(&host));
180   });
181
182   simgrid::surf::CpuAction::on_state_change.connect(&on_action_state_change);
183   simgrid::s4u::Host::on_state_change.connect(&on_host_change);
184   simgrid::s4u::Host::on_speed_change.connect(&on_host_change);
185 }
186
187 /** @brief Returns the current load of the host passed as argument
188  *
189  *  See also @ref plugin_load
190  */
191 double sg_host_get_current_load(sg_host_t host)
192 {
193   xbt_assert(HostLoad::EXTENSION_ID.valid(),
194              "The Load plugin is not active. Please call sg_host_load_plugin_init() during initialization.");
195
196   return host->extension<HostLoad>()->get_current_load();
197 }
198
199 /** @brief Returns the current load of the host passed as argument
200  *
201  *  See also @ref plugin_load
202  */
203 double sg_host_get_avg_load(sg_host_t host)
204 {
205   xbt_assert(HostLoad::EXTENSION_ID.valid(),
206              "The Load plugin is not active. Please call sg_host_load_plugin_init() during initialization.");
207
208   return host->extension<HostLoad>()->get_average_load();
209 }
210
211 /** @brief Returns the time this host was idle since the last reset
212  *
213  *  See also @ref plugin_load
214  */
215 double sg_host_get_idle_time(sg_host_t host)
216 {
217   xbt_assert(HostLoad::EXTENSION_ID.valid(),
218              "The Load plugin is not active. Please call sg_host_load_plugin_init() during initialization.");
219
220   return host->extension<HostLoad>()->get_idle_time();
221 }
222
223 double sg_host_get_total_idle_time(sg_host_t host)
224 {
225   xbt_assert(HostLoad::EXTENSION_ID.valid(),
226              "The Load plugin is not active. Please call sg_host_load_plugin_init() during initialization.");
227
228   return host->extension<HostLoad>()->get_total_idle_time();
229 }
230
231 double sg_host_get_computed_flops(sg_host_t host)
232 {
233   xbt_assert(HostLoad::EXTENSION_ID.valid(),
234              "The Load plugin is not active. Please call sg_host_load_plugin_init() during initialization.");
235
236   return host->extension<HostLoad>()->get_computed_flops();
237 }
238
239 void sg_host_load_reset(sg_host_t host)
240 {
241   xbt_assert(HostLoad::EXTENSION_ID.valid(),
242              "The Load plugin is not active. Please call sg_host_load_plugin_init() during initialization.");
243
244   host->extension<HostLoad>()->reset();
245 }