Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #244 from Takishipp/actor-yield
[simgrid.git] / teshsuite / surf / lmm_usage / lmm_usage.cpp
1 /* A few tests for the maxmin library                                       */
2
3 /* Copyright (c) 2007-2017. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "simgrid/msg.h"
10 #include "src/surf/surf_interface.hpp"
11 #include "surf/maxmin.hpp"
12 #include "xbt/log.h"
13 #include "xbt/module.h"
14 #include "xbt/sysdep.h"
15 #include <algorithm>
16 #include <cmath>
17
18 XBT_LOG_NEW_DEFAULT_CATEGORY(surf_test, "Messages specific for surf example");
19
20 using namespace simgrid::surf;
21
22 #define PRINT_VAR(var) XBT_DEBUG(#var " = %g", (var)->get_value())
23 #define SHOW_EXPR(expr) XBT_DEBUG(#expr " = %g",expr)
24
25 /*        ______                 */
26 /*  ==l1==  L2  ==L3==           */
27 /*        ------                 */
28
29 enum method_t { MAXMIN, LAGRANGE_RENO, LAGRANGE_VEGAS };
30
31 static double dichotomy(double func(double), double min, double max, double min_error)
32 {
33   double overall_error = 2 * min_error;
34
35   double min_func = func(min);
36   double max_func = func(max);
37
38   if ((min_func > 0 && max_func > 0))
39     return min - 1.0;
40   if ((min_func < 0 && max_func < 0))
41     return max + 1.0;
42   if ((min_func > 0 && max_func < 0))
43     abort();
44
45   SHOW_EXPR(min_error);
46
47   while (overall_error > min_error) {
48     SHOW_EXPR(overall_error);
49     xbt_assert(min_func <= 0 || max_func <= 0);
50     xbt_assert(min_func >= 0 || max_func >= 0);
51     xbt_assert(min_func <= 0 || max_func >= 0);
52
53     SHOW_EXPR(min);
54     SHOW_EXPR(min_func);
55     SHOW_EXPR(max);
56     SHOW_EXPR(max_func);
57
58     double middle = (max + min) / 2.0;
59     if (fabs(min - middle) < 1e-12 || fabs(max - middle) < 1e-12) {
60       break;
61     }
62     double middle_func = func(middle);
63     SHOW_EXPR(middle);
64     SHOW_EXPR(middle_func);
65
66     if (middle_func < 0) {
67       min = middle;
68       min_func = middle_func;
69       overall_error = max_func - middle_func;
70     } else if (middle_func > 0) {
71       max = middle;
72       max_func = middle_func;
73       overall_error = middle_func - min_func;
74     } else {
75       overall_error = 0;
76     }
77   }
78   return ((min + max) / 2.0);
79 }
80
81 double a_test_1 = 0;
82 double b_test_1 = 0;
83 static double diff_lagrange_test_1(double x)
84 {
85   return -(3 / (1 + 3 * x * x / 2) - 3 / (2 * (3 * (a_test_1 - x) * (a_test_1 - x) / 2 + 1)) +
86            3 / (2 * (3 * (b_test_1 - a_test_1 + x) * (b_test_1 - a_test_1 + x) / 2 + 1)));
87 }
88
89 static void test1(method_t method)
90 {
91   double a = 1.0;
92   double b = 10.0;
93
94   if (method == LAGRANGE_VEGAS)
95     lmm_set_default_protocol_function(func_vegas_f, func_vegas_fp, func_vegas_fpi);
96   else if (method == LAGRANGE_RENO)
97     lmm_set_default_protocol_function(func_reno_f, func_reno_fpi, func_reno_fpi);
98
99   lmm_system_t Sys    = new s_lmm_system_t(true);
100   lmm_constraint_t L1 = Sys->constraint_new(nullptr, a);
101   lmm_constraint_t L2 = Sys->constraint_new(nullptr, b);
102   lmm_constraint_t L3 = Sys->constraint_new(nullptr, a);
103
104   lmm_variable_t R_1_2_3 = Sys->variable_new(nullptr, 1.0, -1.0, 3);
105   lmm_variable_t R_1     = Sys->variable_new(nullptr, 1.0, -1.0, 1);
106   lmm_variable_t R_2     = Sys->variable_new(nullptr, 1.0, -1.0, 1);
107   lmm_variable_t R_3     = Sys->variable_new(nullptr, 1.0, -1.0, 1);
108
109   Sys->update_variable_weight(R_1_2_3, 1.0);
110   Sys->update_variable_weight(R_1, 1.0);
111   Sys->update_variable_weight(R_2, 1.0);
112   Sys->update_variable_weight(R_3, 1.0);
113
114   Sys->expand(L1, R_1_2_3, 1.0);
115   Sys->expand(L2, R_1_2_3, 1.0);
116   Sys->expand(L3, R_1_2_3, 1.0);
117
118   Sys->expand(L1, R_1, 1.0);
119   Sys->expand(L2, R_2, 1.0);
120   Sys->expand(L3, R_3, 1.0);
121
122   if (method == MAXMIN) {
123     lmm_solve(Sys);
124   } else {
125     double x;
126     if (method == LAGRANGE_VEGAS) {
127       x = 3 * a / 4 - 3 * b / 8 + sqrt(9 * b * b + 4 * a * a - 4 * a * b) / 8;
128       /* Computed with mupad and D_f=1.0 */
129       if (x > a) {
130         x = a;
131       }
132       if (x < 0) {
133         x = 0;
134       }
135     } else if (method == LAGRANGE_RENO) {
136       a_test_1 = a;
137       b_test_1 = b;
138       x = dichotomy(diff_lagrange_test_1, 0, a, 1e-13);
139
140       if (x < 0)
141         x = 0;
142       if (x > a)
143         x = a;
144     } else {
145       xbt_die( "Invalid method");
146     }
147
148     lagrange_solve(Sys);
149
150     double max_deviation = 0.0;
151     max_deviation        = std::max(max_deviation, fabs(R_1->get_value() - x));
152     max_deviation        = std::max(max_deviation, fabs(R_3->get_value() - x));
153     max_deviation        = std::max(max_deviation, fabs(R_2->get_value() - (b - a + x)));
154     max_deviation        = std::max(max_deviation, fabs(R_1_2_3->get_value() - (a - x)));
155
156     if (max_deviation > 0.00001) { // Legacy value used in lagrange.c
157       XBT_WARN("Max Deviation from optimal solution : %g", max_deviation);
158       XBT_WARN("Found x = %1.20f", x);
159       XBT_WARN("Deviation from optimal solution (R_1 = %g): %1.20f", x, R_1->get_value() - x);
160       XBT_WARN("Deviation from optimal solution (R_2 = %g): %1.20f", b - a + x, R_2->get_value() - (b - a + x));
161       XBT_WARN("Deviation from optimal solution (R_3 = %g): %1.20f", x, R_3->get_value() - x);
162       XBT_WARN("Deviation from optimal solution (R_1_2_3 = %g): %1.20f", a - x, R_1_2_3->get_value() - (a - x));
163     }
164   }
165
166   PRINT_VAR(R_1_2_3);
167   PRINT_VAR(R_1);
168   PRINT_VAR(R_2);
169   PRINT_VAR(R_3);
170
171   Sys->variable_free(R_1_2_3);
172   Sys->variable_free(R_1);
173   Sys->variable_free(R_2);
174   Sys->variable_free(R_3);
175   delete Sys;
176 }
177
178 static void test2(method_t method)
179 {
180   if (method == LAGRANGE_VEGAS)
181     lmm_set_default_protocol_function(func_vegas_f, func_vegas_fp, func_vegas_fpi);
182   if (method == LAGRANGE_RENO)
183     lmm_set_default_protocol_function(func_reno_f, func_reno_fp, func_reno_fpi);
184
185   lmm_system_t Sys      = new s_lmm_system_t(true);
186   lmm_constraint_t CPU1 = Sys->constraint_new(nullptr, 200.0);
187   lmm_constraint_t CPU2 = Sys->constraint_new(nullptr, 100.0);
188
189   lmm_variable_t T1 = Sys->variable_new(nullptr, 1.0, -1.0, 1);
190   lmm_variable_t T2 = Sys->variable_new(nullptr, 1.0, -1.0, 1);
191
192   Sys->update_variable_weight(T1, 1.0);
193   Sys->update_variable_weight(T2, 1.0);
194
195   Sys->expand(CPU1, T1, 1.0);
196   Sys->expand(CPU2, T2, 1.0);
197
198   if (method == MAXMIN) {
199     lmm_solve(Sys);
200   } else if (method == LAGRANGE_VEGAS || method == LAGRANGE_RENO) {
201     lagrange_solve(Sys);
202   } else {
203     xbt_die("Invalid method");
204   }
205
206   PRINT_VAR(T1);
207   PRINT_VAR(T2);
208
209   Sys->variable_free(T1);
210   Sys->variable_free(T2);
211   delete Sys;
212 }
213
214 static void test3(method_t method)
215 {
216   int flows = 11;
217   int links = 10;
218
219   double** A = new double*[links + 5];
220   /* array to add the constraints of fictitious variables */
221   double B[15] = { 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 1, 1, 1, 1, 1 };
222
223   for (int i = 0; i < links + 5; i++) {
224     A[i] = new double[flows + 5];
225     for (int j = 0; j < flows + 5; j++) {
226       A[i][j] = 0.0;
227
228       if (i >= links || j >= flows) {
229         A[i][j] = 0.0;
230       }
231     }
232   }
233
234   /*matrix that store the constraints/topology */
235   A[0][1] = A[0][7] =                                1.0;
236   A[1][1] = A[1][7] = A[1][8] =                      1.0;
237   A[2][1] = A[2][8] =                                1.0;
238   A[3][8] =                                          1.0;
239   A[4][0] = A[4][3] = A[4][9] =                      1.0;
240   A[5][0] = A[5][3] = A[5][4] = A[5][9] =            1.0;
241   A[6][0] = A[6][4] = A[6][9] = A[6][10] =           1.0;
242   A[7][2] = A[7][4] = A[7][6] = A[7][9] = A[7][10] = 1.0;
243   A[8][2] = A[8][10] =                               1.0;
244   A[9][5] = A[9][6] = A[9][9] =                      1.0;
245   A[10][11] =                                        1.0;
246   A[11][12] =                                        1.0;
247   A[12][13] =                                        1.0;
248   A[13][14] =                                        1.0;
249   A[14][15] =                                        1.0;
250
251   if (method == LAGRANGE_VEGAS)
252     lmm_set_default_protocol_function(func_vegas_f, func_vegas_fp, func_vegas_fpi);
253   if (method == LAGRANGE_RENO)
254     lmm_set_default_protocol_function(func_reno_f, func_reno_fp, func_reno_fpi);
255
256   lmm_system_t Sys = new s_lmm_system_t(true);
257
258   /* Creates the constraints */
259   lmm_constraint_t* tmp_cnst = new lmm_constraint_t[15];
260   for (int i = 0; i < 15; i++)
261     tmp_cnst[i] = Sys->constraint_new(nullptr, B[i]);
262
263   /* Creates the variables */
264   lmm_variable_t* tmp_var = new lmm_variable_t[16];
265   for (int j = 0; j < 16; j++) {
266     tmp_var[j] = Sys->variable_new(nullptr, 1.0, -1.0, 15);
267     Sys->update_variable_weight(tmp_var[j], 1.0);
268   }
269
270   /* Link constraints and variables */
271   for (int i = 0; i < 15; i++)
272     for (int j = 0; j < 16; j++)
273       if (A[i][j])
274         Sys->expand(tmp_cnst[i], tmp_var[j], 1.0);
275
276   if (method == MAXMIN) {
277     lmm_solve(Sys);
278   } else if (method == LAGRANGE_VEGAS) {
279     lagrange_solve(Sys);
280   } else if (method == LAGRANGE_RENO) {
281     lagrange_solve(Sys);
282   } else {
283     xbt_die("Invalid method");
284   }
285
286   for (int j = 0; j < 16; j++)
287     PRINT_VAR(tmp_var[j]);
288
289   for (int j = 0; j < 16; j++)
290     Sys->variable_free(tmp_var[j]);
291   delete[] tmp_var;
292   delete[] tmp_cnst;
293   delete Sys;
294   for (int i = 0; i < links + 5; i++)
295     delete[] A[i];
296   delete[] A;
297 }
298
299 int main(int argc, char** argv)
300 {
301   MSG_init(&argc, argv);
302   XBT_INFO("***** Test 1 (Max-Min)");
303   test1(MAXMIN);
304   XBT_INFO("***** Test 1 (Lagrange - Vegas)");
305   test1(LAGRANGE_VEGAS);
306   XBT_INFO("***** Test 1 (Lagrange - Reno)");
307   test1(LAGRANGE_RENO);
308
309   XBT_INFO("***** Test 2 (Max-Min)");
310   test2(MAXMIN);
311   XBT_INFO("***** Test 2 (Lagrange - Vegas)");
312   test2(LAGRANGE_VEGAS);
313   XBT_INFO("***** Test 2 (Lagrange - Reno)");
314   test2(LAGRANGE_RENO);
315
316   XBT_INFO("***** Test 3 (Max-Min)");
317   test3(MAXMIN);
318   XBT_INFO("***** Test 3 (Lagrange - Vegas)");
319   test3(LAGRANGE_VEGAS);
320   XBT_INFO("***** Test 3 (Lagrange - Reno)");
321   test3(LAGRANGE_RENO);
322
323   return 0;
324 }