Logo AND Algorithmique Numérique Distribuée

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