Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / src / simgrid / sg_config.cpp
1 /* Copyright (c) 2009-2010, 2012-2017. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 /* sg_config: configuration infrastructure for the simulation world       */
8
9 #include "simgrid/sg_config.h"
10 #include "instr/instr_interface.h"
11 #include "mc/mc.h"
12 #include "simgrid/instr.h"
13 #include "simgrid/simix.h"
14 #include "simgrid_config.h" /* what was compiled in? */
15 #include "src/mc/mc_replay.h"
16 #include "src/surf/surf_interface.hpp"
17 #include "surf/maxmin.hpp"
18 #include "surf/surf.h"
19 #include "xbt/config.h"
20 #include "xbt/config.hpp"
21 #include "xbt/log.h"
22 #include "xbt/mallocator.h"
23 #include "xbt/misc.h"
24 #include "xbt/sysdep.h"
25
26 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_config, surf, "About the configuration of SimGrid");
27
28
29 /* 0: beginning of time (config cannot be changed yet);
30  * 1: initialized: cfg_set created (config can now be changed);
31  * 2: configured: command line parsed and config part of platform file was
32  *    integrated also, platform construction ongoing or done.
33  *    (Config cannot be changed anymore!)
34  */
35 int _sg_cfg_init_status = 0;
36
37 /* instruct the upper layer (simix or simdag) to exit as soon as possible */
38 int _sg_cfg_exit_asap = 0;
39
40 #define sg_cfg_exit_early() do { _sg_cfg_exit_asap = 1; return; } while (0)
41
42 /* Parse the command line, looking for options */
43 static void sg_config_cmd_line(int *argc, char **argv)
44 {
45   int shall_exit = 0;
46   int i;
47   int j;
48
49   for (j = i = 1; i < *argc; i++) {
50     if (not strncmp(argv[i], "--cfg=", strlen("--cfg="))) {
51       char *opt = strchr(argv[i], '=');
52       opt++;
53
54       xbt_cfg_set_parse(opt);
55       XBT_DEBUG("Did apply '%s' as config setting", opt);
56     } else if (not strcmp(argv[i], "--version")) {
57       printf("%s\n", SIMGRID_VERSION_STRING);
58       shall_exit = 1;
59     } else if (not strcmp(argv[i], "--cfg-help") || not strcmp(argv[i], "--help")) {
60       printf("Description of the configuration accepted by this simulator:\n");
61       xbt_cfg_help();
62       printf(
63           "\n"
64           "Each of these configurations can be used by adding\n"
65           "    --cfg=<option name>:<option value>\n"
66           "to the command line.\n"
67           "\n"
68           "For more information, please refer to:\n"
69           "   --help-aliases for the list of all option aliases.\n"
70           "   --help-logs and --help-log-categories for the details of logging output.\n"
71           "   --help-models for a list of all models known by this simulator.\n"
72           "   --help-tracing for the details of all tracing options known by this simulator.\n"
73           "   --version to get SimGrid version information.\n"
74           "\n"
75         );
76       shall_exit = 1;
77     } else if (not strcmp(argv[i], "--help-aliases")) {
78       printf("Here is a list of all deprecated option names, with their replacement.\n");
79       xbt_cfg_aliases();
80       printf("Please consider using the recent names\n");
81       shall_exit = 1;
82     } else if (not strcmp(argv[i], "--help-models")) {
83       model_help("host", surf_host_model_description);
84       printf("\n");
85       model_help("CPU", surf_cpu_model_description);
86       printf("\n");
87       model_help("network", surf_network_model_description);
88       printf("\nLong description of all optimization levels accepted by the models of this simulator:\n");
89       for (int k = 0; surf_optimization_mode_description[k].name; k++)
90         printf("  %s: %s\n",
91                surf_optimization_mode_description[k].name,
92                surf_optimization_mode_description[k].description);
93       printf("Both network and CPU models have 'Lazy' as default optimization level\n\n");
94       shall_exit = 1;
95     } else if (not strcmp(argv[i], "--help-tracing")) {
96       TRACE_help (1);
97       shall_exit = 1;
98     } else {
99       argv[j++] = argv[i];
100     }
101   }
102   if (j < *argc) {
103     argv[j] = nullptr;
104     *argc = j;
105   }
106   if (shall_exit)
107     sg_cfg_exit_early();
108 }
109
110 /* callback of the plugin variable */
111 static void _sg_cfg_cb__plugin(const char *name)
112 {
113   xbt_assert(_sg_cfg_init_status < 2, "Cannot load a plugin after the initialization");
114
115   std::string val = xbt_cfg_get_string(name);
116   if (val.empty())
117     return;
118
119   if (val == "help") {
120     model_help("plugin", surf_plugin_description);
121     sg_cfg_exit_early();
122   }
123
124   int plugin_id = find_model_description(surf_plugin_description, val);
125   surf_plugin_description[plugin_id].model_init_preparse();
126 }
127
128 /* callback of the host/model variable */
129 static void _sg_cfg_cb__host_model(const char *name)
130 {
131   xbt_assert(_sg_cfg_init_status < 2, "Cannot change the model after the initialization");
132
133   std::string val = xbt_cfg_get_string(name);
134   if (val == "help") {
135     model_help("host", surf_host_model_description);
136     sg_cfg_exit_early();
137   }
138
139   /* Make sure that the model exists */
140   find_model_description(surf_host_model_description, val);
141 }
142
143 /* callback of the cpu/model variable */
144 static void _sg_cfg_cb__cpu_model(const char *name)
145 {
146   xbt_assert(_sg_cfg_init_status < 2, "Cannot change the model after the initialization");
147
148   std::string val = xbt_cfg_get_string(name);
149   if (val == "help") {
150     model_help("CPU", surf_cpu_model_description);
151     sg_cfg_exit_early();
152   }
153
154   /* New Module missing */
155   find_model_description(surf_cpu_model_description, val);
156 }
157
158 /* callback of the cpu/model variable */
159 static void _sg_cfg_cb__optimization_mode(const char *name)
160 {
161   xbt_assert(_sg_cfg_init_status < 2, "Cannot change the model after the initialization");
162
163   std::string val = xbt_cfg_get_string(name);
164   if (val == "help") {
165     model_help("optimization", surf_optimization_mode_description);
166     sg_cfg_exit_early();
167   }
168
169   /* New Module missing */
170   find_model_description(surf_optimization_mode_description, val);
171 }
172
173 /* callback of the cpu/model variable */
174 static void _sg_cfg_cb__storage_mode(const char *name)
175 {
176   xbt_assert(_sg_cfg_init_status < 2, "Cannot change the model after the initialization");
177
178   std::string val = xbt_cfg_get_string(name);
179   if (val == "help") {
180     model_help("storage", surf_storage_model_description);
181     sg_cfg_exit_early();
182   }
183
184   find_model_description(surf_storage_model_description, val);
185 }
186
187 /* callback of the network_model variable */
188 static void _sg_cfg_cb__network_model(const char *name)
189 {
190   xbt_assert(_sg_cfg_init_status < 2, "Cannot change the model after the initialization");
191
192   std::string val = xbt_cfg_get_string(name);
193   if (val == "help") {
194     model_help("network", surf_network_model_description);
195     sg_cfg_exit_early();
196   }
197
198   /* New Module missing */
199   find_model_description(surf_network_model_description, val);
200 }
201 /* callback to decide if we want to use the model-checking */
202 #include "src/xbt_modinter.h"
203
204 static void _sg_cfg_cb_model_check_replay(const char *name) {
205   MC_record_path = xbt_cfg_get_string(name);
206 }
207
208 #if SIMGRID_HAVE_MC
209 extern int _sg_do_model_check_record;
210 static void _sg_cfg_cb_model_check_record(const char *name) {
211   _sg_do_model_check_record = xbt_cfg_get_boolean(name);
212 }
213 #endif
214
215 extern int _sg_do_verbose_exit;
216 static void _sg_cfg_cb_verbose_exit(const char *name)
217 {
218   _sg_do_verbose_exit = xbt_cfg_get_boolean(name);
219 }
220
221 extern int _sg_do_clean_atexit;
222 static void _sg_cfg_cb_clean_atexit(const char *name)
223 {
224   _sg_do_clean_atexit = xbt_cfg_get_boolean(name);
225 }
226
227 static void _sg_cfg_cb_context_stack_size(const char *name)
228 {
229   smx_context_stack_size_was_set = 1;
230   smx_context_stack_size = xbt_cfg_get_int(name) * 1024;
231 }
232
233 static void _sg_cfg_cb_context_guard_size(const char *name)
234 {
235   smx_context_guard_size_was_set = 1;
236   smx_context_guard_size = xbt_cfg_get_int(name) * xbt_pagesize;
237 }
238
239 static void _sg_cfg_cb_contexts_nthreads(const char *name)
240 {
241   SIMIX_context_set_nthreads(xbt_cfg_get_int(name));
242 }
243
244 static void _sg_cfg_cb_contexts_parallel_threshold(const char *name)
245 {
246   SIMIX_context_set_parallel_threshold(xbt_cfg_get_int(name));
247 }
248
249 static void _sg_cfg_cb_contexts_parallel_mode(const char *name)
250 {
251   std::string mode_name = xbt_cfg_get_string(name);
252   if (mode_name == "posix") {
253     SIMIX_context_set_parallel_mode(XBT_PARMAP_POSIX);
254   } else if (mode_name == "futex") {
255     SIMIX_context_set_parallel_mode(XBT_PARMAP_FUTEX);
256   } else if (mode_name == "busy_wait") {
257     SIMIX_context_set_parallel_mode(XBT_PARMAP_BUSY_WAIT);
258   } else {
259     xbt_die("Command line setting of the parallel synchronization mode should "
260             "be one of \"posix\", \"futex\" or \"busy_wait\"");
261   }
262 }
263
264 static void _sg_cfg_cb__surf_network_crosstraffic(const char *name)
265 {
266   sg_network_crosstraffic = xbt_cfg_get_boolean(name);
267 }
268
269 /* build description line with possible values */
270 static void describe_model(char *result,int resultsize,
271                            const s_surf_model_description_t model_description[],
272                            const char *name,
273                            const char *description)
274 {
275   result[0] = '\0';
276   char *p = result;
277   p += snprintf(result,resultsize-1, "%s. Possible values: %s", description,
278             model_description[0].name ? model_description[0].name : "n/a");
279   for (int i = 1; model_description[i].name; i++)
280     p += snprintf(p,resultsize-(p-result)-1, ", %s", model_description[i].name);
281   p += snprintf(p,resultsize-(p-result)-1, ".\n       (use 'help' as a value to see the long description of each %s)", name);
282
283   xbt_assert(p<result+resultsize-1,"Buffer too small to display the model description of %s",name);
284 }
285
286 /* create the config set, register what should be and parse the command line*/
287 void sg_config_init(int *argc, char **argv)
288 {
289   const int descsize = 1024;
290   char description[descsize];
291
292   /* Create the configuration support */
293   if (_sg_cfg_init_status != 0) { /* Only create stuff if not already inited */
294     XBT_WARN("Call to sg_config_init() after initialization ignored");
295     return;
296   }
297
298   /* Plugins configuration */
299   describe_model(description, descsize, surf_plugin_description, "plugin", "The plugins");
300   xbt_cfg_register_string("plugin", "", &_sg_cfg_cb__plugin, description);
301
302   describe_model(description, descsize, surf_cpu_model_description, "model", "The model to use for the CPU");
303   xbt_cfg_register_string("cpu/model", "Cas01", &_sg_cfg_cb__cpu_model, description);
304
305   describe_model(description, descsize, surf_optimization_mode_description, "optimization mode",
306                  "The optimization modes to use for the CPU");
307   xbt_cfg_register_string("cpu/optim", "Lazy", &_sg_cfg_cb__optimization_mode, description);
308
309   describe_model(description, descsize, surf_storage_model_description, "model", "The model to use for the storage");
310   xbt_cfg_register_string("storage/model", "default", &_sg_cfg_cb__storage_mode, description);
311
312   describe_model(description, descsize, surf_network_model_description, "model", "The model to use for the network");
313   xbt_cfg_register_string("network/model", "LV08", &_sg_cfg_cb__network_model, description);
314
315   describe_model(description, descsize, surf_optimization_mode_description, "optimization mode",
316                  "The optimization modes to use for the network");
317   xbt_cfg_register_string("network/optim", "Lazy", &_sg_cfg_cb__optimization_mode, description);
318
319   describe_model(description, descsize, surf_host_model_description, "model", "The model to use for the host");
320   xbt_cfg_register_string("host/model", "default", &_sg_cfg_cb__host_model, description);
321
322   sg_tcp_gamma = 4194304.0;
323   simgrid::config::bindFlag(sg_tcp_gamma, {"network/TCP-gamma", "network/TCP_gamma"},
324                             "Size of the biggest TCP window (cat /proc/sys/net/ipv4/tcp_[rw]mem for recv/send window; "
325                             "Use the last given value, which is the max window size)");
326
327   simgrid::config::bindFlag(sg_surf_precision, "surf/precision",
328                             "Numerical precision used when updating simulation times (in seconds)");
329
330   simgrid::config::bindFlag(sg_maxmin_precision, "maxmin/precision",
331                             "Numerical precision used when computing resource sharing (in flops/sec or bytes/sec)");
332
333   simgrid::config::bindFlag(sg_concurrency_limit, "maxmin/concurrency-limit",
334                             "Maximum number of concurrent variables in the maxmim system. Also limits the number of "
335                             "processes on each host, at higher level. (default: -1 means no such limitation)");
336   xbt_cfg_register_alias("maxmin/concurrency-limit", "maxmin/concurrency_limit");
337
338   /* The parameters of network models */
339
340   sg_latency_factor = 13.01; // comes from the default LV08 network model
341   simgrid::config::bindFlag(sg_latency_factor, {"network/latency-factor", "network/latency_factor"},
342                             "Correction factor to apply to the provided latency (default value set by network model)");
343
344   sg_bandwidth_factor = 0.97; // comes from the default LV08 network model
345   simgrid::config::bindFlag(
346       sg_bandwidth_factor, {"network/bandwidth-factor", "network/bandwidth_factor"},
347       "Correction factor to apply to the provided bandwidth (default value set by network model)");
348
349   sg_weight_S_parameter = 20537; // comes from the default LV08 network model
350   simgrid::config::bindFlag(
351       sg_weight_S_parameter, {"network/weight-S", "network/weight_S"},
352       "Correction factor to apply to the weight of competing streams (default value set by network model)");
353
354   /* Inclusion path */
355   simgrid::config::declareFlag<std::string>("path", "Lookup path for inclusions in platform and deployment XML files",
356                                             "", [](std::string const& path) {
357                                               if (path[0] != '\0') {
358                                                 surf_path.push_back(path);
359                                               }
360                                             });
361
362   xbt_cfg_register_boolean("cpu/maxmin-selective-update", "no", nullptr, "Update the constraint set propagating "
363                                                                          "recursively to others constraints (off by "
364                                                                          "default when optim is set to lazy)");
365   xbt_cfg_register_alias("cpu/maxmin-selective-update", "cpu/maxmin_selective_update");
366   xbt_cfg_register_boolean("network/maxmin-selective-update", "no", nullptr, "Update the constraint set propagating "
367                                                                              "recursively to others constraints (off "
368                                                                              "by default when optim is set to lazy)");
369   xbt_cfg_register_alias("network/maxmin-selective-update", "network/maxmin_selective_update");
370   /* Replay (this part is enabled even if MC it disabled) */
371   xbt_cfg_register_string("model-check/replay", nullptr, _sg_cfg_cb_model_check_replay,
372                           "Model-check path to replay (as reported by SimGrid when a violation is reported)");
373
374 #if SIMGRID_HAVE_MC
375     /* do model-checking-record */
376     xbt_cfg_register_boolean("model-check/record", "no", _sg_cfg_cb_model_check_record, "Record the model-checking paths");
377
378     xbt_cfg_register_int("model-check/checkpoint", 0, _mc_cfg_cb_checkpoint,
379         "Specify the amount of steps between checkpoints during stateful model-checking (default: 0 => stateless verification). "
380         "If value=1, one checkpoint is saved for each step => faster verification, but huge memory consumption; higher values are good compromises between speed and memory consumption.");
381
382     xbt_cfg_register_boolean("model-check/sparse-checkpoint", "no", _mc_cfg_cb_sparse_checkpoint, "Use sparse per-page snapshots.");
383     xbt_cfg_register_boolean("model-check/ksm", "no", _mc_cfg_cb_ksm, "Kernel same-page merging");
384
385     xbt_cfg_register_string("model-check/property", "", _mc_cfg_cb_property,
386                             "Name of the file containing the property, as formatted by the ltl2ba program.");
387     xbt_cfg_register_boolean("model-check/communications-determinism", "no", _mc_cfg_cb_comms_determinism,
388         "Whether to enable the detection of communication determinism");
389     xbt_cfg_register_alias("model-check/communications-determinism","model-check/communications_determinism");
390
391     xbt_cfg_register_boolean("model-check/send-determinism", "no", _mc_cfg_cb_send_determinism,
392         "Enable/disable the detection of send-determinism in the communications schemes");
393     xbt_cfg_register_alias("model-check/send-determinism","model-check/send_determinism");
394
395     /* Specify the kind of model-checking reduction */
396     xbt_cfg_register_string("model-check/reduction", "dpor", _mc_cfg_cb_reduce,
397         "Specify the kind of exploration reduction (either none or DPOR)");
398     xbt_cfg_register_boolean("model-check/timeout", "no",  _mc_cfg_cb_timeout,
399         "Whether to enable timeouts for wait requests");
400
401     xbt_cfg_register_boolean("model-check/hash", "no", _mc_cfg_cb_hash, "Whether to enable state hash for state comparison (experimental)");
402     xbt_cfg_register_boolean("model-check/snapshot-fds", "no",  _mc_cfg_cb_snapshot_fds,
403         "Whether file descriptors must be snapshoted (currently unusable)");
404     xbt_cfg_register_alias("model-check/snapshot-fds","model-check/snapshot_fds");
405     xbt_cfg_register_int("model-check/max-depth", 1000, _mc_cfg_cb_max_depth, "Maximal exploration depth (default: 1000)");
406     xbt_cfg_register_alias("model-check/max-depth","model-check/max_depth");
407     xbt_cfg_register_int("model-check/visited", 0, _mc_cfg_cb_visited,
408         "Specify the number of visited state stored for state comparison reduction. If value=5, the last 5 visited states are stored. If value=0 (the default), all states are stored.");
409
410     xbt_cfg_register_string("model-check/dot-output", "", _mc_cfg_cb_dot_output, "Name of dot output file corresponding to graph state");
411     xbt_cfg_register_alias("model-check/dot-output","model-check/dot_output");
412     xbt_cfg_register_boolean("model-check/termination", "no", _mc_cfg_cb_termination, "Whether to enable non progressive cycle detection");
413 #endif
414
415     xbt_cfg_register_boolean("verbose-exit", "yes", _sg_cfg_cb_verbose_exit, "Activate the \"do nothing\" mode in Ctrl-C");
416
417     xbt_cfg_register_int("contexts/stack-size", 8*1024, _sg_cfg_cb_context_stack_size, "Stack size of contexts in KiB");
418     /* (FIXME: this is unpleasant) Reset this static variable that was altered when setting the default value. */
419     smx_context_stack_size_was_set = 0;
420     xbt_cfg_register_alias("contexts/stack-size","contexts/stack_size");
421
422     /* guard size for contexts stacks in memory pages */
423     xbt_cfg_register_int("contexts/guard-size",
424 #if defined(_WIN32) || (PTH_STACKGROWTH != -1)
425         0,
426 #else
427         1,
428 #endif
429     _sg_cfg_cb_context_guard_size, "Guard size for contexts stacks in memory pages");
430     /* No, it was not set yet (the above setdefault() changed this to 1). */
431     smx_context_guard_size_was_set = 0;
432     xbt_cfg_register_alias("contexts/guard-size","contexts/guard_size");
433     xbt_cfg_register_int("contexts/nthreads", 1, _sg_cfg_cb_contexts_nthreads, "Number of parallel threads used to execute user contexts");
434
435     xbt_cfg_register_int("contexts/parallel-threshold", 2, _sg_cfg_cb_contexts_parallel_threshold,
436         "Minimal number of user contexts to be run in parallel (raw contexts only)");
437     xbt_cfg_register_alias("contexts/parallel-threshold","contexts/parallel_threshold");
438
439     /* synchronization mode for parallel user contexts */
440 #if HAVE_FUTEX_H
441     xbt_cfg_register_string("contexts/synchro", "futex",     _sg_cfg_cb_contexts_parallel_mode,
442         "Synchronization mode to use when running contexts in parallel (either futex, posix or busy_wait)");
443 #else //No futex on mac and posix is unimplememted yet
444     xbt_cfg_register_string("contexts/synchro", "busy_wait", _sg_cfg_cb_contexts_parallel_mode,
445         "Synchronization mode to use when running contexts in parallel (either futex, posix or busy_wait)");
446 #endif
447
448     xbt_cfg_register_boolean("network/crosstraffic", "yes", _sg_cfg_cb__surf_network_crosstraffic,
449         "Activate the interferences between uploads and downloads for fluid max-min models (LV08, CM02)");
450
451     // For smpi/bw-factor and smpi/lat-factor
452     // SMPI model can be used without enable_smpi, so keep this out of the ifdef.
453     xbt_cfg_register_string("smpi/bw-factor",
454         "65472:0.940694;15424:0.697866;9376:0.58729;5776:1.08739;3484:0.77493;1426:0.608902;732:0.341987;257:0.338112;0:0.812084", nullptr,
455         "Bandwidth factors for smpi. Format: 'threshold0:value0;threshold1:value1;...;thresholdN:valueN', meaning if(size >=thresholdN ) return valueN.");
456     xbt_cfg_register_alias("smpi/bw-factor","smpi/bw_factor");
457
458     xbt_cfg_register_string("smpi/lat-factor",
459         "65472:11.6436;15424:3.48845;9376:2.59299;5776:2.18796;3484:1.88101;1426:1.61075;732:1.9503;257:1.95341;0:2.01467", nullptr, "Latency factors for smpi.");
460     xbt_cfg_register_alias("smpi/lat-factor","smpi/lat_factor");
461
462     xbt_cfg_register_string("smpi/IB-penalty-factors", "0.965;0.925;1.35", nullptr,
463         "Correction factor to communications using Infiniband model with contention (default value based on Stampede cluster profiling)");
464     xbt_cfg_register_alias("smpi/IB-penalty-factors","smpi/IB_penalty_factors");
465
466 #if HAVE_SMPI
467     xbt_cfg_register_double("smpi/host-speed", 20000.0, nullptr, "Speed of the host running the simulation (in flop/s). Used to bench the operations.");
468     xbt_cfg_register_alias("smpi/host-speed","smpi/running_power");
469     xbt_cfg_register_alias("smpi/host-speed","smpi/running-power");
470
471     xbt_cfg_register_boolean("smpi/keep-temps", "no", nullptr, "Whether we should keep the generated temporary files.");
472
473     xbt_cfg_register_boolean("smpi/display-timing", "no", nullptr, "Whether we should display the timing after simulation.");
474     xbt_cfg_register_alias("smpi/display-timing", "smpi/display_timing");
475
476     xbt_cfg_register_boolean("smpi/simulate-computation", "yes", nullptr, "Whether the computational part of the simulated application should be simulated.");
477     xbt_cfg_register_alias("smpi/simulate-computation","smpi/simulate_computation");
478
479     xbt_cfg_register_string("smpi/shared-malloc", "global", nullptr,
480                             "Whether SMPI_SHARED_MALLOC is enabled. Disable it for debugging purposes.");
481     xbt_cfg_register_alias("smpi/shared-malloc", "smpi/use-shared-malloc");
482     xbt_cfg_register_alias("smpi/shared-malloc", "smpi/use_shared_malloc");
483     xbt_cfg_register_double("smpi/shared-malloc-blocksize", 1UL << 20, nullptr, "Size of the bogus file which will be created for global shared allocations");
484     xbt_cfg_register_string("smpi/shared-malloc-hugepage", "", nullptr,
485                             "Path to a mounted hugetlbfs, to use huge pages with shared malloc.");
486
487     xbt_cfg_register_double("smpi/cpu-threshold", 1e-6, nullptr, "Minimal computation time (in seconds) not discarded, or -1 for infinity.");
488     xbt_cfg_register_alias("smpi/cpu-threshold", "smpi/cpu_threshold");
489
490     xbt_cfg_register_int("smpi/async-small-thresh", 0, nullptr,
491         "Maximal size of messages that are to be sent asynchronously, without waiting for the receiver");
492     xbt_cfg_register_alias("smpi/async-small-thresh","smpi/async_small_thresh");
493     xbt_cfg_register_alias("smpi/async-small-thresh","smpi/async_small_thres");
494
495     xbt_cfg_register_boolean("smpi/trace-call-location", "no", nullptr, "Should filename and linenumber of MPI calls be traced?");
496
497     xbt_cfg_register_int("smpi/send-is-detached-thresh", 65536, nullptr,
498         "Threshold of message size where MPI_Send stops behaving like MPI_Isend and becomes MPI_Ssend");
499     xbt_cfg_register_alias("smpi/send-is-detached-thresh","smpi/send_is_detached_thresh");
500     xbt_cfg_register_alias("smpi/send-is-detached-thresh","smpi/send_is_detached_thres");
501
502     const char* default_privatization = std::getenv("SMPI_PRIVATIZATION");
503     if (default_privatization == nullptr)
504       default_privatization = "no";
505
506     xbt_cfg_register_string("smpi/privatization", default_privatization, nullptr,
507                             "How we should privatize global variable at runtime (no, yes, mmap, dlopen).");
508
509     xbt_cfg_register_alias("smpi/privatization", "smpi/privatize-global-variables");
510     xbt_cfg_register_alias("smpi/privatization", "smpi/privatize_global_variables");
511
512     xbt_cfg_register_boolean("smpi/grow-injected-times", "yes", nullptr, "Whether we want to make the injected time in MPI_Iprobe and MPI_Test grow, to allow faster simulation. This can make simulation less precise, though.");
513
514 #if HAVE_PAPI
515     xbt_cfg_register_string("smpi/papi-events", nullptr, nullptr, "This switch enables tracking the specified counters with PAPI");
516 #endif
517     xbt_cfg_register_string("smpi/comp-adjustment-file", nullptr, nullptr, "A file containing speedups or slowdowns for some parts of the code.");
518     xbt_cfg_register_string("smpi/os", "0:0:0:0:0", nullptr,  "Small messages timings (MPI_Send minimum time for small messages)");
519     xbt_cfg_register_string("smpi/ois", "0:0:0:0:0", nullptr, "Small messages timings (MPI_Isend minimum time for small messages)");
520     xbt_cfg_register_string("smpi/or", "0:0:0:0:0", nullptr,  "Small messages timings (MPI_Recv minimum time for small messages)");
521
522     xbt_cfg_register_double("smpi/iprobe-cpu-usage", 1, nullptr, "Maximum usage of CPUs by MPI_Iprobe() calls. We've observed that MPI_Iprobes consume significantly less power than the maximum of a specific application. This value is then (Iprobe_Usage/Max_Application_Usage).");
523
524     xbt_cfg_register_string("smpi/coll-selector", "default", nullptr, "Which collective selector to use");
525     xbt_cfg_register_alias("smpi/coll-selector","smpi/coll_selector");
526     xbt_cfg_register_string("smpi/gather",        nullptr, nullptr, "Which collective to use for gather");
527     xbt_cfg_register_string("smpi/allgather",     nullptr, nullptr, "Which collective to use for allgather");
528     xbt_cfg_register_string("smpi/barrier",       nullptr, nullptr, "Which collective to use for barrier");
529     xbt_cfg_register_string("smpi/reduce_scatter",nullptr, nullptr, "Which collective to use for reduce_scatter");
530     xbt_cfg_register_alias("smpi/reduce_scatter","smpi/reduce-scatter");
531     xbt_cfg_register_string("smpi/scatter",       nullptr, nullptr, "Which collective to use for scatter");
532     xbt_cfg_register_string("smpi/allgatherv",    nullptr, nullptr, "Which collective to use for allgatherv");
533     xbt_cfg_register_string("smpi/allreduce",     nullptr, nullptr, "Which collective to use for allreduce");
534     xbt_cfg_register_string("smpi/alltoall",      nullptr, nullptr, "Which collective to use for alltoall");
535     xbt_cfg_register_string("smpi/alltoallv",     nullptr, nullptr,"Which collective to use for alltoallv");
536     xbt_cfg_register_string("smpi/bcast",         nullptr, nullptr, "Which collective to use for bcast");
537     xbt_cfg_register_string("smpi/reduce",        nullptr, nullptr, "Which collective to use for reduce");
538 #endif // HAVE_SMPI
539
540     /* Storage */
541
542     sg_storage_max_file_descriptors = 1024;
543     simgrid::config::bindFlag(sg_storage_max_file_descriptors, "storage/max_file_descriptors",
544       "Maximum number of concurrently opened files per host. Default is 1024");
545
546     /* Others */
547
548     xbt_cfg_register_boolean("exception/cutpath", "no", nullptr,
549         "Whether to cut all path information from call traces, used e.g. in exceptions.");
550
551     xbt_cfg_register_boolean("clean-atexit", "yes", _sg_cfg_cb_clean_atexit,
552         "Whether to cleanup SimGrid at exit. Disable it if your code segfaults after its end.");
553     xbt_cfg_register_alias("clean-atexit","clean_atexit");
554
555     if (surf_path.empty())
556       xbt_cfg_setdefault_string("path", "./");
557
558     _sg_cfg_init_status = 1;
559
560     sg_config_cmd_line(argc, argv);
561
562     xbt_mallocator_initialization_is_done(SIMIX_context_is_parallel());
563 }
564
565 void sg_config_finalize()
566 {
567   if (not _sg_cfg_init_status)
568     return;                     /* Not initialized yet. Nothing to do */
569
570   xbt_cfg_free(&simgrid_config);
571   _sg_cfg_init_status = 0;
572 }