Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
500884e76469a1fdb8c108319e964a8bb98f95d3
[simgrid.git] / src / kernel / lmm / lagrange.cpp
1 /* Copyright (c) 2007-2017. 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 /*
7  * Modeling the proportional fairness using the Lagrangian Optimization Approach. For a detailed description see:
8  * "ssh://username@scm.gforge.inria.fr/svn/memo/people/pvelho/lagrange/ppf.ps".
9  */
10 #include "src/kernel/lmm/maxmin.hpp"
11 #include "xbt/log.h"
12 #include "xbt/sysdep.h"
13
14 #include <algorithm>
15 #include <cstdlib>
16 #ifndef MATH
17 #include <cmath>
18 #endif
19
20 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_lagrange, surf, "Logging specific to SURF (lagrange)");
21 XBT_LOG_NEW_SUBCATEGORY(surf_lagrange_dichotomy, surf_lagrange, "Logging specific to SURF (lagrange dichotomy)");
22
23 #define SHOW_EXPR(expr) XBT_CDEBUG(surf_lagrange, #expr " = %g", expr);
24 #define VEGAS_SCALING 1000.0
25 #define RENO_SCALING 1.0
26 #define RENO2_SCALING 1.0
27
28 namespace simgrid {
29 namespace kernel {
30 namespace lmm {
31
32 double (*func_f_def)(const s_lmm_variable_t&, double);
33 double (*func_fp_def)(const s_lmm_variable_t&, double);
34 double (*func_fpi_def)(const s_lmm_variable_t&, double);
35
36 /*
37  * Local prototypes to implement the Lagrangian optimization with optimal step, also called dichotomy.
38  */
39 // solves the proportional fairness using a Lagrangian optimization with dichotomy step
40 void lagrange_solve(lmm_system_t sys);
41 // computes the value of the dichotomy using a initial values, init, with a specific variable or constraint
42 static double dichotomy(double init, double diff(double, const s_lmm_constraint_t&), const s_lmm_constraint_t& cnst,
43                         double min_error);
44 // computes the value of the differential of constraint cnst applied to lambda
45 static double partial_diff_lambda(double lambda, const s_lmm_constraint_t& cnst);
46
47 template <class CnstList, class VarList>
48 static int __check_feasible(const CnstList& cnst_list, const VarList& var_list, int warn)
49 {
50   for (s_lmm_constraint_t const& cnst : cnst_list) {
51     double tmp = 0;
52     for (s_lmm_element_t const& elem : cnst.enabled_element_set) {
53       lmm_variable_t var = elem.variable;
54       xbt_assert(var->sharing_weight > 0);
55       tmp += var->value;
56     }
57
58     if (double_positive(tmp - cnst.bound, sg_maxmin_precision)) {
59       if (warn)
60         XBT_WARN("The link (%p) is over-used. Expected less than %f and got %f", &cnst, cnst.bound, tmp);
61       return 0;
62     }
63     XBT_DEBUG("Checking feasability for constraint (%p): sat = %f, lambda = %f ", &cnst, tmp - cnst.bound, cnst.lambda);
64   }
65
66   for (s_lmm_variable_t const& var : var_list) {
67     if (not var.sharing_weight)
68       break;
69     if (var.bound < 0)
70       continue;
71     XBT_DEBUG("Checking feasability for variable (%p): sat = %f mu = %f", &var, var.value - var.bound, var.mu);
72
73     if (double_positive(var.value - var.bound, sg_maxmin_precision)) {
74       if (warn)
75         XBT_WARN("The variable (%p) is too large. Expected less than %f and got %f", &var, var.bound, var.value);
76       return 0;
77     }
78   }
79   return 1;
80 }
81
82 static double new_value(const s_lmm_variable_t& var)
83 {
84   double tmp = 0;
85
86   for (s_lmm_element_t const& elem : var.cnsts) {
87     tmp += elem.constraint->lambda;
88   }
89   if (var.bound > 0)
90     tmp += var.mu;
91   XBT_DEBUG("\t Working on var (%p). cost = %e; Weight = %e", &var, tmp, var.sharing_weight);
92   // uses the partial differential inverse function
93   return var.func_fpi(var, tmp);
94 }
95
96 static double new_mu(const s_lmm_variable_t& var)
97 {
98   double mu_i    = 0.0;
99   double sigma_i = 0.0;
100
101   for (s_lmm_element_t const& elem : var.cnsts) {
102     sigma_i += elem.constraint->lambda;
103   }
104   mu_i = var.func_fp(var, var.bound) - sigma_i;
105   if (mu_i < 0.0)
106     return 0.0;
107   return mu_i;
108 }
109
110 template <class VarList, class CnstList>
111 static double dual_objective(const VarList& var_list, const CnstList& cnst_list)
112 {
113   double obj = 0.0;
114
115   for (s_lmm_variable_t const& var : var_list) {
116     double sigma_i = 0.0;
117
118     if (not var.sharing_weight)
119       break;
120
121     for (s_lmm_element_t const& elem : var.cnsts)
122       sigma_i += elem.constraint->lambda;
123
124     if (var.bound > 0)
125       sigma_i += var.mu;
126
127     XBT_DEBUG("var %p : sigma_i = %1.20f", &var, sigma_i);
128
129     obj += var.func_f(var, var.func_fpi(var, sigma_i)) - sigma_i * var.func_fpi(var, sigma_i);
130
131     if (var.bound > 0)
132       obj += var.mu * var.bound;
133   }
134
135   for (s_lmm_constraint_t const& cnst : cnst_list)
136     obj += cnst.lambda * cnst.bound;
137
138   return obj;
139 }
140
141 void lagrange_solve(lmm_system_t sys)
142 {
143   /* Lagrange Variables. */
144   int max_iterations       = 100;
145   double epsilon_min_error = 0.00001; /* this is the precision on the objective function so it's none of the
146                                          configurable values and this value is the legacy one */
147   double dichotomy_min_error  = 1e-14;
148   double overall_modification = 1;
149
150   XBT_DEBUG("Iterative method configuration snapshot =====>");
151   XBT_DEBUG("#### Maximum number of iterations        : %d", max_iterations);
152   XBT_DEBUG("#### Minimum error tolerated             : %e", epsilon_min_error);
153   XBT_DEBUG("#### Minimum error tolerated (dichotomy) : %e", dichotomy_min_error);
154
155   if (XBT_LOG_ISENABLED(surf_lagrange, xbt_log_priority_debug)) {
156     sys->print();
157   }
158
159   if (not sys->modified)
160     return;
161
162   /* Initialize lambda. */
163   auto& cnst_list = sys->active_constraint_set;
164   for (s_lmm_constraint_t& cnst : cnst_list) {
165     cnst.lambda     = 1.0;
166     cnst.new_lambda = 2.0;
167     XBT_DEBUG("#### cnst(%p)->lambda :  %e", &cnst, cnst.lambda);
168   }
169
170   /*
171    * Initialize the var list variable with only the active variables.
172    * Associate an index in the swag variables. Initialize mu.
173    */
174   auto& var_list = sys->variable_set;
175   for (s_lmm_variable_t& var : var_list) {
176     if (not var.sharing_weight)
177       var.value = 0.0;
178     else {
179       if (var.bound < 0.0) {
180         XBT_DEBUG("#### NOTE var(%p) is a boundless variable", &var);
181         var.mu = -1.0;
182       } else {
183         var.mu     = 1.0;
184         var.new_mu = 2.0;
185       }
186       var.value = new_value(var);
187       XBT_DEBUG("#### var(%p) ->weight :  %e", &var, var.sharing_weight);
188       XBT_DEBUG("#### var(%p) ->mu :  %e", &var, var.mu);
189       XBT_DEBUG("#### var(%p) ->weight: %e", &var, var.sharing_weight);
190       XBT_DEBUG("#### var(%p) ->bound: %e", &var, var.bound);
191       auto weighted = std::find_if(begin(var.cnsts), end(var.cnsts),
192                                    [](s_lmm_element_t const& x) { return x.consumption_weight != 0.0; });
193       if (weighted == end(var.cnsts))
194         var.value = 1.0;
195     }
196   }
197
198   /*  Compute dual objective. */
199   double obj = dual_objective(var_list, cnst_list);
200
201   /* While doesn't reach a minimum error or a number maximum of iterations. */
202   int iteration = 0;
203   while (overall_modification > epsilon_min_error && iteration < max_iterations) {
204     iteration++;
205     XBT_DEBUG("************** ITERATION %d **************", iteration);
206     XBT_DEBUG("-------------- Gradient Descent ----------");
207
208     /* Improve the value of mu_i */
209     for (s_lmm_variable_t& var : var_list) {
210       if (var.sharing_weight && var.bound >= 0) {
211         XBT_DEBUG("Working on var (%p)", &var);
212         var.new_mu = new_mu(var);
213         XBT_DEBUG("Updating mu : var->mu (%p) : %1.20f -> %1.20f", &var, var.mu, var.new_mu);
214         var.mu = var.new_mu;
215
216         double new_obj = dual_objective(var_list, cnst_list);
217         XBT_DEBUG("Improvement for Objective (%g -> %g) : %g", obj, new_obj, obj - new_obj);
218         xbt_assert(obj - new_obj >= -epsilon_min_error, "Our gradient sucks! (%1.20f)", obj - new_obj);
219         obj = new_obj;
220       }
221     }
222
223     /* Improve the value of lambda_i */
224     for (s_lmm_constraint_t& cnst : cnst_list) {
225       XBT_DEBUG("Working on cnst (%p)", &cnst);
226       cnst.new_lambda = dichotomy(cnst.lambda, partial_diff_lambda, cnst, dichotomy_min_error);
227       XBT_DEBUG("Updating lambda : cnst->lambda (%p) : %1.20f -> %1.20f", &cnst, cnst.lambda, cnst.new_lambda);
228       cnst.lambda = cnst.new_lambda;
229
230       double new_obj = dual_objective(var_list, cnst_list);
231       XBT_DEBUG("Improvement for Objective (%g -> %g) : %g", obj, new_obj, obj - new_obj);
232       xbt_assert(obj - new_obj >= -epsilon_min_error, "Our gradient sucks! (%1.20f)", obj - new_obj);
233       obj = new_obj;
234     }
235
236     /* Now computes the values of each variable (\rho) based on the values of \lambda and \mu. */
237     XBT_DEBUG("-------------- Check convergence ----------");
238     overall_modification = 0;
239     for (s_lmm_variable_t& var : var_list) {
240       if (var.sharing_weight <= 0)
241         var.value = 0.0;
242       else {
243         double tmp = new_value(var);
244
245         overall_modification = std::max(overall_modification, fabs(var.value - tmp));
246
247         var.value = tmp;
248         XBT_DEBUG("New value of var (%p)  = %e, overall_modification = %e", &var, var.value, overall_modification);
249       }
250     }
251
252     XBT_DEBUG("-------------- Check feasability ----------");
253     if (not __check_feasible(cnst_list, var_list, 0))
254       overall_modification = 1.0;
255     XBT_DEBUG("Iteration %d: overall_modification : %f", iteration, overall_modification);
256   }
257
258   __check_feasible(cnst_list, var_list, 1);
259
260   if (overall_modification <= epsilon_min_error) {
261     XBT_DEBUG("The method converges in %d iterations.", iteration);
262   }
263   if (iteration >= max_iterations) {
264     XBT_DEBUG("Method reach %d iterations, which is the maximum number of iterations allowed.", iteration);
265   }
266
267   if (XBT_LOG_ISENABLED(surf_lagrange, xbt_log_priority_debug)) {
268     sys->print();
269   }
270 }
271
272 /*
273  * Returns a double value corresponding to the result of a dichotomy process with respect to a given
274  * variable/constraint (\mu in the case of a variable or \lambda in case of a constraint) and a initial value init.
275  *
276  * @param init initial value for \mu or \lambda
277  * @param diff a function that computes the differential of with respect a \mu or \lambda
278  * @param var_cnst a pointer to a variable or constraint
279  * @param min_erro a minimum error tolerated
280  *
281  * @return a double corresponding to the result of the dichotomy process
282  */
283 static double dichotomy(double init, double diff(double, const s_lmm_constraint_t&), const s_lmm_constraint_t& cnst,
284                         double min_error)
285 {
286   double min = init;
287   double max = init;
288   double overall_error;
289   double middle;
290   double middle_diff;
291   double diff_0 = 0.0;
292
293   XBT_IN();
294
295   if (fabs(init) < 1e-20) {
296     min = 0.5;
297     max = 0.5;
298   }
299
300   overall_error = 1;
301
302   diff_0 = diff(1e-16, cnst);
303   if (diff_0 >= 0) {
304     XBT_CDEBUG(surf_lagrange_dichotomy, "returning 0.0 (diff = %e)", diff_0);
305     XBT_OUT();
306     return 0.0;
307   }
308
309   double min_diff = diff(min, cnst);
310   double max_diff = diff(max, cnst);
311
312   while (overall_error > min_error) {
313     XBT_CDEBUG(surf_lagrange_dichotomy, "[min, max] = [%1.20f, %1.20f] || diffmin, diffmax = %1.20f, %1.20f", min, max,
314                min_diff, max_diff);
315
316     if (min_diff > 0 && max_diff > 0) {
317       if (min == max) {
318         XBT_CDEBUG(surf_lagrange_dichotomy, "Decreasing min");
319         min      = min / 2.0;
320         min_diff = diff(min, cnst);
321       } else {
322         XBT_CDEBUG(surf_lagrange_dichotomy, "Decreasing max");
323         max      = min;
324         max_diff = min_diff;
325       }
326     } else if (min_diff < 0 && max_diff < 0) {
327       if (min == max) {
328         XBT_CDEBUG(surf_lagrange_dichotomy, "Increasing max");
329         max      = max * 2.0;
330         max_diff = diff(max, cnst);
331       } else {
332         XBT_CDEBUG(surf_lagrange_dichotomy, "Increasing min");
333         min      = max;
334         min_diff = max_diff;
335       }
336     } else if (min_diff < 0 && max_diff > 0) {
337       middle = (max + min) / 2.0;
338       XBT_CDEBUG(surf_lagrange_dichotomy, "Trying (max+min)/2 : %1.20f", middle);
339
340       if ((fabs(min - middle) < 1e-20) || (fabs(max - middle) < 1e-20)) {
341         XBT_CWARN(surf_lagrange_dichotomy,
342                   "Cannot improve the convergence! min=max=middle=%1.20f, diff = %1.20f."
343                   " Reaching the 'double' limits. Maybe scaling your function would help ([%1.20f,%1.20f]).",
344                   min, max - min, min_diff, max_diff);
345         break;
346       }
347       middle_diff = diff(middle, cnst);
348
349       if (middle_diff < 0) {
350         XBT_CDEBUG(surf_lagrange_dichotomy, "Increasing min");
351         min           = middle;
352         overall_error = max_diff - middle_diff;
353         min_diff      = middle_diff;
354       } else if (middle_diff > 0) {
355         XBT_CDEBUG(surf_lagrange_dichotomy, "Decreasing max");
356         max           = middle;
357         overall_error = max_diff - middle_diff;
358         max_diff      = middle_diff;
359       } else {
360         overall_error = 0;
361       }
362     } else if (fabs(min_diff) < 1e-20) {
363       max           = min;
364       overall_error = 0;
365     } else if (fabs(max_diff) < 1e-20) {
366       min           = max;
367       overall_error = 0;
368     } else if (min_diff > 0 && max_diff < 0) {
369       XBT_CWARN(surf_lagrange_dichotomy, "The impossible happened, partial_diff(min) > 0 && partial_diff(max) < 0");
370       xbt_abort();
371     } else {
372       XBT_CWARN(surf_lagrange_dichotomy,
373                 "diffmin (%1.20f) or diffmax (%1.20f) are something I don't know, taking no action.", min_diff,
374                 max_diff);
375       xbt_abort();
376     }
377   }
378
379   XBT_CDEBUG(surf_lagrange_dichotomy, "returning %e", (min + max) / 2.0);
380   XBT_OUT();
381   return ((min + max) / 2.0);
382 }
383
384 static double partial_diff_lambda(double lambda, const s_lmm_constraint_t& cnst)
385 {
386   double diff           = 0.0;
387
388   XBT_IN();
389
390   XBT_CDEBUG(surf_lagrange_dichotomy, "Computing diff of cnst (%p)", &cnst);
391
392   for (s_lmm_element_t const& elem : cnst.enabled_element_set) {
393     s_lmm_variable_t& var = *elem.variable;
394     xbt_assert(var.sharing_weight > 0);
395     XBT_CDEBUG(surf_lagrange_dichotomy, "Computing sigma_i for var (%p)", &var);
396     // Initialize the summation variable
397     double sigma_i = 0.0;
398
399     // Compute sigma_i
400     for (s_lmm_element_t const& elem2 : var.cnsts)
401       sigma_i += elem2.constraint->lambda;
402
403     // add mu_i if this flow has a RTT constraint associated
404     if (var.bound > 0)
405       sigma_i += var.mu;
406
407     // replace value of cnst.lambda by the value of parameter lambda
408     sigma_i = (sigma_i - cnst.lambda) + lambda;
409
410     diff += -var.func_fpi(var, sigma_i);
411   }
412
413   diff += cnst.bound;
414
415   XBT_CDEBUG(surf_lagrange_dichotomy, "d D/d lambda for cnst (%p) at %1.20f = %1.20f", &cnst, lambda, diff);
416   XBT_OUT();
417   return diff;
418 }
419
420 /** \brief Attribute the value bound to var->bound.
421  *
422  *  \param func_fpi  inverse of the partial differential of f (f prime inverse, (f')^{-1})
423  *
424  *  Set default functions to the ones passed as parameters. This is a polymorphism in C pure, enjoy the roots of
425  *  programming.
426  *
427  */
428 void lmm_set_default_protocol_function(double (*func_f)(const s_lmm_variable_t& var, double x),
429                                        double (*func_fp)(const s_lmm_variable_t& var, double x),
430                                        double (*func_fpi)(const s_lmm_variable_t& var, double x))
431 {
432   func_f_def   = func_f;
433   func_fp_def  = func_fp;
434   func_fpi_def = func_fpi;
435 }
436
437 /**************** Vegas and Reno functions *************************/
438 /* NOTE for Reno: all functions consider the network coefficient (alpha) equal to 1. */
439
440 /*
441  * For Vegas: $f(x) = \alpha D_f\ln(x)$
442  * Therefore: $fp(x) = \frac{\alpha D_f}{x}$
443  * Therefore: $fpi(x) = \frac{\alpha D_f}{x}$
444  */
445 double func_vegas_f(const s_lmm_variable_t& var, double x)
446 {
447   xbt_assert(x > 0.0, "Don't call me with stupid values! (%1.20f)", x);
448   return VEGAS_SCALING * var.sharing_weight * log(x);
449 }
450
451 double func_vegas_fp(const s_lmm_variable_t& var, double x)
452 {
453   xbt_assert(x > 0.0, "Don't call me with stupid values! (%1.20f)", x);
454   return VEGAS_SCALING * var.sharing_weight / x;
455 }
456
457 double func_vegas_fpi(const s_lmm_variable_t& var, double x)
458 {
459   xbt_assert(x > 0.0, "Don't call me with stupid values! (%1.20f)", x);
460   return var.sharing_weight / (x / VEGAS_SCALING);
461 }
462
463 /*
464  * For Reno:  $f(x) = \frac{\sqrt{3/2}}{D_f} atan(\sqrt{3/2}D_f x)$
465  * Therefore: $fp(x)  = \frac{3}{3 D_f^2 x^2+2}$
466  * Therefore: $fpi(x)  = \sqrt{\frac{1}{{D_f}^2 x} - \frac{2}{3{D_f}^2}}$
467  */
468 double func_reno_f(const s_lmm_variable_t& var, double x)
469 {
470   xbt_assert(var.sharing_weight > 0.0, "Don't call me with stupid values!");
471
472   return RENO_SCALING * sqrt(3.0 / 2.0) / var.sharing_weight * atan(sqrt(3.0 / 2.0) * var.sharing_weight * x);
473 }
474
475 double func_reno_fp(const s_lmm_variable_t& var, double x)
476 {
477   return RENO_SCALING * 3.0 / (3.0 * var.sharing_weight * var.sharing_weight * x * x + 2.0);
478 }
479
480 double func_reno_fpi(const s_lmm_variable_t& var, double x)
481 {
482   double res_fpi;
483
484   xbt_assert(var.sharing_weight > 0.0, "Don't call me with stupid values!");
485   xbt_assert(x > 0.0, "Don't call me with stupid values!");
486
487   res_fpi = 1.0 / (var.sharing_weight * var.sharing_weight * (x / RENO_SCALING)) -
488             2.0 / (3.0 * var.sharing_weight * var.sharing_weight);
489   if (res_fpi <= 0.0)
490     return 0.0;
491   return sqrt(res_fpi);
492 }
493
494 /* Implementing new Reno-2
495  * For Reno-2:  $f(x)   = U_f(x_f) = \frac{{2}{D_f}}*ln(2+x*D_f)$
496  * Therefore:   $fp(x)  = 2/(Weight*x + 2)
497  * Therefore:   $fpi(x) = (2*Weight)/x - 4
498  */
499 double func_reno2_f(const s_lmm_variable_t& var, double x)
500 {
501   xbt_assert(var.sharing_weight > 0.0, "Don't call me with stupid values!");
502   return RENO2_SCALING * (1.0 / var.sharing_weight) *
503          log((x * var.sharing_weight) / (2.0 * x * var.sharing_weight + 3.0));
504 }
505
506 double func_reno2_fp(const s_lmm_variable_t& var, double x)
507 {
508   return RENO2_SCALING * 3.0 / (var.sharing_weight * x * (2.0 * var.sharing_weight * x + 3.0));
509 }
510
511 double func_reno2_fpi(const s_lmm_variable_t& var, double x)
512 {
513   xbt_assert(x > 0.0, "Don't call me with stupid values!");
514   double tmp     = x * var.sharing_weight * var.sharing_weight;
515   double res_fpi = tmp * (9.0 * x + 24.0);
516
517   if (res_fpi <= 0.0)
518     return 0.0;
519
520   res_fpi = RENO2_SCALING * (-3.0 * tmp + sqrt(res_fpi)) / (4.0 * tmp);
521   return res_fpi;
522 }
523 }
524 }
525 }