X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a3963d5d61399ccf9810d0ce1745432afede2069..3f8e81f0358efeb439da57c1e5516d26868b32b5:/src/surf/network_ib.cpp diff --git a/src/surf/network_ib.cpp b/src/surf/network_ib.cpp index c62ea553cc..60559166e7 100644 --- a/src/surf/network_ib.cpp +++ b/src/surf/network_ib.cpp @@ -1,15 +1,15 @@ -/* Copyright (c) 2014-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2014-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "src/surf/network_ib.hpp" -#include "simgrid/kernel/routing/NetPoint.hpp" +#include + #include "simgrid/sg_config.hpp" #include "src/kernel/EngineImpl.hpp" +#include "src/kernel/activity/CommImpl.hpp" #include "src/surf/HostImpl.hpp" -#include "src/surf/xml/platf.hpp" -#include "surf/surf.hpp" +#include "src/surf/network_ib.hpp" #include #include @@ -35,24 +35,23 @@ void surf_network_model_init_IB() using simgrid::kernel::resource::NetworkIBModel; auto net_model = std::make_shared("Network_IB"); - simgrid::kernel::EngineImpl::get_instance()->add_model(net_model); - simgrid::s4u::Engine::get_instance()->get_netzone_root()->get_impl()->set_network_model(net_model); + auto* engine = simgrid::kernel::EngineImpl::get_instance(); + engine->add_model(net_model); + engine->get_netzone_root()->set_network_model(net_model); - simgrid::s4u::Link::on_communication_state_change.connect(NetworkIBModel::IB_action_state_changed_callback); - simgrid::s4u::Link::on_communicate.connect(NetworkIBModel::IB_action_init_callback); - simgrid::s4u::Host::on_creation.connect(NetworkIBModel::IB_create_host_callback); + simgrid::s4u::Link::on_communication_state_change_cb(NetworkIBModel::IB_action_state_changed_callback); + simgrid::kernel::activity::CommImpl::on_start.connect(NetworkIBModel::IB_comm_start_callback); + simgrid::s4u::Host::on_creation_cb(NetworkIBModel::IB_create_host_callback); simgrid::config::set_default("network/weight-S", 8775); } -namespace simgrid { -namespace kernel { -namespace resource { +namespace simgrid::kernel::resource { void NetworkIBModel::IB_create_host_callback(s4u::Host const& host) { static int id = 0; auto* ibModel = static_cast(host.get_netpoint()->get_englobing_zone()->get_network_model().get()); - ibModel->active_nodes.emplace(host.get_name(), IBNode(id)); + ibModel->active_nodes.try_emplace(host.get_name(), id); id++; } @@ -60,32 +59,33 @@ void NetworkIBModel::IB_action_state_changed_callback(NetworkAction& action, Act { if (action.get_state() != Action::State::FINISHED) return; - auto* ibModel = static_cast(action.get_model()); - std::pair pair = ibModel->active_comms[&action]; + auto* ibModel = static_cast(action.get_model()); + auto [src, dst] = ibModel->active_comms[&action]; XBT_DEBUG("IB callback - action %p finished", &action); - ibModel->update_IB_factors(&action, pair.first, pair.second, 1); + ibModel->update_IB_factors(&action, src, dst, 1); ibModel->active_comms.erase(&action); } -void NetworkIBModel::IB_action_init_callback(NetworkAction& action) +void NetworkIBModel::IB_comm_start_callback(const activity::CommImpl& comm) { - auto* ibModel = static_cast(action.get_model()); - auto* act_src = &ibModel->active_nodes.at(action.get_src().get_name()); - auto* act_dst = &ibModel->active_nodes.at(action.get_dst().get_name()); + auto* action = static_cast(comm.surf_action_); + auto* ibModel = static_cast(action->get_model()); + auto* act_src = &ibModel->active_nodes.at(action->get_src().get_name()); + auto* act_dst = &ibModel->active_nodes.at(action->get_dst().get_name()); - ibModel->active_comms[&action] = std::make_pair(act_src, act_dst); - ibModel->update_IB_factors(&action, act_src, act_dst, 0); + ibModel->active_comms[action] = std::make_pair(act_src, act_dst); + ibModel->update_IB_factors(action, act_src, act_dst, 0); } -NetworkIBModel::NetworkIBModel(const std::string& name) : NetworkSmpiModel(name) +NetworkIBModel::NetworkIBModel(const std::string& name) : NetworkCm02Model(name) { std::string IB_factors_string = config::get_value("smpi/IB-penalty-factors"); std::vector radical_elements; boost::split(radical_elements, IB_factors_string, boost::is_any_of(";")); - surf_parse_assert(radical_elements.size() == 3, "smpi/IB-penalty-factors should be provided and contain 3 " - "elements, semi-colon separated. Example: 0.965;0.925;1.35"); + xbt_assert(radical_elements.size() == 3, "smpi/IB-penalty-factors should be provided and contain 3 " + "elements, semi-colon separated. Example: 0.965;0.925;1.35"); try { Be_ = std::stod(radical_elements.front()); @@ -127,8 +127,7 @@ void NetworkIBModel::compute_IB_factors(IBNode* root) const for (ActiveComm* comm : root->active_comms_up_) { // compute inbound penalty double my_penalty_in = 1.0; - int nb_comms = comm->destination->nb_active_comms_down_; // total number of incoming comms - if (nb_comms != 1) + if (comm->destination->nb_active_comms_down_ != 1) // total number of incoming comms my_penalty_in = (comm->destination->active_comms_down_)[root] // number of comm sent to dest by root node * Be_ * comm->destination->active_comms_down_.size(); // number of different nodes sending to dest @@ -163,9 +162,9 @@ void NetworkIBModel::update_IB_factors_rec(IBNode* root, std::vector& upda if (not updatedlist[comm->destination->id_]) update_IB_factors_rec(comm->destination, updatedlist); } - for (std::map::value_type const& comm : root->active_comms_down_) { - if (not updatedlist[comm.first->id_]) - update_IB_factors_rec(comm.first, updatedlist); + for (auto const& [comm, _] : root->active_comms_down_) { + if (not updatedlist[comm->id_]) + update_IB_factors_rec(comm, updatedlist); } } } @@ -182,9 +181,9 @@ void NetworkIBModel::update_IB_factors(NetworkAction* action, IBNode* from, IBNo to->active_comms_down_[from] -= 1; to->nb_active_comms_down_--; - auto it = std::find_if(begin(from->active_comms_up_), end(from->active_comms_up_), - [action](const ActiveComm* comm) { return comm->action == action; }); - if (it != std::end(from->active_comms_up_)) { + if (auto it = std::find_if(begin(from->active_comms_up_), end(from->active_comms_up_), + [action](const ActiveComm* comm) { return comm->action == action; }); + it != std::end(from->active_comms_up_)) { delete *it; from->active_comms_up_.erase(it); } @@ -204,6 +203,4 @@ void NetworkIBModel::update_IB_factors(NetworkAction* action, IBNode* from, IBNo update_IB_factors_rec(from, updated); XBT_DEBUG("IB - Finished updating %d", from->id_); } -} // namespace resource -} // namespace kernel -} // namespace simgrid +} // namespace simgrid::kernel::resource