Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://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   char *val = xbt_cfg_get_string(name);
116   if (val==nullptr || val[0] == '\0')
117     return;
118
119   if (not strcmp(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   char *val = xbt_cfg_get_string(name);
134   if (not strcmp(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   char *val = xbt_cfg_get_string(name);
149   if (not strcmp(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   char *val = xbt_cfg_get_string(name);
164   if (not strcmp(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   char *val = xbt_cfg_get_string(name);
179   if (not strcmp(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   char *val = xbt_cfg_get_string(name);
193   if (not strcmp(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   if (MC_record_path[0] == '\0')
207     MC_record_path = nullptr;
208 }
209
210 #if SIMGRID_HAVE_MC
211 extern int _sg_do_model_check_record;
212 static void _sg_cfg_cb_model_check_record(const char *name) {
213   _sg_do_model_check_record = xbt_cfg_get_boolean(name);
214 }
215 #endif
216
217 extern int _sg_do_verbose_exit;
218 static void _sg_cfg_cb_verbose_exit(const char *name)
219 {
220   _sg_do_verbose_exit = xbt_cfg_get_boolean(name);
221 }
222
223 extern int _sg_do_clean_atexit;
224 static void _sg_cfg_cb_clean_atexit(const char *name)
225 {
226   _sg_do_clean_atexit = xbt_cfg_get_boolean(name);
227 }
228
229 static void _sg_cfg_cb_context_stack_size(const char *name)
230 {
231   smx_context_stack_size_was_set = 1;
232   smx_context_stack_size = xbt_cfg_get_int(name) * 1024;
233 }
234
235 static void _sg_cfg_cb_context_guard_size(const char *name)
236 {
237   smx_context_guard_size_was_set = 1;
238   smx_context_guard_size = xbt_cfg_get_int(name) * xbt_pagesize;
239 }
240
241 static void _sg_cfg_cb_contexts_nthreads(const char *name)
242 {
243   SIMIX_context_set_nthreads(xbt_cfg_get_int(name));
244 }
245
246 static void _sg_cfg_cb_contexts_parallel_threshold(const char *name)
247 {
248   SIMIX_context_set_parallel_threshold(xbt_cfg_get_int(name));
249 }
250
251 static void _sg_cfg_cb_contexts_parallel_mode(const char *name)
252 {
253   const char* mode_name = xbt_cfg_get_string(name);
254   if (not strcmp(mode_name, "posix")) {
255     SIMIX_context_set_parallel_mode(XBT_PARMAP_POSIX);
256   } else if (not strcmp(mode_name, "futex")) {
257     SIMIX_context_set_parallel_mode(XBT_PARMAP_FUTEX);
258   } else if (not strcmp(mode_name, "busy_wait")) {
259     SIMIX_context_set_parallel_mode(XBT_PARMAP_BUSY_WAIT);
260   }
261   else {
262     xbt_die("Command line setting of the parallel synchronization mode should "
263             "be one of \"posix\", \"futex\" or \"busy_wait\"");
264   }
265 }
266
267 static void _sg_cfg_cb__surf_network_crosstraffic(const char *name)
268 {
269   sg_network_crosstraffic = xbt_cfg_get_boolean(name);
270 }
271
272 /* build description line with possible values */
273 static void describe_model(char *result,int resultsize,
274                            const s_surf_model_description_t model_description[],
275                            const char *name,
276                            const char *description)
277 {
278   result[0] = '\0';
279   char *p = result;
280   p += snprintf(result,resultsize-1, "%s. Possible values: %s", description,
281             model_description[0].name ? model_description[0].name : "n/a");
282   for (int i = 1; model_description[i].name; i++)
283     p += snprintf(p,resultsize-(p-result)-1, ", %s", model_description[i].name);
284   p += snprintf(p,resultsize-(p-result)-1, ".\n       (use 'help' as a value to see the long description of each %s)", name);
285
286   xbt_assert(p<result+resultsize-1,"Buffer too small to display the model description of %s",name);
287 }
288
289 /* create the config set, register what should be and parse the command line*/
290 void sg_config_init(int *argc, char **argv)
291 {
292   const int descsize = 1024;
293   char description[descsize];
294
295   /* Create the configuration support */
296   if (_sg_cfg_init_status != 0) { /* Only create stuff if not already inited */
297     XBT_WARN("Call to sg_config_init() after initialization ignored");
298     return;
299   }
300
301   /* Plugins configuration */
302   describe_model(description, descsize, surf_plugin_description, "plugin", "The plugins");
303   xbt_cfg_register_string("plugin", nullptr, &_sg_cfg_cb__plugin, description);
304
305   describe_model(description, descsize, surf_cpu_model_description, "model", "The model to use for the CPU");
306   xbt_cfg_register_string("cpu/model", "Cas01", &_sg_cfg_cb__cpu_model, description);
307
308   describe_model(description, descsize, surf_optimization_mode_description, "optimization mode",
309                  "The optimization modes to use for the CPU");
310   xbt_cfg_register_string("cpu/optim", "Lazy", &_sg_cfg_cb__optimization_mode, description);
311
312   describe_model(description, descsize, surf_storage_model_description, "model", "The model to use for the storage");
313   xbt_cfg_register_string("storage/model", "default", &_sg_cfg_cb__storage_mode, description);
314
315   describe_model(description, descsize, surf_network_model_description, "model", "The model to use for the network");
316   xbt_cfg_register_string("network/model", "LV08", &_sg_cfg_cb__network_model, description);
317
318   describe_model(description, descsize, surf_optimization_mode_description, "optimization mode",
319                  "The optimization modes to use for the network");
320   xbt_cfg_register_string("network/optim", "Lazy", &_sg_cfg_cb__optimization_mode, description);
321
322   describe_model(description, descsize, surf_host_model_description, "model", "The model to use for the host");
323   xbt_cfg_register_string("host/model", "default", &_sg_cfg_cb__host_model, description);
324
325   sg_tcp_gamma = 4194304.0;
326   simgrid::config::bindFlag(sg_tcp_gamma, {"network/TCP-gamma", "network/TCP_gamma"},
327                             "Size of the biggest TCP window (cat /proc/sys/net/ipv4/tcp_[rw]mem for recv/send window; "
328                             "Use the last given value, which is the max window size)");
329
330   simgrid::config::bindFlag(sg_surf_precision, "surf/precision",
331                             "Numerical precision used when updating simulation times (in seconds)");
332
333   simgrid::config::bindFlag(sg_maxmin_precision, "maxmin/precision",
334                             "Numerical precision used when computing resource sharing (in flops/sec or bytes/sec)");
335
336   simgrid::config::bindFlag(sg_concurrency_limit, "maxmin/concurrency-limit",
337                             "Maximum number of concurrent variables in the maxmim system. Also limits the number of "
338                             "processes on each host, at higher level. (default: -1 means no such limitation)");
339   xbt_cfg_register_alias("maxmin/concurrency-limit", "maxmin/concurrency_limit");
340
341   /* The parameters of network models */
342
343   sg_latency_factor = 13.01; // comes from the default LV08 network model
344   simgrid::config::bindFlag(sg_latency_factor, {"network/latency-factor", "network/latency_factor"},
345                             "Correction factor to apply to the provided latency (default value set by network model)");
346
347   sg_bandwidth_factor = 0.97; // comes from the default LV08 network model
348   simgrid::config::bindFlag(
349       sg_bandwidth_factor, {"network/bandwidth-factor", "network/bandwidth_factor"},
350       "Correction factor to apply to the provided bandwidth (default value set by network model)");
351
352   sg_weight_S_parameter = 20537; // comes from the default LV08 network model
353   simgrid::config::bindFlag(
354       sg_weight_S_parameter, {"network/weight-S", "network/weight_S"},
355       "Correction factor to apply to the weight of competing streams (default value set by network model)");
356
357   /* Inclusion path */
358   simgrid::config::declareFlag<std::string>("path", "Lookup path for inclusions in platform and deployment XML files",
359                                             "", [](std::string const& path) {
360                                               if (path[0] != '\0') {
361                                                 surf_path.push_back(path);
362                                               }
363                                             });
364
365   xbt_cfg_register_boolean("cpu/maxmin-selective-update", "no", nullptr, "Update the constraint set propagating "
366                                                                          "recursively to others constraints (off by "
367                                                                          "default when optim is set to lazy)");
368   xbt_cfg_register_alias("cpu/maxmin-selective-update", "cpu/maxmin_selective_update");
369   xbt_cfg_register_boolean("network/maxmin-selective-update", "no", nullptr, "Update the constraint set propagating "
370                                                                              "recursively to others constraints (off "
371                                                                              "by default when optim is set to lazy)");
372   xbt_cfg_register_alias("network/maxmin-selective-update", "network/maxmin_selective_update");
373   /* Replay (this part is enabled even if MC it disabled) */
374   xbt_cfg_register_string("model-check/replay", nullptr, _sg_cfg_cb_model_check_replay,
375                           "Model-check path to replay (as reported by SimGrid when a violation is reported)");
376
377 #if SIMGRID_HAVE_MC
378     /* do model-checking-record */
379     xbt_cfg_register_boolean("model-check/record", "no", _sg_cfg_cb_model_check_record, "Record the model-checking paths");
380
381     xbt_cfg_register_int("model-check/checkpoint", 0, _mc_cfg_cb_checkpoint,
382         "Specify the amount of steps between checkpoints during stateful model-checking (default: 0 => stateless verification). "
383         "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.");
384
385     xbt_cfg_register_boolean("model-check/sparse-checkpoint", "no", _mc_cfg_cb_sparse_checkpoint, "Use sparse per-page snapshots.");
386     xbt_cfg_register_boolean("model-check/ksm", "no", _mc_cfg_cb_ksm, "Kernel same-page merging");
387
388     xbt_cfg_register_string("model-check/property", "", _mc_cfg_cb_property,
389                             "Name of the file containing the property, as formatted by the ltl2ba program.");
390     xbt_cfg_register_boolean("model-check/communications-determinism", "no", _mc_cfg_cb_comms_determinism,
391         "Whether to enable the detection of communication determinism");
392     xbt_cfg_register_alias("model-check/communications-determinism","model-check/communications_determinism");
393
394     xbt_cfg_register_boolean("model-check/send-determinism", "no", _mc_cfg_cb_send_determinism,
395         "Enable/disable the detection of send-determinism in the communications schemes");
396     xbt_cfg_register_alias("model-check/send-determinism","model-check/send_determinism");
397
398     /* Specify the kind of model-checking reduction */
399     xbt_cfg_register_string("model-check/reduction", "dpor", _mc_cfg_cb_reduce,
400         "Specify the kind of exploration reduction (either none or DPOR)");
401     xbt_cfg_register_boolean("model-check/timeout", "no",  _mc_cfg_cb_timeout,
402         "Whether to enable timeouts for wait requests");
403
404     xbt_cfg_register_boolean("model-check/hash", "no", _mc_cfg_cb_hash, "Whether to enable state hash for state comparison (experimental)");
405     xbt_cfg_register_boolean("model-check/snapshot-fds", "no",  _mc_cfg_cb_snapshot_fds,
406         "Whether file descriptors must be snapshoted (currently unusable)");
407     xbt_cfg_register_alias("model-check/snapshot-fds","model-check/snapshot_fds");
408     xbt_cfg_register_int("model-check/max-depth", 1000, _mc_cfg_cb_max_depth, "Maximal exploration depth (default: 1000)");
409     xbt_cfg_register_alias("model-check/max-depth","model-check/max_depth");
410     xbt_cfg_register_int("model-check/visited", 0, _mc_cfg_cb_visited,
411         "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.");
412
413     xbt_cfg_register_string("model-check/dot-output", "", _mc_cfg_cb_dot_output, "Name of dot output file corresponding to graph state");
414     xbt_cfg_register_alias("model-check/dot-output","model-check/dot_output");
415     xbt_cfg_register_boolean("model-check/termination", "no", _mc_cfg_cb_termination, "Whether to enable non progressive cycle detection");
416 #endif
417
418     xbt_cfg_register_boolean("verbose-exit", "yes", _sg_cfg_cb_verbose_exit, "Activate the \"do nothing\" mode in Ctrl-C");
419
420     xbt_cfg_register_int("contexts/stack-size", 8*1024, _sg_cfg_cb_context_stack_size, "Stack size of contexts in KiB");
421     /* (FIXME: this is unpleasant) Reset this static variable that was altered when setting the default value. */
422     smx_context_stack_size_was_set = 0;
423     xbt_cfg_register_alias("contexts/stack-size","contexts/stack_size");
424
425     /* guard size for contexts stacks in memory pages */
426     xbt_cfg_register_int("contexts/guard-size",
427 #if defined(_WIN32) || (PTH_STACKGROWTH != -1)
428         0,
429 #else
430         1,
431 #endif
432     _sg_cfg_cb_context_guard_size, "Guard size for contexts stacks in memory pages");
433     /* No, it was not set yet (the above setdefault() changed this to 1). */
434     smx_context_guard_size_was_set = 0;
435     xbt_cfg_register_alias("contexts/guard-size","contexts/guard_size");
436     xbt_cfg_register_int("contexts/nthreads", 1, _sg_cfg_cb_contexts_nthreads, "Number of parallel threads used to execute user contexts");
437
438     xbt_cfg_register_int("contexts/parallel-threshold", 2, _sg_cfg_cb_contexts_parallel_threshold,
439         "Minimal number of user contexts to be run in parallel (raw contexts only)");
440     xbt_cfg_register_alias("contexts/parallel-threshold","contexts/parallel_threshold");
441
442     /* synchronization mode for parallel user contexts */
443 #if HAVE_FUTEX_H
444     xbt_cfg_register_string("contexts/synchro", "futex",     _sg_cfg_cb_contexts_parallel_mode,
445         "Synchronization mode to use when running contexts in parallel (either futex, posix or busy_wait)");
446 #else //No futex on mac and posix is unimplememted yet
447     xbt_cfg_register_string("contexts/synchro", "busy_wait", _sg_cfg_cb_contexts_parallel_mode,
448         "Synchronization mode to use when running contexts in parallel (either futex, posix or busy_wait)");
449 #endif
450
451     xbt_cfg_register_boolean("network/crosstraffic", "yes", _sg_cfg_cb__surf_network_crosstraffic,
452         "Activate the interferences between uploads and downloads for fluid max-min models (LV08, CM02)");
453
454     // For smpi/bw-factor and smpi/lat-factor
455     // SMPI model can be used without enable_smpi, so keep this out of the ifdef.
456     xbt_cfg_register_string("smpi/bw-factor",
457         "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,
458         "Bandwidth factors for smpi. Format: 'threshold0:value0;threshold1:value1;...;thresholdN:valueN', meaning if(size >=thresholdN ) return valueN.");
459     xbt_cfg_register_alias("smpi/bw-factor","smpi/bw_factor");
460
461     xbt_cfg_register_string("smpi/lat-factor",
462         "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.");
463     xbt_cfg_register_alias("smpi/lat-factor","smpi/lat_factor");
464
465     xbt_cfg_register_string("smpi/IB-penalty-factors", "0.965;0.925;1.35", nullptr,
466         "Correction factor to communications using Infiniband model with contention (default value based on Stampede cluster profiling)");
467     xbt_cfg_register_alias("smpi/IB-penalty-factors","smpi/IB_penalty_factors");
468
469 #if HAVE_SMPI
470     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.");
471     xbt_cfg_register_alias("smpi/host-speed","smpi/running_power");
472     xbt_cfg_register_alias("smpi/host-speed","smpi/running-power");
473
474     xbt_cfg_register_boolean("smpi/keep-temps", "no", nullptr, "Whether we should keep the generated temporary files.");
475
476     xbt_cfg_register_boolean("smpi/display-timing", "no", nullptr, "Whether we should display the timing after simulation.");
477     xbt_cfg_register_alias("smpi/display-timing", "smpi/display_timing");
478
479     xbt_cfg_register_boolean("smpi/simulate-computation", "yes", nullptr, "Whether the computational part of the simulated application should be simulated.");
480     xbt_cfg_register_alias("smpi/simulate-computation","smpi/simulate_computation");
481
482     xbt_cfg_register_string("smpi/shared-malloc", "global", nullptr,
483                             "Whether SMPI_SHARED_MALLOC is enabled. Disable it for debugging purposes.");
484     xbt_cfg_register_alias("smpi/shared-malloc", "smpi/use-shared-malloc");
485     xbt_cfg_register_alias("smpi/shared-malloc", "smpi/use_shared_malloc");
486     xbt_cfg_register_double("smpi/shared-malloc-blocksize", 1UL << 20, nullptr, "Size of the bogus file which will be created for global shared allocations");
487     xbt_cfg_register_string("smpi/shared-malloc-hugepage", "", nullptr,
488                             "Path to a mounted hugetlbfs, to use huge pages with shared malloc.");
489
490     xbt_cfg_register_double("smpi/cpu-threshold", 1e-6, nullptr, "Minimal computation time (in seconds) not discarded, or -1 for infinity.");
491     xbt_cfg_register_alias("smpi/cpu-threshold", "smpi/cpu_threshold");
492
493     xbt_cfg_register_int("smpi/async-small-thresh", 0, nullptr,
494         "Maximal size of messages that are to be sent asynchronously, without waiting for the receiver");
495     xbt_cfg_register_alias("smpi/async-small-thresh","smpi/async_small_thresh");
496     xbt_cfg_register_alias("smpi/async-small-thresh","smpi/async_small_thres");
497
498     xbt_cfg_register_boolean("smpi/trace-call-location", "no", nullptr, "Should filename and linenumber of MPI calls be traced?");
499
500     xbt_cfg_register_int("smpi/send-is-detached-thresh", 65536, nullptr,
501         "Threshold of message size where MPI_Send stops behaving like MPI_Isend and becomes MPI_Ssend");
502     xbt_cfg_register_alias("smpi/send-is-detached-thresh","smpi/send_is_detached_thresh");
503     xbt_cfg_register_alias("smpi/send-is-detached-thresh","smpi/send_is_detached_thres");
504
505     const char* default_privatization = std::getenv("SMPI_PRIVATIZATION");
506     if (default_privatization == nullptr)
507       default_privatization = "no";
508
509     xbt_cfg_register_string("smpi/privatization", default_privatization, nullptr,
510                             "How we should privatize global variable at runtime (no, yes, mmap, dlopen).");
511
512     xbt_cfg_register_alias("smpi/privatization", "smpi/privatize-global-variables");
513     xbt_cfg_register_alias("smpi/privatization", "smpi/privatize_global_variables");
514
515     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.");
516
517 #if HAVE_PAPI
518     xbt_cfg_register_string("smpi/papi-events", nullptr, nullptr, "This switch enables tracking the specified counters with PAPI");
519 #endif
520     xbt_cfg_register_string("smpi/comp-adjustment-file", nullptr, nullptr, "A file containing speedups or slowdowns for some parts of the code.");
521     xbt_cfg_register_string("smpi/os", "0:0:0:0:0", nullptr,  "Small messages timings (MPI_Send minimum time for small messages)");
522     xbt_cfg_register_string("smpi/ois", "0:0:0:0:0", nullptr, "Small messages timings (MPI_Isend minimum time for small messages)");
523     xbt_cfg_register_string("smpi/or", "0:0:0:0:0", nullptr,  "Small messages timings (MPI_Recv minimum time for small messages)");
524
525     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).");
526
527     xbt_cfg_register_string("smpi/coll-selector", "default", nullptr, "Which collective selector to use");
528     xbt_cfg_register_alias("smpi/coll-selector","smpi/coll_selector");
529     xbt_cfg_register_string("smpi/gather",        nullptr, nullptr, "Which collective to use for gather");
530     xbt_cfg_register_string("smpi/allgather",     nullptr, nullptr, "Which collective to use for allgather");
531     xbt_cfg_register_string("smpi/barrier",       nullptr, nullptr, "Which collective to use for barrier");
532     xbt_cfg_register_string("smpi/reduce_scatter",nullptr, nullptr, "Which collective to use for reduce_scatter");
533     xbt_cfg_register_alias("smpi/reduce_scatter","smpi/reduce-scatter");
534     xbt_cfg_register_string("smpi/scatter",       nullptr, nullptr, "Which collective to use for scatter");
535     xbt_cfg_register_string("smpi/allgatherv",    nullptr, nullptr, "Which collective to use for allgatherv");
536     xbt_cfg_register_string("smpi/allreduce",     nullptr, nullptr, "Which collective to use for allreduce");
537     xbt_cfg_register_string("smpi/alltoall",      nullptr, nullptr, "Which collective to use for alltoall");
538     xbt_cfg_register_string("smpi/alltoallv",     nullptr, nullptr,"Which collective to use for alltoallv");
539     xbt_cfg_register_string("smpi/bcast",         nullptr, nullptr, "Which collective to use for bcast");
540     xbt_cfg_register_string("smpi/reduce",        nullptr, nullptr, "Which collective to use for reduce");
541 #endif // HAVE_SMPI
542
543     /* Storage */
544
545     sg_storage_max_file_descriptors = 1024;
546     simgrid::config::bindFlag(sg_storage_max_file_descriptors, "storage/max_file_descriptors",
547       "Maximum number of concurrently opened files per host. Default is 1024");
548
549     /* Others */
550
551     xbt_cfg_register_boolean("exception/cutpath", "no", nullptr,
552         "Whether to cut all path information from call traces, used e.g. in exceptions.");
553
554     xbt_cfg_register_boolean("clean-atexit", "yes", _sg_cfg_cb_clean_atexit,
555         "Whether to cleanup SimGrid at exit. Disable it if your code segfaults after its end.");
556     xbt_cfg_register_alias("clean-atexit","clean_atexit");
557
558     if (surf_path.empty()) {
559       /* retrieves the current directory of the current process */
560       const char *initial_path = __surf_get_initial_path();
561       xbt_assert((initial_path), "__surf_get_initial_path() failed! Can't resolve current Windows directory");
562
563       xbt_cfg_setdefault_string("path", initial_path);
564     }
565
566     _sg_cfg_init_status = 1;
567
568     sg_config_cmd_line(argc, argv);
569
570     xbt_mallocator_initialization_is_done(SIMIX_context_is_parallel());
571 }
572
573 void sg_config_finalize()
574 {
575   if (not _sg_cfg_init_status)
576     return;                     /* Not initialized yet. Nothing to do */
577
578   xbt_cfg_free(&simgrid_config);
579   _sg_cfg_init_status = 0;
580 }