]> AND Private Git Repository - loba.git/blob - options.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
In make_params, extract common options from template file.
[loba.git] / options.cpp
1 #include <ctime>
2 #include <iomanip>
3 #include <iostream>
4 #include <sstream>
5 #include <stack>
6 #include <unistd.h>             // getopt
7 #include <xbt/log.h>
8
9 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(main);
10
11 #include "deployment.h"
12 #include "process.h"
13 #include "loba_2besteffort.h"
14 #include "loba_besteffort.h"
15 #include "loba_bulk.h"
16 #include "loba_fairstrategy.h"
17 #include "loba_lln.h"
18 #include "loba_makhoul.h"
19 #include "loba_makhoul2.h"
20 #include "loba_makhoul3.h"
21 #include "loba_simple.h"
22 #include "misc.h"
23
24 #include "options.h"
25
26 #define DATA_DESCR_WIDTH 42
27
28 namespace opt {
29
30     // Constants
31
32     // A sum of loads if considered null if it is less than
33     // load_ratio_threshold percent of the sum of loads at init.
34     const double load_ratio_threshold = 1e-4;
35
36     // Global options
37     std::string program_name;
38     int help_requested = 0;
39     bool version_requested = false;
40     int option_x = 0;           // hidden option (int)
41     double option_X = 0.0;      // hidden option (double)
42
43     // Simulation parameters
44     int log_rate = 1;
45     volatile std::sig_atomic_t exit_request = 0;
46
47     // Platform and deployment
48     std::string platform_file;
49     std::string deployment_file;
50
51     // Automatic deployment
52     namespace auto_depl {
53         bool        enabled = false;
54         std::string topology("clique");
55         unsigned    nhosts = 0;
56         double      load = -1.0;
57         bool        random_distribution = false;
58         unsigned long random_seed = 0;
59     }
60
61     // Load balancing algorithm
62     std::string loba_algo("simple");
63     bool bookkeeping = false;
64     bool egocentric = false;
65     double min_lb_iter_duration = 1.0;          // fixme: find better defaults
66     double min_transfer_amount = 0.0;
67     double max_transfer_amount = 0.0;
68     bool integer_transfer = false;
69
70     // Application parameters
71     cost_func comp_cost("1e9, 0");              // fixme: find better defaults
72     cost_func comm_cost("1e6, 0");              // fixme: find better defaults
73     double min_comp_iter_duration = 1.0;        // fixme: find better defaults
74     unsigned comp_iter_delay = 0;               // fixme: find better defaults
75     double comp_time_delay = 0.0;               // fixme: find better defaults
76
77     // Parameters for the end of the simulation
78     unsigned lb_maxiter = 0;
79     unsigned comp_maxiter = 0;
80     double time_limit = 0;
81     bool exit_on_close = true;
82
83     // Named parameters lists
84     loba_algorithms_type loba_algorithms;
85     loba_algorithms_type::loba_algorithms_type()
86     {
87         NOL_INSERT("2besteffort", "balance with best effort strategy (take #2)",
88                    loba_2besteffort);
89         NOL_INSERT("besteffort", "balance with best effort strategy",
90                    loba_besteffort);
91         NOL_INSERT("bulk", "a multi-load-units assignation rule without ordering...",
92                    loba_bulk);
93         NOL_INSERT("fairstrategy", "balance with fair strategy",
94                    loba_fairstrategy);
95         NOL_INSERT("lln", "balance with less loaded neighbors without ordering-bulk method",
96                    loba_lln);
97         NOL_INSERT("makhoul", "balance with Makhoul's PhD algorithm",
98                    loba_makhoul);
99         NOL_INSERT("makhoul2", "balance with Makhoul's source code",
100                    loba_makhoul2);
101         NOL_INSERT("makhoul3", "variation on Makhoul's algorithm",
102                    loba_makhoul3);
103         NOL_INSERT("none", "no load-balancing (for testing only)",
104                    process);
105         NOL_INSERT("simple", "balance with least loaded neighbor",
106                    loba_simple);
107     }
108
109     topologies_type topologies;
110     topologies_type::topologies_type()
111     {
112         NOL_INSERT("btree", "binary tree topology, initial load at root",
113                    deployment_btree);
114         NOL_INSERT("clique", "all connected topology", deployment_clique);
115         NOL_INSERT("hcube", "hypercube topology", deployment_hcube);
116         NOL_INSERT("line", "line topology, initial load at one end",
117                    deployment_line);
118         NOL_INSERT("ring", "ring topology", deployment_ring);
119         NOL_INSERT("star", "star topology, initial load at center",
120                    deployment_star);
121         NOL_INSERT("torus", "torus topology", deployment_torus);
122     }
123
124 } // namespace opt
125
126 namespace {
127
128     // local helper class
129     class opt_helper {
130     public:
131         template <typename T>
132         static bool parse_arg(char opt, const char *arg, T& val);
133         static const char* on_off(bool b);
134         const char* descr(const char* str);
135         template <typename T>
136         const char* val_or_string(const T& val, const char* str,
137                                   const T& deflt = 0);
138         template <typename T>
139         static bool nol_find_prefix(const T& nol, const char* descr,
140                                     std::string& name);
141
142     private:
143         std::string descr_str;
144         std::string val_or_string_str;
145     };
146
147 } // namespace
148
149 template <typename T>
150 bool opt_helper::parse_arg(char opt, const char *arg, T& val)
151 {
152     std::istringstream str(arg);
153     bool result = (str >> val) && str.eof();
154     if (!result)
155         XBT_ERROR("invalid argument for option '-%c' -- \"%s\"", opt, arg);
156     return result;
157 }
158
159 const char* opt_helper::on_off(bool b)
160 {
161     return b ? "on" : "off";
162 }
163
164 const char* opt_helper::descr(const char* str)
165 {
166     std::string& res = descr_str;
167     res = str;
168     res.resize(DATA_DESCR_WIDTH, '.');
169     return res.c_str();
170 }
171
172 template <typename T>
173 const char* opt_helper::val_or_string(const T& val, const char* str,
174                                       const T& deflt)
175 {
176     std::string& res = val_or_string_str;
177     if (val != deflt) {
178         std::ostringstream oss;
179         oss << val;
180         res = oss.str();
181     } else {
182         res = str;
183     }
184     return res.c_str();
185 }
186
187 template <typename T>
188 bool opt_helper::nol_find_prefix(const T& nol, const char* descr,
189                                  std::string& name)
190 {
191     bool result = nol.exists(name);
192     if (!result) {
193         std::stack<std::string> candidates;
194         for (typename T::iterator it = nol.begin() ; it != nol.end() ; ++it) {
195             const std::string& fullname = nol.get_name(it);
196             if (fullname.compare(0, name.length(), name) == 0)
197                 candidates.push(fullname);
198         }
199         switch (candidates.size()) {
200         case 0:
201             XBT_ERROR("unknownw %s -- %s", descr, name.c_str());
202             break;
203         case 1:
204             name = candidates.top();
205             candidates.pop();
206             result = true;
207             XBT_DEBUG("infered %s -- %s", descr, name.c_str());
208             break;
209         default:
210             XBT_ERROR("ambiguous %s -- %s", descr, name.c_str());
211             while (!candidates.empty()) {
212                 XBT_ERROR("  candidates are -- %s", candidates.top().c_str());
213                 candidates.pop();
214             }
215             break;
216         }
217     }
218     return result;
219 }
220
221 bool opt::parse_args(int* argc, char* argv[])
222 {
223     bool result = true;
224
225     opt::program_name = argv[0];
226     opt::program_name.erase(0, 1 + opt::program_name.find_last_of('/'));
227
228 #define PARSE_ARG(x) result = opt_helper::parse_arg(c, optarg, (x)) && result
229
230     int c;
231     opterr = 0;
232     while ((c = getopt(*argc, argv,
233                        "a:bc:C:d:D:eEhi:I:l:L:m:M:N:r:Rs:S:t:T:vVx:X:Z"))
234            != -1) {
235         switch (c) {
236         case 'a':
237             opt::loba_algo = optarg;
238             result = opt_helper::nol_find_prefix(opt::loba_algorithms,
239                                                  "load balancing algorithm",
240                                                  opt::loba_algo)
241                 && result;
242             break;
243         case 'b':
244             opt::bookkeeping = !opt::bookkeeping;
245             break;
246         case 'c':
247             try {
248                 opt::comp_cost = cost_func(optarg);
249             } catch (...) {
250                 XBT_ERROR("invalid argument for option '-%c' -- \"%s\"",
251                           c, optarg);
252                 result = false;
253             }
254             break;
255         case 'C':
256             try {
257                 opt::comm_cost = cost_func(optarg);
258             } catch (...) {
259                 XBT_ERROR("invalid argument for option '-%c' -- \"%s\"",
260                           c, optarg);
261                 result = false;
262             }
263             break;
264         case 'd':
265             PARSE_ARG(opt::comp_iter_delay);
266             break;
267         case 'D':
268             PARSE_ARG(opt::comp_time_delay);
269             break;
270         case 'e':
271             opt::exit_on_close = !opt::exit_on_close;
272             break;
273         case 'E':
274             opt::egocentric = !opt::egocentric;
275             break;
276         case 'h':
277             opt::help_requested++;
278             break;
279         case 'i':
280             PARSE_ARG(opt::lb_maxiter);
281             break;
282         case 'I':
283             PARSE_ARG(opt::comp_maxiter);
284             break;
285         case 'l':
286             PARSE_ARG(opt::log_rate);
287             break;
288         case 'L':
289             PARSE_ARG(opt::auto_depl::load);
290             break;
291         case 'm':
292             PARSE_ARG(opt::min_transfer_amount);
293             break;
294         case 'M':
295             PARSE_ARG(opt::max_transfer_amount);
296             break;
297         case 'N':
298             PARSE_ARG(opt::auto_depl::nhosts);
299             break;
300         case 'r':
301             PARSE_ARG(opt::auto_depl::random_seed);
302             break;
303         case 'R':
304             opt::auto_depl::random_distribution =
305                 !opt::auto_depl::random_distribution;
306             break;
307         case 's':
308             PARSE_ARG(opt::min_lb_iter_duration);
309             break;
310         case 'S':
311             PARSE_ARG(opt::min_comp_iter_duration);
312             break;
313         case 't':
314             PARSE_ARG(opt::time_limit);
315             break;
316         case 'T':
317             opt::auto_depl::topology = optarg;
318             result = opt_helper::nol_find_prefix(opt::topologies, "topology",
319                                                  opt::auto_depl::topology)
320                 && result;
321             break;
322         case 'v':
323             // nothing to do: this option is checked at the very
324             // beginning of main()
325             break;
326         case 'V':
327             opt::version_requested = true;
328             break;
329         case 'x':
330             PARSE_ARG(opt::option_x);
331             XBT_WARN("option_x set to %d", opt::option_x);
332             break;
333         case 'X':
334             PARSE_ARG(opt::option_X);
335             XBT_WARN("option_X set to %g", opt::option_X);
336             break;
337         case 'Z':
338             opt::integer_transfer = !opt::integer_transfer;
339             break;
340         case '?':
341             XBT_ERROR("invalid option -- '%c'", optopt);
342             result = false;
343             break;
344         }
345     }
346
347 #undef PARSE_ARG
348
349     if (opt::version_requested || opt::help_requested)
350         return 1;
351
352     if (optind < *argc) {
353         opt::platform_file = argv[optind++];
354     } else {
355         XBT_ERROR("missing parameter -- <plaform_file>");
356         result = false;
357     }
358     if (optind < *argc) {
359         opt::deployment_file = argv[optind++];
360     }
361     opt::auto_depl::enabled = opt::deployment_file.empty();
362
363     while (optind < *argc) {
364         XBT_ERROR("unused parameter -- \"%s\"", argv[optind++]);
365         result = false;
366     }
367
368     if (opt::max_transfer_amount &&
369         opt::max_transfer_amount < opt::min_transfer_amount) {
370         XBT_ERROR("max. data transfer amount < min. data transfer amount");
371         result = false;
372     }
373
374     if (!opt::auto_depl::random_seed)
375         opt::auto_depl::random_seed = time(NULL);
376
377     return result;
378 }
379
380 void opt::print()
381 {
382     opt_helper h;
383
384 #define DESCR(description, format, value) \
385     XBT_INFO("| %s: " format, h.descr(description), value)
386
387     XBT_INFO(",----[ Simulation parameters ]");
388     DESCR("log rate", "%s", h.val_or_string(log_rate, "disabled"));
389     DESCR("platform file", "\"%s\"", platform_file.c_str());
390     if (auto_depl::enabled) {
391         XBT_INFO("| automatic deployment enabled");
392         DESCR("- topology", "%s", auto_depl::topology.c_str());
393         DESCR("- number of hosts", "%s", h.val_or_string(auto_depl::nhosts,
394                                                          "auto"));
395         if (auto_depl::load < 0.0)
396             DESCR("- initial load (average)", "%g", -auto_depl::load);
397         else
398             DESCR("- initial load (total)", "%g", auto_depl::load);
399         DESCR("- random initial load distribution", "%s",
400               h.on_off(auto_depl::random_distribution));
401         DESCR("- random seed", "%s",
402               h.val_or_string(auto_depl::random_seed, "time based"));
403     } else {
404         DESCR("deployment file", "\"%s\"", deployment_file.c_str());
405     }
406     DESCR("load balancing algorithm", "%s", loba_algo.c_str());
407     DESCR("bookkeeping", "%s", h.on_off(bookkeeping));
408     DESCR("egocentric mode", "%s", h.on_off(egocentric));
409     DESCR("minimum duration between lb. iterations", "%g",
410           min_lb_iter_duration);
411     DESCR("computation cost factors", "[%s]", comp_cost.to_string().c_str());
412     DESCR("communication cost factors", "[%s]", comm_cost.to_string().c_str());
413     DESCR("minimum data transfer amount", "%g", min_transfer_amount);
414     DESCR("maximum data transfer amount", "%s",
415           h.val_or_string(max_transfer_amount, "no limit"));
416     DESCR("only transfer integer data shares", "%s",
417           h.on_off(integer_transfer));
418     DESCR("minimum duration between comp. iterations", "%g",
419           min_comp_iter_duration);
420     DESCR("computations start after lb. iter", "%u", comp_iter_delay);
421     DESCR("computations start after time", "%g", comp_time_delay);
422     DESCR("maximum number of lb. iterations", "%s",
423           h.val_or_string(lb_maxiter, "no limit"));
424     DESCR("maximum number of comp. iterations", "%s",
425           h.val_or_string(comp_maxiter, "no limit"));
426     DESCR("time limit", "%s", h.val_or_string(time_limit, "no limit"));
427     DESCR("exit on close", "%s", h.on_off(exit_on_close));
428     XBT_INFO("`----");
429
430 #undef DESCR
431 }
432
433 void opt::usage()
434 {
435     // option(...)
436 #define o(opt) "    " << std::setw(14) \
437                       << std::left << (opt) << std::right << " "
438     // sub-option(...)
439 #define so(subopt) std::setw(18) << (subopt) << " : "
440     // sub-option list
441 #define so_list(name) do {                                      \
442         name ## _type::iterator it;                             \
443         for (it = name.begin() ; it != name.end() ; ++it)       \
444             std::clog << so(name.get_name(it))                  \
445                       << name.get_descr(it) << "\n";            \
446     } while (0)
447
448
449     std::clog << "Usage: " << opt::program_name
450               << " [options] <platform_file> [<deployment_file>]\n";
451     std::clog << "Current values for the parameters are given between square brackets.\n";
452
453     std::clog << "\nGlobal options:\n";
454     std::clog << o("-h")
455               << "print help and exit (use -hh or -hhh for extended help)\n";
456     if (opt::help_requested < 1)
457         return;
458
459     std::clog << o("--help") << "print help from SimGrid framework and exit\n";
460     std::clog << o("-V") << "print version and exit\n";
461
462     std::clog << "\nSimulator output:\n";
463     std::clog << o("-l value")
464               << "print current load every n lb iterations, 0 to disable"
465               << " [" << opt::log_rate << "]\n";
466     std::clog << o("-v")
467               << "verbose: do not override the default logging parameters\n";
468
469     std::clog << "\nAutomatic deployment:\n";
470     std::clog << o("-T name")
471               << "enable automatic deployment with selected topology"
472               << " [" << opt::auto_depl::topology << "]\n";
473     if (opt::help_requested > 1)
474         so_list(opt::topologies);
475     std::clog << o("-L value")
476               << "total load with auto deployment, average if negative"
477               << " [" << opt::auto_depl::load << "]\n";
478     std::clog << o("-N value")
479               << "number of hosts to use with auto deployment, 0 for max."
480               << " [" << opt::auto_depl::nhosts << "]\n";
481     std::clog << o("-R")
482               << "toggle random initial load distribution"
483               << " [" << opt_helper::on_off(opt::auto_depl::random_distribution)
484               << "]\n";
485     std::clog << o("-r value")
486               << "random seed, 0 for a seed based on current date"
487               << " [" << opt::auto_depl::random_seed << "]\n";
488
489     std::clog << "\nLoad balancing algorithm:\n";
490     std::clog << o("-a name") << "load balancing algorithm"
491               << " [" << opt::loba_algo << "]\n";
492     if (opt::help_requested > 1)
493         so_list(opt::loba_algorithms);
494     std::clog << o("-b") << "toggle bookkeeping (\"virtual load\")"
495               << " [" << opt_helper::on_off(opt::bookkeeping) << "]\n";
496     std::clog << o("-E") << "toggle egocentric mode when bookkeeping"
497               << " [" << opt_helper::on_off(opt::egocentric) << "]\n";
498     if (opt::help_requested > 1)
499         std::clog << o("")
500                   << "(a not so good idea introduced by git commit f5336c5)\n";
501
502     std::clog << "\nLb. and comp. iterations:\n";
503     std::clog << o("-s value")
504               << "minimum duration between lb. iterations"
505               << " [" << opt::min_lb_iter_duration << "]\n";
506     std::clog << o("-S value")
507               << "minimum duration between comp. iterations"
508               << " [" << opt::min_comp_iter_duration << "]\n";
509     std::clog << o("-d value")
510               << "start comp. iterations after given number of lb. iter."
511               << " [" << opt::comp_iter_delay << "]\n";
512     std::clog << o("-D value")
513               << "start comp. iterations after given time"
514               << " [" << opt::comp_time_delay << "]\n";
515
516     std::clog << "\nComputations and communications:\n";
517     std::clog << o("-c [aN,...]a0")
518               << "polynomial factors for computation cost"
519               << " [" << opt::comp_cost.to_string() << "]\n";
520     std::clog << o("-C [aN,...]a0")
521               << "polynomial factors for communication cost"
522               << " [" << opt::comm_cost.to_string() << "]\n";
523     std::clog << o("-m value")
524               << "minimum data transfer amount"
525               << " [" << opt::min_transfer_amount << "]\n";
526     std::clog << o("-M value")
527               << "maximum data transfer amount, 0 for no limit"
528               << " [" << opt::max_transfer_amount << "]\n";
529     std::clog << o("-Z")
530               << "toggle transfer of integer data shares only"
531               << " [" << opt_helper::on_off(opt::integer_transfer) << "]\n";
532
533     std::clog << "\nEnd of the simulation:\n";
534     std::clog << o("-i value")
535               << "maximum number of lb. iterations, 0 for no limit"
536               << " [" << opt::lb_maxiter << "]\n";
537     std::clog << o("-I value")
538               << "maximum number of comp. iterations, 0 for no limit"
539               << " [" << opt::comp_maxiter << "]\n";
540     std::clog << o("-t value")
541               << "time limit (simulated time), 0 for no limit"
542               << " [" << opt::time_limit << "]\n";
543     std::clog << o("-e") << "toggle exit on reception of \"close\" message"
544               << " [" << opt_helper::on_off(opt::exit_on_close) << "]\n";
545
546     if (opt::help_requested < 3)
547         return;
548
549     std::clog << "\nHidden options:\n";
550     std::clog << o("-x value") << "value is an integer"
551               << " [" << opt::option_x << "]\n";
552     std::clog << o("-X value") << "value is a real number"
553               << " [" << opt::option_X << "]\n";
554
555     std::clog << "\nLogging support:\n"
556               << "    See SimGrid documentation on:\n"
557               << "        http://simgrid.gforge.inria.fr/doc/group__XBT__log.html#log_user\n"
558               << "    Existing categories are:\n"
559               << "        simu : root of following categories\n"
560               << "        main : messages from global infrastructure\n"
561               << "        depl : messages from auto deployment (inherited from main)\n"
562               << "        comm : messages from asynchronous pipes\n"
563               << "        proc : messages from base process class\n"
564               << "        loba : messages from load-balancer\n"
565               << "        thrd : messages from thread wrapper class\n";
566
567     // std::clog << "\nMiscellaneous low-level parameters\n";
568
569 #undef so_list
570 #undef so
571 #undef o
572 }
573
574 // Local variables:
575 // mode: c++
576 // End: