Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c5f4aaf0ff85dc584cf7c1d2084a304ccf206a4c
[simgrid.git] / src / surf / network_cm02.cpp
1 /* Copyright (c) 2013-2023. 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 "src/surf/network_cm02.hpp"
7 #include "simgrid/kernel/routing/NetZoneImpl.hpp"
8 #include "simgrid/s4u/Engine.hpp"
9 #include "simgrid/s4u/Host.hpp"
10 #include "simgrid/sg_config.hpp"
11 #include "src/kernel/EngineImpl.hpp"
12 #include "src/kernel/resource/StandardLinkImpl.hpp"
13 #include "src/kernel/resource/WifiLinkImpl.hpp"
14 #include "src/kernel/resource/profile/Event.hpp"
15 #include "src/surf/surf_interface.hpp"
16
17 #include <algorithm>
18 #include <numeric>
19
20 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(res_network);
21
22 /***********
23  * Options *
24  ***********/
25 static simgrid::config::Flag<std::string> cfg_network_solver("network/solver",
26                                                              "Set linear equations solver used by network model",
27                                                              "maxmin", &simgrid::kernel::lmm::System::validate_solver);
28
29 /******************************************************************************/
30 /* Network model based on optimizations discussed during Pedro Velho's thesis */
31 /******************************************************************************/
32 /* @techreport{VELHO:2011:HAL-00646896:1, */
33 /*      url = {http://hal.inria.fr/hal-00646896/en/}, */
34 /*      title = {{Flow-level network models: have we reached the limits?}}, */
35 /*      author = {Velho, Pedro and Schnorr, Lucas and Casanova, Henri and Legrand, Arnaud}, */
36 /*      type = {Rapport de recherche}, */
37 /*      institution = {INRIA}, */
38 /*      number = {RR-7821}, */
39 /*      year = {2011}, */
40 /*      month = Nov, */
41 /*      pdf = {http://hal.inria.fr/hal-00646896/PDF/rr-validity.pdf}, */
42 /*  } */
43 SIMGRID_REGISTER_NETWORK_MODEL(
44     LV08,
45     "Realistic network analytic model (slow-start modeled by multiplying latency by 13.01, bandwidth by .97; "
46     "bottleneck sharing uses a payload of S=20537 for evaluating RTT). ",
47     []() {
48       auto net_model = std::make_shared<simgrid::kernel::resource::NetworkCm02Model>("Network_LegrandVelho");
49       auto* engine   = simgrid::kernel::EngineImpl::get_instance();
50       engine->add_model(net_model);
51       engine->get_netzone_root()->set_network_model(net_model);
52
53       simgrid::config::set_default<std::string>("network/latency-factor", "13.01");
54       simgrid::config::set_default<std::string>("network/bandwidth-factor", "0.97");
55       simgrid::config::set_default<double>("network/weight-S", 20537);
56     });
57
58 /****************************************************************************/
59 /* The older TCP sharing model designed by Loris Marchal and Henri Casanova */
60 /****************************************************************************/
61 /* @TechReport{      rr-lip2002-40, */
62 /*   author        = {Henri Casanova and Loris Marchal}, */
63 /*   institution   = {LIP}, */
64 /*   title         = {A Network Model for Simulation of Grid Application}, */
65 /*   number        = {2002-40}, */
66 /*   month         = {oct}, */
67 /*   year          = {2002} */
68 /* } */
69 SIMGRID_REGISTER_NETWORK_MODEL(
70     CM02,
71     "Legacy network analytic model (Very similar to LV08, but without corrective factors. The timings of "
72     "small messages are thus poorly modeled).",
73     []() {
74       simgrid::config::set_default<std::string>("network/latency-factor", "1.0");
75       simgrid::config::set_default<std::string>("network/bandwidth-factor", "1.0");
76       simgrid::config::set_default<double>("network/weight-S", 0.0);
77
78       auto net_model = std::make_shared<simgrid::kernel::resource::NetworkCm02Model>("Network_CM02");
79       auto* engine   = simgrid::kernel::EngineImpl::get_instance();
80       engine->add_model(net_model);
81       engine->get_netzone_root()->set_network_model(net_model);
82     });
83
84 /********************************************************************/
85 /* Model based on LV08 and experimental results of MPI ping-pongs   */
86 /********************************************************************/
87 /* @Inproceedings{smpi_ipdps, */
88 /*  author={Pierre-Nicolas Clauss and Mark Stillwell and Stéphane Genaud and Frédéric Suter and Henri Casanova and
89  * Martin Quinson}, */
90 /*  title={Single Node On-Line Simulation of {MPI} Applications with SMPI}, */
91 /*  booktitle={25th IEEE International Parallel and Distributed Processing Symposium (IPDPS'11)}, */
92 /*  address={Anchorage (Alaska) USA}, */
93 /*  month=may, */
94 /*  year={2011} */
95 /*  } */
96 SIMGRID_REGISTER_NETWORK_MODEL(
97     SMPI,
98     "Realistic network model specifically tailored for HPC settings (accurate modeling of slow start with "
99     "correction factors on three intervals: < 1KiB, < 64 KiB, >= 64 KiB)",
100     []() {
101       auto net_model = std::make_shared<simgrid::kernel::resource::NetworkCm02Model>("Network_SMPI");
102       auto* engine   = simgrid::kernel::EngineImpl::get_instance();
103       engine->add_model(net_model);
104       engine->get_netzone_root()->set_network_model(net_model);
105
106       simgrid::config::set_default<double>("network/weight-S", 8775);
107       simgrid::config::set_default<std::string>("network/bandwidth-factor",
108                                                 "65472:0.940694;15424:0.697866;9376:0.58729;5776:1.08739;3484:0.77493;"
109                                                 "1426:0.608902;732:0.341987;257:0.338112;0:0.812084");
110       simgrid::config::set_default<std::string>("network/latency-factor",
111                                                 "65472:11.6436;15424:3.48845;9376:2.59299;5776:2.18796;3484:1.88101;"
112                                                 "1426:1.61075;732:1.9503;257:1.95341;0:2.01467");
113     });
114
115 namespace simgrid::kernel::resource {
116 static simgrid::config::Flag<std::string>
117     network_optim_opt("network/optim", "Optimization algorithm to use for network resources. ", "Lazy",
118
119                       std::map<std::string, std::string, std::less<>>({
120                           {"Lazy", "Lazy action management (partial invalidation in lmm + heap in action remaining)."},
121                           {"Full", "Full update of remaining and variables. Slow but may be useful when debugging."},
122                       }),
123
124                       [](std::string const&) {
125                         xbt_assert(_sg_cfg_init_status < 2,
126                                    "Cannot change the optimization algorithm after the initialization");
127                       });
128
129 NetworkCm02Model::NetworkCm02Model(const std::string& name) : NetworkModel(name)
130 {
131   bool select = config::get_value<bool>("network/maxmin-selective-update");
132
133   if (network_optim_opt == "Lazy") {
134     set_update_algorithm(Model::UpdateAlgo::LAZY);
135     xbt_assert(select || config::is_default("network/maxmin-selective-update"),
136                "You cannot disable network selective update when using the lazy update mechanism");
137     select = true;
138   }
139
140   set_maxmin_system(lmm::System::build(cfg_network_solver.get(), select));
141
142   loopback_.reset(create_link("__loopback__", {config::get_value<double>("network/loopback-bw")}));
143   loopback_->set_sharing_policy(s4u::Link::SharingPolicy::FATPIPE, {});
144   loopback_->set_latency(config::get_value<double>("network/loopback-lat"));
145   loopback_->get_iface()->seal();
146 }
147
148 StandardLinkImpl* NetworkCm02Model::create_link(const std::string& name, const std::vector<double>& bandwidths)
149 {
150   xbt_assert(bandwidths.size() == 1, "Non-WIFI links must use only 1 bandwidth.");
151   auto link = new NetworkCm02Link(name, bandwidths[0], get_maxmin_system());
152   link->set_model(this);
153   return link;
154 }
155
156 StandardLinkImpl* NetworkCm02Model::create_wifi_link(const std::string& name, const std::vector<double>& bandwidths)
157 {
158   auto link = new WifiLinkImpl(name, bandwidths, get_maxmin_system());
159   link->set_model(this);
160   return link;
161 }
162
163 void NetworkCm02Model::update_actions_state_lazy(double now, double /*delta*/)
164 {
165   while (not get_action_heap().empty() && double_equals(get_action_heap().top_date(), now, sg_precision_timing)) {
166     auto* action = static_cast<NetworkCm02Action*>(get_action_heap().pop());
167     XBT_DEBUG("Something happened to action %p", action);
168
169     // if I am wearing a latency hat
170     if (action->get_type() == ActionHeap::Type::latency) {
171       XBT_DEBUG("Latency paid for action %p. Activating", action);
172       get_maxmin_system()->update_variable_penalty(action->get_variable(), action->sharing_penalty_);
173       get_action_heap().remove(action);
174       action->set_last_update();
175
176       // if I am wearing a max_duration or normal hat
177     } else if (action->get_type() == ActionHeap::Type::max_duration || action->get_type() == ActionHeap::Type::normal) {
178       // no need to communicate anymore
179       // assume that flows that reached max_duration have remaining of 0
180       XBT_DEBUG("Action %p finished", action);
181       action->finish(Action::State::FINISHED);
182       get_action_heap().remove(action);
183     }
184   }
185 }
186
187 void NetworkCm02Model::update_actions_state_full(double /*now*/, double delta)
188 {
189   for (auto it = std::begin(*get_started_action_set()); it != std::end(*get_started_action_set());) {
190     auto& action = static_cast<NetworkCm02Action&>(*it);
191     ++it; // increment iterator here since the following calls to action.finish() may invalidate it
192     XBT_DEBUG("Something happened to action %p", &action);
193     if (action.latency_ > 0) {
194       if (action.latency_ > delta) {
195         double_update(&action.latency_, delta, sg_precision_timing);
196       } else {
197         action.latency_ = 0.0;
198       }
199       if (action.latency_ <= 0.0 && not action.is_suspended())
200         get_maxmin_system()->update_variable_penalty(action.get_variable(), action.sharing_penalty_);
201     }
202
203     if (not action.get_variable()->get_number_of_constraint()) {
204       /* There is actually no link used, hence an infinite bandwidth. This happens often when using models like
205        * vivaldi. In such case, just make sure that the action completes immediately.
206        */
207       action.update_remains(action.get_remains());
208     }
209     action.update_remains(action.get_rate() * delta);
210
211     if (action.get_max_duration() != NO_MAX_DURATION)
212       action.update_max_duration(delta);
213
214     if (((action.get_remains() <= 0) && (action.get_variable()->get_penalty() > 0)) ||
215         ((action.get_max_duration() != NO_MAX_DURATION) && (action.get_max_duration() <= 0))) {
216       action.finish(Action::State::FINISHED);
217     }
218   }
219 }
220
221 void NetworkCm02Model::comm_action_expand_constraints(const s4u::Host* src, const s4u::Host* dst,
222                                                       const NetworkCm02Action* action,
223                                                       const std::vector<StandardLinkImpl*>& route,
224                                                       const std::vector<StandardLinkImpl*>& back_route) const
225 {
226   /* expand route links constraints for route and back_route */
227   const WifiLinkImpl* src_wifi_link = nullptr;
228   const WifiLinkImpl* dst_wifi_link = nullptr;
229   if (not route.empty() && route.front()->get_sharing_policy() == s4u::Link::SharingPolicy::WIFI) {
230     src_wifi_link = static_cast<WifiLinkImpl*>(route.front());
231   }
232   if (route.size() > 1 && route.back()->get_sharing_policy() == s4u::Link::SharingPolicy::WIFI) {
233     dst_wifi_link = static_cast<WifiLinkImpl*>(route.back());
234   }
235
236   /* WI-FI links needs special treatment, do it here */
237   if (src_wifi_link != nullptr) {
238     if (src_wifi_link->get_host_rate(src) > 0)
239       get_maxmin_system()->expand(src_wifi_link->get_constraint(), action->get_variable(),
240                                   1.0 / src_wifi_link->get_host_rate(src));
241     else {
242       get_maxmin_system()->update_variable_penalty(action->get_variable(), 0);
243     }
244   }
245
246   if (dst_wifi_link != nullptr) {
247     if (dst_wifi_link->get_host_rate(dst) > 0)
248       get_maxmin_system()->expand(dst_wifi_link->get_constraint(), action->get_variable(),
249                                   1.0 / dst_wifi_link->get_host_rate(dst));
250     else {
251       get_maxmin_system()->update_variable_penalty(action->get_variable(), 0);
252     }
253   }
254
255   for (auto const* link : route) {
256     if (link->get_sharing_policy() != s4u::Link::SharingPolicy::WIFI)
257       get_maxmin_system()->expand(link->get_constraint(), action->get_variable(), 1.0);
258   }
259
260   if (cfg_crosstraffic) {
261     XBT_DEBUG("Crosstraffic active: adding backward flow using 5%% of the available bandwidth");
262     if (dst_wifi_link != nullptr)
263       get_maxmin_system()->expand(dst_wifi_link->get_constraint(), action->get_variable(),
264                                   .05 / dst_wifi_link->get_host_rate(dst));
265     if (src_wifi_link != nullptr)
266       get_maxmin_system()->expand(src_wifi_link->get_constraint(), action->get_variable(),
267                                   .05 / src_wifi_link->get_host_rate(src));
268
269     for (auto const* link : back_route) {
270       if (link->get_sharing_policy() != s4u::Link::SharingPolicy::WIFI)
271         get_maxmin_system()->expand(link->get_constraint(), action->get_variable(), .05);
272     }
273   }
274 }
275
276 NetworkCm02Action* NetworkCm02Model::comm_action_create(s4u::Host* src, s4u::Host* dst, double size,
277                                                         const std::vector<StandardLinkImpl*>& route, bool failed)
278 {
279   WifiLinkImpl* src_wifi_link = nullptr;
280   WifiLinkImpl* dst_wifi_link = nullptr;
281   /* many checks related to Wi-Fi links */
282   if (not route.empty() && route.front()->get_sharing_policy() == s4u::Link::SharingPolicy::WIFI) {
283     src_wifi_link = static_cast<WifiLinkImpl*>(route.front());
284     xbt_assert(src_wifi_link->get_host_rate(src) != -1,
285                "The route from %s to %s begins with the WIFI link %s, but the host %s does not seem attached to that "
286                "WIFI link. Did you call link->set_host_rate()?",
287                src->get_cname(), dst->get_cname(), src_wifi_link->get_cname(), src->get_cname());
288   }
289   if (route.size() > 1 && route.back()->get_sharing_policy() == s4u::Link::SharingPolicy::WIFI) {
290     dst_wifi_link = static_cast<WifiLinkImpl*>(route.back());
291     xbt_assert(dst_wifi_link->get_host_rate(dst) != -1,
292                "The route from %s to %s ends with the WIFI link %s, but the host %s does not seem attached to that "
293                "WIFI link. Did you call link->set_host_rate()?",
294                src->get_cname(), dst->get_cname(), dst_wifi_link->get_cname(), dst->get_cname());
295   }
296   if (route.size() > 2)
297     for (unsigned i = 1; i < route.size() - 1; i++)
298       xbt_assert(route[i]->get_sharing_policy() != s4u::Link::SharingPolicy::WIFI,
299                  "Link '%s' is a WIFI link. It can only be at the beginning or the end of the route from '%s' to '%s', "
300                  "not in between (it is at position %u out of %zu). "
301                  "Did you declare an access_point in your WIFI zones?",
302                  route[i]->get_cname(), src->get_cname(), dst->get_cname(), i + 1, route.size());
303
304   for (auto const* link : route) {
305     if (link->get_sharing_policy() == s4u::Link::SharingPolicy::WIFI) {
306       xbt_assert(link == src_wifi_link || link == dst_wifi_link,
307                  "Wifi links can only occur at the beginning of the route (meaning that it's attached to the src) or "
308                  "at its end (meaning that it's attached to the dst");
309     }
310   }
311
312   /* create action and do some initializations */
313   NetworkCm02Action* action;
314   if (src_wifi_link == nullptr && dst_wifi_link == nullptr)
315     action = new NetworkCm02Action(this, *src, *dst, size, failed);
316   else
317     action = new WifiLinkAction(this, *src, *dst, size, failed, src_wifi_link, dst_wifi_link);
318
319   if (is_update_lazy()) {
320     action->set_last_update();
321   }
322
323   return action;
324 }
325
326 bool NetworkCm02Model::comm_get_route_info(const s4u::Host* src, const s4u::Host* dst, double& latency,
327                                            std::vector<StandardLinkImpl*>& route,
328                                            std::vector<StandardLinkImpl*>& back_route,
329                                            std::unordered_set<kernel::routing::NetZoneImpl*>& netzones) const
330 {
331   kernel::routing::NetZoneImpl::get_global_route_with_netzones(src->get_netpoint(), dst->get_netpoint(), route,
332                                                                &latency, netzones);
333
334   xbt_assert(not route.empty() || latency > 0,
335              "You're trying to send data from %s to %s but there is no connecting path between these two hosts.",
336              src->get_cname(), dst->get_cname());
337
338   bool failed = std::any_of(route.begin(), route.end(), [](const StandardLinkImpl* link) { return not link->is_on(); });
339
340   if (not failed && cfg_crosstraffic) {
341     dst->route_to(src, back_route, nullptr);
342     failed = std::any_of(back_route.begin(), back_route.end(),
343                          [](const StandardLinkImpl* link) { return not link->is_on(); });
344   }
345   return failed;
346 }
347
348 void NetworkCm02Model::comm_action_set_bounds(const s4u::Host* src, const s4u::Host* dst, double size,
349                                               NetworkCm02Action* action, const std::vector<StandardLinkImpl*>& route,
350                                               const std::unordered_set<kernel::routing::NetZoneImpl*>& netzones,
351                                               double rate) const
352 {
353   std::vector<s4u::Link*> s4u_route;
354   std::unordered_set<s4u::NetZone*> s4u_netzones;
355
356   /* transform data to user structures if necessary */
357   if (has_network_factor_cb()) {
358     std::for_each(route.begin(), route.end(),
359                   [&s4u_route](StandardLinkImpl* l) { s4u_route.push_back(l->get_iface()); });
360     std::for_each(netzones.begin(), netzones.end(),
361                   [&s4u_netzones](kernel::routing::NetZoneImpl* n) { s4u_netzones.insert(n->get_iface()); });
362   }
363
364   double bw_factor = get_bandwidth_factor(size, src, dst, s4u_route, s4u_netzones);
365   xbt_assert(bw_factor != 0, "Invalid param for comm %s -> %s. Bandwidth factor cannot be 0", src->get_cname(),
366              dst->get_cname());
367   action->set_rate_factor(bw_factor);
368
369   /* get mininum bandwidth among links in the route and multiply by correct factor
370    * ignore wi-fi links, they're not considered for bw_factors */
371   double bandwidth_bound = -1.0;
372   for (const auto* l : route) {
373     if (l->get_sharing_policy() == s4u::Link::SharingPolicy::WIFI)
374       continue;
375     if (bandwidth_bound == -1.0 || l->get_bandwidth() < bandwidth_bound)
376       bandwidth_bound = l->get_bandwidth();
377   }
378
379   /* increase rate given by user considering the factor, since the actual rate will be
380    * modified by it */
381   rate = rate / bw_factor;
382   /* the bandwidth is determined by the minimum between flow and user's defined rate */
383   if (rate >= 0 && rate < bandwidth_bound)
384     bandwidth_bound = rate;
385   action->set_user_bound(bandwidth_bound);
386
387   action->lat_current_ = action->latency_;
388   action->latency_ *= get_latency_factor(size, src, dst, s4u_route, s4u_netzones);
389 }
390
391 void NetworkCm02Model::comm_action_set_variable(NetworkCm02Action* action, const std::vector<StandardLinkImpl*>& route,
392                                                 const std::vector<StandardLinkImpl*>& back_route, bool streamed)
393 {
394   size_t constraints_per_variable = route.size();
395   constraints_per_variable += back_route.size();
396   if (streamed) {
397     // setting the number of variable for a communication action involved in a I/O streaming operation
398     // requires to reserve some extra space for the constraints related to the source disk (global and read
399     // bandwidth) and destination disk (global and write bandwidth). We thus add 4 constraints.
400     constraints_per_variable += 4;
401   }
402
403   if (action->latency_ > 0) {
404     action->set_variable(get_maxmin_system()->variable_new(action, 0.0, -1.0, constraints_per_variable));
405     if (is_update_lazy()) {
406       // add to the heap the event when the latency is paid
407       double date = action->latency_ + action->get_last_update();
408
409       ActionHeap::Type type = route.empty() ? ActionHeap::Type::normal : ActionHeap::Type::latency;
410
411       XBT_DEBUG("Added action (%p) one latency event at date %f", action, date);
412       get_action_heap().insert(action, date, type);
413     }
414   } else
415     action->set_variable(get_maxmin_system()->variable_new(action, 1.0, -1.0, constraints_per_variable));
416
417   /* after setting the variable, update the bounds depending on user configuration */
418   if (action->get_user_bound() < 0) {
419     get_maxmin_system()->update_variable_bound(
420         action->get_variable(),
421         (action->lat_current_ > 0 && cfg_tcp_gamma > 0) ? cfg_tcp_gamma / (2.0 * action->lat_current_) : -1.0);
422   } else {
423     get_maxmin_system()->update_variable_bound(
424         action->get_variable(), (action->lat_current_ > 0 && cfg_tcp_gamma > 0)
425                                     ? std::min(action->get_user_bound(), cfg_tcp_gamma / (2.0 * action->lat_current_))
426                                     : action->get_user_bound());
427   }
428 }
429
430 Action* NetworkCm02Model::communicate(s4u::Host* src, s4u::Host* dst, double size, double rate, bool streamed)
431 {
432   double latency = 0.0;
433   std::vector<StandardLinkImpl*> back_route;
434   std::vector<StandardLinkImpl*> route;
435   std::unordered_set<kernel::routing::NetZoneImpl*> netzones;
436
437   XBT_IN("(%s,%s,%g,%g)", src->get_cname(), dst->get_cname(), size, rate);
438
439   bool failed = comm_get_route_info(src, dst, latency, route, back_route, netzones);
440
441   NetworkCm02Action* action = comm_action_create(src, dst, size, route, failed);
442   action->sharing_penalty_  = latency;
443   action->latency_          = latency;
444
445   if (cfg_weight_S_parameter > 0) {
446     action->sharing_penalty_ = std::accumulate(route.begin(), route.end(), action->sharing_penalty_,
447                                                [](double total, StandardLinkImpl* const& link) {
448                                                  return total + cfg_weight_S_parameter / link->get_bandwidth();
449                                                });
450   }
451
452   /* setting bandwidth and latency bounds considering route and configured bw/lat factors */
453   comm_action_set_bounds(src, dst, size, action, route, netzones, rate);
454
455   /* creating the maxmin variable associated to this action */
456   comm_action_set_variable(action, route, back_route, streamed);
457
458   /* expand maxmin system to consider this communication in bw constraint for each link in route and back_route */
459   comm_action_expand_constraints(src, dst, action, route, back_route);
460   XBT_OUT();
461
462   return action;
463 }
464
465 /************
466  * Resource *
467  ************/
468 NetworkCm02Link::NetworkCm02Link(const std::string& name, double bandwidth, kernel::lmm::System* system)
469     : StandardLinkImpl(name)
470 {
471   bandwidth_.scale = 1.0;
472   bandwidth_.peak  = bandwidth;
473   this->set_constraint(system->constraint_new(this, bandwidth));
474 }
475
476 void NetworkCm02Link::apply_event(kernel::profile::Event* triggered, double value)
477 {
478   /* Find out which of my iterators was triggered, and react accordingly */
479   if (triggered == bandwidth_.event) {
480     set_bandwidth(value);
481     tmgr_trace_event_unref(&bandwidth_.event);
482
483   } else if (triggered == latency_.event) {
484     set_latency(value);
485     tmgr_trace_event_unref(&latency_.event);
486
487   } else if (triggered == get_state_event()) {
488     if (value > 0)
489       turn_on();
490     else
491       turn_off();
492     unref_state_event();
493   } else {
494     xbt_die("Unknown event!\n");
495   }
496
497   XBT_DEBUG("There was a resource state event, need to update actions related to the constraint (%p)",
498             get_constraint());
499 }
500
501 void NetworkCm02Link::set_bandwidth(double value)
502 {
503   double old_peak = bandwidth_.peak;
504   bandwidth_.peak = value;
505
506   get_model()->get_maxmin_system()->update_constraint_bound(get_constraint(), (bandwidth_.peak * bandwidth_.scale));
507
508   StandardLinkImpl::on_bandwidth_change();
509
510   if (NetworkModel::cfg_weight_S_parameter > 0) {
511     double delta = NetworkModel::cfg_weight_S_parameter / (bandwidth_.peak * bandwidth_.scale) -
512                    NetworkModel::cfg_weight_S_parameter / (old_peak * bandwidth_.scale);
513
514     const kernel::lmm::Element* elem     = nullptr;
515     const kernel::lmm::Element* nextelem = nullptr;
516     size_t numelem                       = 0;
517     while (const auto* var = get_constraint()->get_variable_safe(&elem, &nextelem, &numelem)) {
518       auto* action = static_cast<NetworkCm02Action*>(var->get_id());
519       action->sharing_penalty_ += delta;
520       if (not action->is_suspended())
521         get_model()->get_maxmin_system()->update_variable_penalty(action->get_variable(), action->sharing_penalty_);
522     }
523   }
524 }
525
526 void NetworkCm02Link::set_latency(double value)
527 {
528   latency_check(value);
529
530   double delta                         = value - latency_.peak;
531   const kernel::lmm::Element* elem     = nullptr;
532   const kernel::lmm::Element* nextelem = nullptr;
533   size_t numelem                       = 0;
534
535   latency_.scale = 1.0;
536   latency_.peak  = value;
537
538   while (const auto* var = get_constraint()->get_variable_safe(&elem, &nextelem, &numelem)) {
539     auto* action = static_cast<NetworkCm02Action*>(var->get_id());
540     action->lat_current_ += delta;
541     action->sharing_penalty_ += delta;
542     if (action->get_user_bound() < 0 && NetworkModel::cfg_tcp_gamma > 0)
543       get_model()->get_maxmin_system()->update_variable_bound(action->get_variable(), NetworkModel::cfg_tcp_gamma /
544                                                                                           (2.0 * action->lat_current_));
545     else if (NetworkModel::cfg_tcp_gamma > 0) {
546       get_model()->get_maxmin_system()->update_variable_bound(
547           action->get_variable(),
548           std::min(action->get_user_bound(), NetworkModel::cfg_tcp_gamma / (2.0 * action->lat_current_)));
549     }
550     if (NetworkModel::cfg_tcp_gamma == 0 ||
551         action->get_user_bound() < NetworkModel::cfg_tcp_gamma / (2.0 * action->lat_current_)) {
552       XBT_DEBUG("Flow is limited BYBANDWIDTH");
553     } else {
554       XBT_DEBUG("Flow is limited BYLATENCY, latency of flow is %f", action->lat_current_);
555     }
556
557     if (not action->is_suspended())
558       get_model()->get_maxmin_system()->update_variable_penalty(action->get_variable(), action->sharing_penalty_);
559   }
560 }
561
562 /**********
563  * Action *
564  **********/
565
566 void NetworkCm02Action::update_remains_lazy(double now)
567 {
568   if (not is_running())
569     return;
570
571   double delta = now - get_last_update();
572
573   if (get_remains_no_update() > 0) {
574     XBT_DEBUG("Updating action(%p): remains was %f, last_update was: %f", this, get_remains_no_update(),
575               get_last_update());
576     update_remains(get_last_value() * delta);
577
578     XBT_DEBUG("Updating action(%p): remains is now %f", this, get_remains_no_update());
579   }
580
581   update_max_duration(delta);
582
583   if ((get_remains_no_update() <= 0 && (get_variable()->get_penalty() > 0)) ||
584       ((get_max_duration() != NO_MAX_DURATION) && (get_max_duration() <= 0))) {
585     finish(Action::State::FINISHED);
586     get_model()->get_action_heap().remove(this);
587   }
588
589   set_last_update();
590   set_last_value(get_rate());
591 }
592
593 } // namespace simgrid::kernel::resource