Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Host: non-linear constraints
[simgrid.git] / src / s4u / s4u_Host.cpp
1 /* Copyright (c) 2006-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/Exception.hpp"
7 #include "simgrid/host.h"
8 #include "simgrid/kernel/routing/NetPoint.hpp"
9 #include "simgrid/s4u/Actor.hpp"
10 #include "simgrid/s4u/Comm.hpp"
11 #include "simgrid/s4u/Engine.hpp"
12 #include "simgrid/s4u/Exec.hpp"
13 #include "simgrid/s4u/VirtualMachine.hpp"
14 #include "src/plugins/vm/VirtualMachineImpl.hpp"
15 #include "src/surf/HostImpl.hpp"
16 #include "xbt/parse_units.hpp"
17
18 #include <algorithm>
19 #include <string>
20
21 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_host, s4u, "Logging specific to the S4U hosts");
22 XBT_LOG_EXTERNAL_CATEGORY(surf_route);
23
24 namespace simgrid {
25
26 template class xbt::Extendable<s4u::Host>;
27
28 namespace s4u {
29
30 xbt::signal<void(Host&)> Host::on_creation;
31 xbt::signal<void(Host const&)> Host::on_destruction;
32 xbt::signal<void(Host const&)> Host::on_state_change;
33 xbt::signal<void(Host const&)> Host::on_speed_change;
34
35 Host* Host::set_cpu(kernel::resource::CpuImpl* cpu)
36 {
37   pimpl_cpu_ = cpu;
38   return this;
39 }
40
41 #ifndef DOXYGEN
42 Host* Host::set_netpoint(kernel::routing::NetPoint* netpoint)
43 {
44   pimpl_netpoint_ = netpoint;
45   return this;
46 }
47
48 Host::~Host()
49 {
50   if (pimpl_netpoint_ != nullptr) // not removed yet by a children class
51     Engine::get_instance()->netpoint_unregister(pimpl_netpoint_);
52   delete pimpl_cpu_;
53 }
54 #endif
55
56 /** @brief Fire the required callbacks and destroy the object
57  *
58  * Don't delete directly a host, call h->destroy() instead.
59  *
60  * This is cumbersome but this is the simplest solution to ensure that the on_destruction() callback receives a valid
61  * object (because of the destructor order in a class hierarchy).
62  */
63 void Host::destroy()
64 {
65   kernel::actor::simcall([this] { this->pimpl_->destroy(); });
66 }
67
68 Host* Host::by_name(const std::string& name)
69 {
70   return Engine::get_instance()->host_by_name(name);
71 }
72 Host* Host::by_name_or_null(const std::string& name)
73 {
74   return Engine::get_instance()->host_by_name_or_null(name);
75 }
76
77 Host* Host::current()
78 {
79   kernel::actor::ActorImpl* self = kernel::actor::ActorImpl::self();
80   xbt_assert(self != nullptr, "Cannot call Host::current() from the maestro context");
81   return self->get_host();
82 }
83
84 xbt::string const& Host::get_name() const
85 {
86   return this->pimpl_->get_name();
87 }
88
89 const char* Host::get_cname() const
90 {
91   return this->pimpl_->get_cname();
92 }
93
94 void Host::turn_on()
95 {
96   if (not is_on()) {
97     kernel::actor::simcall([this] {
98       this->pimpl_cpu_->turn_on();
99       this->pimpl_->turn_on();
100       on_state_change(*this);
101     });
102   }
103 }
104
105 /** @brief Stop the host if it is on */
106 void Host::turn_off()
107 {
108   if (is_on()) {
109     const kernel::actor::ActorImpl* self = kernel::actor::ActorImpl::self();
110     kernel::actor::simcall([this, self] {
111       for (VirtualMachine* const& vm : vm::VirtualMachineImpl::allVms_)
112         if (vm->get_pm() == this) {
113           vm->shutdown();
114           vm->turn_off();
115         }
116       this->pimpl_cpu_->turn_off();
117       this->pimpl_->turn_off(self);
118
119       on_state_change(*this);
120     });
121   }
122 }
123
124 bool Host::is_on() const
125 {
126   return this->pimpl_cpu_->is_on();
127 }
128
129 int Host::get_pstate_count() const
130 {
131   return this->pimpl_cpu_->get_pstate_count();
132 }
133
134 /**
135  * @brief Return a copy of the list of actors that are executing on this host.
136  *
137  * Daemons and regular actors are all mixed in this list.
138  */
139 std::vector<ActorPtr> Host::get_all_actors() const
140 {
141   return pimpl_->get_all_actors();
142 }
143
144 /** @brief Returns how many actors (daemonized or not) have been launched on this host */
145 size_t Host::get_actor_count() const
146 {
147   return pimpl_->get_actor_count();
148 }
149
150 /**
151  * @brief Find a route toward another host
152  *
153  * @param dest [IN] where to
154  * @param links [OUT] where to store the list of links (must exist, cannot be nullptr).
155  * @param latency [OUT] where to store the latency experienced on the path (or nullptr if not interested)
156  *                It is the caller responsibility to initialize latency to 0 (we add to provided route)
157  * @pre links!=nullptr
158  *
159  * walk through the routing components tree and find a route between hosts
160  * by calling each "get_route" function in each routing component.
161  */
162 void Host::route_to(const Host* dest, std::vector<Link*>& links, double* latency) const
163 {
164   std::vector<kernel::resource::LinkImpl*> linkImpls;
165   this->route_to(dest, linkImpls, latency);
166   for (auto* l : linkImpls)
167     links.push_back(l->get_iface());
168 }
169
170 /** @brief Just like Host::routeTo, but filling an array of link implementations */
171 void Host::route_to(const Host* dest, std::vector<kernel::resource::LinkImpl*>& links, double* latency) const
172 {
173   kernel::routing::NetZoneImpl::get_global_route(pimpl_netpoint_, dest->get_netpoint(), links, latency);
174   if (XBT_LOG_ISENABLED(surf_route, xbt_log_priority_debug)) {
175     XBT_CDEBUG(surf_route, "Route from '%s' to '%s' (latency: %f):", get_cname(), dest->get_cname(),
176                (latency == nullptr ? -1 : *latency));
177     for (auto const* link : links)
178       XBT_CDEBUG(surf_route, "  Link '%s'", link->get_cname());
179   }
180 }
181
182 /** @brief Returns the networking zone englobing that host */
183 NetZone* Host::get_englobing_zone() const
184 {
185   return pimpl_netpoint_->get_englobing_zone()->get_iface();
186 }
187
188 #ifndef DOXYGEN
189 void Host::sendto(Host* dest, double byte_amount) // XBT_ATTRIB_DEPRECATED_v331
190 {
191   Comm::sendto_async(this, dest, byte_amount)->wait();
192 }
193
194 CommPtr Host::sendto_async(Host* dest, double byte_amount) // XBT_ATTRIB_DEPRECATED_v331
195 {
196   return Comm::sendto_async(this, dest, byte_amount);
197 }
198
199 void Host::send_to(Host* dest, double byte_amount) // XBT_ATTRIB_DEPRECATED_v330
200 {
201   Comm::sendto(this, dest, byte_amount);
202 }
203 #endif
204
205 /** Get the properties assigned to a host */
206 const std::unordered_map<std::string, std::string>* Host::get_properties() const
207 {
208   return this->pimpl_->get_properties();
209 }
210
211 /** Retrieve the property value (or nullptr if not set) */
212 const char* Host::get_property(const std::string& key) const
213 {
214   return this->pimpl_->get_property(key);
215 }
216
217 Host* Host::set_property(const std::string& key, const std::string& value)
218 {
219   kernel::actor::simcall([this, &key, &value] { this->pimpl_->set_property(key, value); });
220   return this;
221 }
222
223 Host* Host::set_properties(const std::unordered_map<std::string, std::string>& properties)
224 {
225   kernel::actor::simcall([this, &properties] { this->pimpl_->set_properties(properties); });
226   return this;
227 }
228
229 /** Specify a profile turning the host on and off according to an exhaustive list or a stochastic law.
230  * The profile must contain boolean values. */
231 Host* Host::set_state_profile(kernel::profile::Profile* p)
232 {
233   kernel::actor::simcall([this, p] { pimpl_cpu_->set_state_profile(p); });
234   return this;
235 }
236 /** Specify a profile modeling the external load according to an exhaustive list or a stochastic law.
237  *
238  * Each event of the profile represent a peak speed change that is due to external load. The values are given as a rate
239  * of the initial value. This means that the actual value is obtained by multiplying the initial value (the peek speed
240  * at this pstate level) by the rate coming from the profile.
241  */
242 Host* Host::set_speed_profile(kernel::profile::Profile* p)
243 {
244   kernel::actor::simcall([this, p] { pimpl_cpu_->set_speed_profile(p); });
245   return this;
246 }
247
248 /** @brief Get the peak processor speed (in flops/s), at the specified pstate  */
249 double Host::get_pstate_speed(int pstate_index) const
250 {
251   return this->pimpl_cpu_->get_pstate_peak_speed(pstate_index);
252 }
253
254 double Host::get_speed() const
255 {
256   return this->pimpl_cpu_->get_speed(1.0);
257 }
258 double Host::get_load() const
259 {
260   return this->pimpl_cpu_->get_load();
261 }
262 double Host::get_available_speed() const
263 {
264   return this->pimpl_cpu_->get_speed_ratio();
265 }
266
267 Host* Host::set_sharing_policy(SharingPolicy policy, const s4u::NonLinearResourceCb& cb)
268 {
269   kernel::actor::simcall([this, policy, &cb] { pimpl_cpu_->set_sharing_policy(policy, cb); });
270   return this;
271 }
272
273 Host::SharingPolicy Host::get_sharing_policy() const
274 {
275   return this->pimpl_cpu_->get_sharing_policy();
276 }
277
278 int Host::get_core_count() const
279 {
280   return this->pimpl_cpu_->get_core_count();
281 }
282
283 Host* Host::set_core_count(int core_count)
284 {
285   kernel::actor::simcall([this, core_count] { this->pimpl_cpu_->set_core_count(core_count); });
286   return this;
287 }
288
289 Host* Host::set_pstate_speed(const std::vector<double>& speed_per_state)
290 {
291   kernel::actor::simcall([this, &speed_per_state] { pimpl_cpu_->set_pstate_speed(speed_per_state); });
292   return this;
293 }
294
295 std::vector<double> Host::convert_pstate_speed_vector(const std::vector<std::string>& speed_per_state)
296 {
297   std::vector<double> speed_list;
298   speed_list.reserve(speed_per_state.size());
299   for (const auto& speed_str : speed_per_state) {
300     try {
301       double speed = xbt_parse_get_speed("", 0, speed_str, "");
302       speed_list.push_back(speed);
303     } catch (const simgrid::ParseError&) {
304       throw std::invalid_argument(std::string("Invalid speed value: ") + speed_str);
305     }
306   }
307   return speed_list;
308 }
309
310 Host* Host::set_pstate_speed(const std::vector<std::string>& speed_per_state)
311 {
312   set_pstate_speed(Host::convert_pstate_speed_vector(speed_per_state));
313   return this;
314 }
315
316 /** @brief Set the pstate at which the host should run */
317 Host* Host::set_pstate(int pstate_index)
318 {
319   kernel::actor::simcall([this, pstate_index] { this->pimpl_cpu_->set_pstate(pstate_index); });
320   return this;
321 }
322
323 /** @brief Retrieve the pstate at which the host is currently running */
324 int Host::get_pstate() const
325 {
326   return this->pimpl_cpu_->get_pstate();
327 }
328
329 Host* Host::set_coordinates(const std::string& coords)
330 {
331   if (not coords.empty())
332     kernel::actor::simcall([this, coords] { this->pimpl_netpoint_->set_coordinates(coords); });
333   return this;
334 }
335 std::vector<Disk*> Host::get_disks() const
336 {
337   return this->pimpl_->get_disks();
338 }
339
340 Disk* Host::create_disk(const std::string& name, double read_bandwidth, double write_bandwidth)
341 {
342   return kernel::actor::simcall([this, &name, read_bandwidth, write_bandwidth] {
343     auto* disk = pimpl_->create_disk(name, read_bandwidth, write_bandwidth);
344     pimpl_->add_disk(disk);
345     return disk;
346   });
347 }
348
349 Disk* Host::create_disk(const std::string& name, const std::string& read_bandwidth, const std::string& write_bandwidth)
350 {
351   double d_read;
352   try {
353     d_read = xbt_parse_get_bandwidth("", 0, read_bandwidth, "");
354   } catch (const simgrid::ParseError&) {
355     throw std::invalid_argument(std::string("Impossible to create disk: ") + name +
356                                 std::string(". Invalid read bandwidth: ") + read_bandwidth);
357   }
358   double d_write;
359   try {
360     d_write = xbt_parse_get_bandwidth("", 0, write_bandwidth, "");
361   } catch (const simgrid::ParseError&) {
362     throw std::invalid_argument(std::string("Impossible to create disk: ") + name +
363                                 std::string(". Invalid write bandwidth: ") + write_bandwidth);
364   }
365   return create_disk(name, d_read, d_write);
366 }
367
368 void Host::add_disk(const Disk* disk)
369 {
370   kernel::actor::simcall([this, disk] { this->pimpl_->add_disk(disk); });
371 }
372
373 void Host::remove_disk(const std::string& disk_name)
374 {
375   kernel::actor::simcall([this, disk_name] { this->pimpl_->remove_disk(disk_name); });
376 }
377
378 ExecPtr Host::exec_init(double flops) const
379 {
380   return this_actor::exec_init(flops);
381 }
382
383 ExecPtr Host::exec_async(double flops) const
384 {
385   return this_actor::exec_async(flops);
386 }
387
388 void Host::execute(double flops) const
389 {
390   execute(flops, 1.0 /* priority */);
391 }
392
393 void Host::execute(double flops, double priority) const
394 {
395   this_actor::exec_init(flops)->set_priority(1 / priority)->vetoable_start()->wait();
396 }
397
398 Host* Host::seal()
399 {
400   kernel::actor::simcall([this]() { this->pimpl_->seal(); });
401   simgrid::s4u::Host::on_creation(*this); // notify the signal
402   return this;
403 }
404
405 } // namespace s4u
406 } // namespace simgrid
407
408 /* **************************** Public C interface *************************** */
409 size_t sg_host_count()
410 {
411   return simgrid::s4u::Engine::get_instance()->get_host_count();
412 }
413 sg_host_t* sg_host_list()
414 {
415   const simgrid::s4u::Engine* e = simgrid::s4u::Engine::get_instance();
416   size_t host_count             = e->get_host_count();
417
418   xbt_assert(host_count > 0, "There is no host!");
419   std::vector<simgrid::s4u::Host*> hosts = e->get_all_hosts();
420
421   auto* res = xbt_new(sg_host_t, hosts.size());
422   std::copy(begin(hosts), end(hosts), res);
423
424   return res;
425 }
426
427 const char* sg_host_get_name(const_sg_host_t host)
428 {
429   return host->get_cname();
430 }
431
432 void* sg_host_extension_get(const_sg_host_t host, size_t ext)
433 {
434   return host->extension(ext);
435 }
436
437 size_t sg_host_extension_create(void (*deleter)(void*))
438 {
439   return simgrid::s4u::Host::extension_create(deleter);
440 }
441
442 sg_host_t sg_host_by_name(const char* name)
443 {
444   return simgrid::s4u::Host::by_name_or_null(name);
445 }
446
447 xbt_dynar_t sg_hosts_as_dynar() // XBT_ATTRIB_DEPRECATED_v330
448 {
449   std::vector<simgrid::s4u::Host*> list = simgrid::s4u::Engine::get_instance()->get_all_hosts();
450
451   auto last = std::remove_if(begin(list), end(list), [](const simgrid::s4u::Host* host) {
452     return not host || not host->get_netpoint() || not host->get_netpoint()->is_host();
453   });
454   std::sort(begin(list), last,
455             [](const simgrid::s4u::Host* a, const simgrid::s4u::Host* b) { return a->get_name() < b->get_name(); });
456
457   xbt_dynar_t res = xbt_dynar_new(sizeof(sg_host_t), nullptr);
458   std::for_each(begin(list), last, [res](sg_host_t host) { xbt_dynar_push_as(res, sg_host_t, host); });
459   return res;
460 }
461
462 // ========= Layering madness ==============*
463
464 // ========== User data Layer ==========
465 void* sg_host_get_data(const_sg_host_t host)
466 {
467   return host->get_data();
468 }
469 void sg_host_set_data(sg_host_t host, void* userdata)
470 {
471   host->set_data(userdata);
472 }
473 void* sg_host_data(const_sg_host_t host) // XBT_ATTRIB_DEPRECATED_v330
474 {
475   return sg_host_get_data(host);
476 }
477 void sg_host_data_set(sg_host_t host, void* userdata) // XBT_ATTRIB_DEPRECATED_v330
478 {
479   sg_host_set_data(host, userdata);
480 }
481
482 // ========= Disk related functions ============
483 void sg_host_get_disks(const_sg_host_t host, unsigned int* disk_count, sg_disk_t** disks)
484 {
485   std::vector<sg_disk_t> list = host->get_disks();
486   *disk_count                 = list.size();
487   *disks                      = xbt_new(sg_disk_t, list.size());
488   std::copy(begin(list), end(list), *disks);
489 }
490
491 // =========== user-level functions ===============
492 // ================================================
493 /** @brief Returns the total speed of a host */
494 double sg_host_get_speed(const_sg_host_t host)
495 {
496   return host->get_speed();
497 }
498
499 double sg_host_speed(const_sg_host_t host) // XBT_ATTRIB_DEPRECATED_v330
500 {
501   return sg_host_get_speed(host);
502 }
503
504 /** @brief Return the speed of the processor (in flop/s) at a given pstate. See also @ref plugin_host_energy.
505  *
506  * @param  host host to test
507  * @param pstate_index pstate to test
508  * @return Returns the processor speed associated with pstate_index
509  */
510 double sg_host_get_pstate_speed(const_sg_host_t host, int pstate_index)
511 {
512   return host->get_pstate_speed(pstate_index);
513 }
514
515 /** @ingroup m_host_management
516  * @brief Return the number of cores.
517  *
518  * @param host a host
519  * @return the number of cores
520  */
521 int sg_host_core_count(const_sg_host_t host)
522 {
523   return host->get_core_count();
524 }
525
526 double sg_host_get_available_speed(const_sg_host_t host)
527 {
528   return host->get_available_speed();
529 }
530
531 /** @brief Returns the number of power states for a host.
532  *
533  *  See also @ref plugin_host_energy.
534  */
535 int sg_host_get_nb_pstates(const_sg_host_t host)
536 {
537   return host->get_pstate_count();
538 }
539
540 /** @brief Gets the pstate at which that host currently runs.
541  *
542  *  See also @ref plugin_host_energy.
543  */
544 int sg_host_get_pstate(const_sg_host_t host)
545 {
546   return host->get_pstate();
547 }
548 /** @brief Sets the pstate at which that host should run.
549  *
550  *  See also @ref plugin_host_energy.
551  */
552 void sg_host_set_pstate(sg_host_t host, int pstate)
553 {
554   host->set_pstate(pstate);
555 }
556
557 /** @ingroup m_host_management
558  *
559  * @brief Start the host if it is off
560  *
561  * See also #sg_host_is_on() to test the current state of the host and @ref plugin_host_energy
562  * for more info on DVFS.
563  */
564 void sg_host_turn_on(sg_host_t host)
565 {
566   host->turn_on();
567 }
568
569 /** @ingroup m_host_management
570  *
571  * @brief Stop the host if it is on
572  *
573  * See also #MSG_host_is_on() to test the current state of the host and @ref plugin_host_energy
574  * for more info on DVFS.
575  */
576 void sg_host_turn_off(sg_host_t host)
577 {
578   host->turn_off();
579 }
580
581 /** @ingroup m_host_management
582  * @brief Determine if a host is up and running.
583  *
584  * See also #sg_host_turn_on() and #sg_host_turn_off() to switch the host ON and OFF and @ref plugin_host_energy for
585  * more info on DVFS.
586  *
587  * @param host host to test
588  * @return Returns true if the host is up and running, and false if it's currently down
589  */
590 int sg_host_is_on(const_sg_host_t host)
591 {
592   return host->is_on();
593 }
594
595 /** @brief Get the properties of a host */
596 xbt_dict_t sg_host_get_properties(const_sg_host_t host)
597 {
598   const std::unordered_map<std::string, std::string>* props = host->get_properties();
599   xbt_dict_t as_dict                                        = xbt_dict_new_homogeneous(xbt_free_f);
600
601   if (props == nullptr)
602     return nullptr;
603   for (auto const& elm : *props) {
604     xbt_dict_set(as_dict, elm.first.c_str(), xbt_strdup(elm.second.c_str()));
605   }
606   return as_dict;
607 }
608
609 /** @ingroup m_host_management
610  * @brief Returns the value of a given host property
611  *
612  * @param host a host
613  * @param name a property name
614  * @return value of a property (or nullptr if property not set)
615  */
616 const char* sg_host_get_property_value(const_sg_host_t host, const char* name)
617 {
618   return host->get_property(name);
619 }
620
621 void sg_host_set_property_value(sg_host_t host, const char* name, const char* value)
622 {
623   host->set_property(name, value);
624 }
625
626 /**
627  * @brief Find a route between two hosts
628  *
629  * @param from where from
630  * @param to where to
631  * @param links [OUT] where to store the list of links (must exist, cannot be nullptr).
632  */
633 void sg_host_get_route(const_sg_host_t from, const_sg_host_t to, xbt_dynar_t links)
634 {
635   std::vector<simgrid::s4u::Link*> vlinks;
636   from->route_to(to, vlinks, nullptr);
637   for (auto const& link : vlinks)
638     xbt_dynar_push(links, &link);
639 }
640 /**
641  * @brief Find the latency of the route between two hosts
642  *
643  * @param from where from
644  * @param to where to
645  */
646 double sg_host_get_route_latency(const_sg_host_t from, const_sg_host_t to)
647 {
648   std::vector<simgrid::s4u::Link*> vlinks;
649   double res = 0;
650   from->route_to(to, vlinks, &res);
651   return res;
652 }
653 /**
654  * @brief Find the bandwidth of the route between two hosts
655  *
656  * @param from where from
657  * @param to where to
658  */
659 double sg_host_get_route_bandwidth(const_sg_host_t from, const_sg_host_t to)
660 {
661   double min_bandwidth = -1.0;
662
663   std::vector<simgrid::s4u::Link*> vlinks;
664   from->route_to(to, vlinks, nullptr);
665   for (auto const& link : vlinks) {
666     double bandwidth = link->get_bandwidth();
667     if (bandwidth < min_bandwidth || min_bandwidth < 0.0)
668       min_bandwidth = bandwidth;
669   }
670   return min_bandwidth;
671 }
672
673 void sg_host_route(const_sg_host_t from, const_sg_host_t to, xbt_dynar_t links) // XBT_ATTRIB_DEPRECATED_v330
674 {
675   sg_host_get_route(from, to, links);
676 }
677
678 double sg_host_route_latency(const_sg_host_t from, const_sg_host_t to) // XBT_ATTRIB_DEPRECATED_v330
679 {
680   return sg_host_get_route_latency(from, to);
681 }
682
683 double sg_host_route_bandwidth(const_sg_host_t from, const_sg_host_t to) // XBT_ATTRIB_DEPRECATED_v330
684 {
685   return sg_host_get_route_bandwidth(from, to);
686 }
687
688 void sg_host_sendto(sg_host_t from, sg_host_t to, double byte_amount)
689 {
690   simgrid::s4u::Comm::sendto(from, to, byte_amount);
691 }
692
693 /** @brief Displays debugging information about a host */
694 void sg_host_dump(const_sg_host_t host)
695 {
696   XBT_INFO("Displaying host %s", host->get_cname());
697   XBT_INFO("  - speed: %.0f", host->get_speed());
698   XBT_INFO("  - available speed: %.2f", sg_host_get_available_speed(host));
699   const std::unordered_map<std::string, std::string>* props = host->get_properties();
700
701   if (not props->empty()) {
702     XBT_INFO("  - properties:");
703     for (auto const& elm : *props) {
704       XBT_INFO("    %s->%s", elm.first.c_str(), elm.second.c_str());
705     }
706   }
707 }
708
709 /** @brief Return the list of actors attached to a host.
710  *
711  * @param host a host
712  * @param whereto a dynar in which we should push actors living on that host
713  */
714 void sg_host_get_actor_list(const_sg_host_t host, xbt_dynar_t whereto)
715 {
716   auto const actors = host->get_all_actors();
717   for (auto const& actor : actors)
718     xbt_dynar_push(whereto, &actor);
719 }
720
721 sg_host_t sg_host_self()
722 {
723   return SIMIX_is_maestro() ? nullptr : simgrid::kernel::actor::ActorImpl::self()->get_host();
724 }
725
726 /* needs to be public and without simcall for exceptions and logging events */
727 const char* sg_host_self_get_name()
728 {
729   const char* res = "";
730   if (not SIMIX_is_maestro()) {
731     const simgrid::s4u::Host* host = simgrid::kernel::actor::ActorImpl::self()->get_host();
732     if (host != nullptr)
733       res = host->get_cname();
734   }
735   return res;
736 }
737
738 double sg_host_get_load(const_sg_host_t host)
739 {
740   return host->get_load();
741 }
742
743 double sg_host_load(const_sg_host_t host) // XBT_ATTRIB_DEPRECATED_v330
744 {
745   return sg_host_get_load(host);
746 }