Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Parameters 'network/latency-factor' and bandwidth-factor are now strings parsed manually
[simgrid.git] / src / kernel / resource / NetworkModel.cpp
1 /* Copyright (c) 2013-2022. 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/s4u/Engine.hpp>
7
8 #include "simgrid/sg_config.hpp"
9 #include "src/kernel/resource/NetworkModel.hpp"
10 #include "src/kernel/resource/profile/Profile.hpp"
11 #include "src/surf/surf_interface.hpp"
12
13 #include <numeric>
14
15 #ifndef NETWORK_INTERFACE_CPP_
16 #define NETWORK_INTERFACE_CPP_
17
18 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(res_network, ker_resource, "Network resources, that fuel communications");
19
20 /*********
21  * Model *
22  *********/
23
24 namespace simgrid::kernel::resource {
25 double NetworkModel::cfg_latency_factor   = 1.0; // default value
26 double NetworkModel::cfg_bandwidth_factor = 1.0; // default value
27
28 static config::Flag<std::string> cfg_latency_factor_str(
29     "network/latency-factor",
30     "Correction factor to apply to the provided latency (default value overridden by network model)", "1.0",
31     [](std::string str) {
32       NetworkModel::cfg_latency_factor =
33           xbt_str_parse_double(str.c_str(), "The value of 'network/latency-factor' is not a double");
34     });
35 static config::Flag<std::string> cfg_bandwidth_factor_str(
36     "network/bandwidth-factor",
37     "Correction factor to apply to the provided bandwidth (default value overridden by network model)", "1.0",
38     [](std::string str) {
39       NetworkModel::cfg_bandwidth_factor =
40           xbt_str_parse_double(str.c_str(), "The value of 'network/bandwidth-factor' is not a double");
41     });
42
43 /** @brief Command-line option 'network/TCP-gamma' -- see @ref options_model_network_gamma */
44 config::Flag<double> NetworkModel::cfg_tcp_gamma(
45     "network/TCP-gamma",
46     "Size of the biggest TCP window (cat /proc/sys/net/ipv4/tcp_[rw]mem for recv/send window; "
47     "Use the last given value, which is the max window size)",
48     4194304.0);
49
50 /** @brief Command-line option 'network/crosstraffic' -- see @ref options_model_network_crosstraffic */
51 config::Flag<bool> NetworkModel::cfg_crosstraffic(
52     "network/crosstraffic",
53     "Activate the interferences between uploads and downloads for fluid max-min models (LV08, CM02)", "yes");
54
55 config::Flag<double> NetworkModel::cfg_weight_S_parameter(
56     "network/weight-S",
57     "Correction factor to apply to the weight of competing streams (default value set by network model)", 0.0);
58
59 NetworkModel::~NetworkModel() = default;
60
61 double NetworkModel::next_occurring_event_full(double now)
62 {
63   double minRes = Model::next_occurring_event_full(now);
64
65   for (Action const& action : *get_started_action_set()) {
66     const auto& net_action = static_cast<const NetworkAction&>(action);
67     if (net_action.latency_ > 0)
68       minRes = (minRes < 0) ? net_action.latency_ : std::min(minRes, net_action.latency_);
69   }
70
71   XBT_DEBUG("Min of share resources %f", minRes);
72
73   return minRes;
74 }
75
76 /**********
77  * Action *
78  **********/
79
80 void NetworkAction::set_state(Action::State state)
81 {
82   Action::State previous = get_state();
83   if (previous != state) { // Trigger only if the state changed
84     Action::set_state(state);
85     s4u::Link::on_communication_state_change(*this, previous);
86   }
87 }
88
89 /** @brief returns a list of all Links that this action is using */
90 std::list<StandardLinkImpl*> NetworkAction::get_links() const
91 {
92   std::list<StandardLinkImpl*> retlist;
93   int llen = get_variable()->get_number_of_constraint();
94
95   for (int i = 0; i < llen; i++) {
96     /* Beware of composite actions: ptasks put links and cpus together */
97     if (auto* link = dynamic_cast<StandardLinkImpl*>(get_variable()->get_constraint(i)->get_id()))
98       retlist.push_back(link);
99   }
100
101   return retlist;
102 }
103
104 static void add_latency(const std::vector<StandardLinkImpl*>& links, double* latency)
105 {
106   if (latency)
107     *latency = std::accumulate(begin(links), end(links), *latency,
108                                [](double lat, const auto* link) { return lat + link->get_latency(); });
109 }
110
111 void add_link_latency(std::vector<StandardLinkImpl*>& result, StandardLinkImpl* link, double* latency)
112 {
113   result.push_back(link);
114   if (latency)
115     *latency += link->get_latency();
116 }
117
118 void add_link_latency(std::vector<StandardLinkImpl*>& result, const std::vector<StandardLinkImpl*>& links,
119                       double* latency)
120 {
121   result.insert(result.end(), begin(links), end(links));
122   add_latency(links, latency);
123 }
124
125 void insert_link_latency(std::vector<StandardLinkImpl*>& result, const std::vector<StandardLinkImpl*>& links,
126                          double* latency)
127 {
128   result.insert(result.begin(), rbegin(links), rend(links));
129   add_latency(links, latency);
130 }
131
132 } // namespace simgrid::kernel::resource
133
134 #endif /* NETWORK_INTERFACE_CPP_ */