Logo AND Algorithmique Numérique Distribuée

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