X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3f8e81f0358efeb439da57c1e5516d26868b32b5..HEAD:/src/surf/network_ib.hpp diff --git a/src/surf/network_ib.hpp b/src/surf/network_ib.hpp deleted file mode 100644 index 915c0a7e3b..0000000000 --- a/src/surf/network_ib.hpp +++ /dev/null @@ -1,59 +0,0 @@ -/* 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. */ - -#ifndef SURF_NETWORK_IB_HPP_ -#define SURF_NETWORK_IB_HPP_ - -#include "src/surf/network_cm02.hpp" -#include "xbt/base.h" - -#include -#include - -namespace simgrid::kernel::resource { - -class XBT_PRIVATE IBNode; - -struct XBT_PRIVATE ActiveComm { - IBNode* destination = nullptr; - NetworkAction* action = nullptr; - double init_rate = -1; -}; - -class IBNode { -public: - int id_; - // store related links, to ease computation of the penalties - std::vector active_comms_up_; - // store the number of comms received from each node - std::map active_comms_down_; - // number of comms the node is receiving - int nb_active_comms_down_ = 0; - explicit IBNode(int id) : id_(id){}; -}; - -class XBT_PRIVATE NetworkIBModel : public NetworkCm02Model { - std::unordered_map active_nodes; - std::unordered_map> active_comms; - - double Bs_; - double Be_; - double ys_; - void update_IB_factors_rec(IBNode* root, std::vector& updatedlist) const; - void compute_IB_factors(IBNode* root) const; - -public: - explicit NetworkIBModel(const std::string& name); - NetworkIBModel(const NetworkIBModel&) = delete; - NetworkIBModel& operator=(const NetworkIBModel&) = delete; - void update_IB_factors(NetworkAction* action, IBNode* from, IBNode* to, int remove) const; - - static void IB_create_host_callback(s4u::Host const& host); - static void IB_action_state_changed_callback(NetworkAction& action, Action::State /*previous*/); - static void IB_comm_start_callback(const activity::CommImpl& comm); -}; -} // namespace simgrid::kernel::resource -#endif