X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b87fc0829538ec066fd077e6c30ee6270b8abd78..5bc3597e1513c7b94497ae0ea819e5fa2e28058a:/src/s4u/s4u_host.cpp diff --git a/src/s4u/s4u_host.cpp b/src/s4u/s4u_host.cpp index 5439ce8887..763fe9841c 100644 --- a/src/s4u/s4u_host.cpp +++ b/src/s4u/s4u_host.cpp @@ -157,7 +157,7 @@ void Host::routeTo(Host* dest, std::vector* links, double* latency) { std::vector linkImpls; this->routeTo(dest, &linkImpls, latency); - for (surf::LinkImpl* l : linkImpls) + for (surf::LinkImpl* const& l : linkImpls) links->push_back(&l->piface_); } @@ -168,7 +168,7 @@ void Host::routeTo(Host* dest, std::vector* links, double* late if (XBT_LOG_ISENABLED(surf_route, xbt_log_priority_debug)) { XBT_CDEBUG(surf_route, "Route from '%s' to '%s' (latency: %f):", getCname(), dest->getCname(), (latency == nullptr ? -1 : *latency)); - for (auto link : *links) + for (auto const& link : *links) XBT_CDEBUG(surf_route, "Link %s", link->cname()); } } @@ -248,12 +248,21 @@ std::unordered_map const& Host::getMountedStorages() { if (mounts == nullptr) { mounts = new std::unordered_map(); - for (auto m : this->pimpl_->storage_) { + for (auto const& m : this->pimpl_->storage_) { mounts->insert({m.first, &m.second->piface_}); } } return *mounts; } +void Host::execute(double flops) +{ + Host* host_list[1] = {this}; + double flops_list[1] = {flops}; + smx_activity_t s = simcall_execution_parallel_start(nullptr /*name*/, 1, host_list, flops_list, + nullptr /*comm_sizes */, -1.0, -1 /*timeout*/); + simcall_execution_wait(s); +} + } // namespace simgrid } // namespace s4u