Logo AND Algorithmique Numérique Distribuée

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