Logo AND Algorithmique Numérique Distribuée

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