Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cb1cdc9d3105bcb78d75218ed7acd8aa0081e933
[simgrid.git] / src / simgrid / sg_config.cpp
1 /* Copyright (c) 2009-2010, 2012-2015. 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 "xbt/misc.h"
10 #include "xbt/config.h"
11 #include "xbt/log.h"
12 #include "xbt/mallocator.h"
13 #include "xbt/str.h"
14 #include "xbt/lib.h"
15 #include "xbt/sysdep.h"
16 #include "surf/surf.h"
17 #include "surf/maxmin.h"
18 #include "instr/instr_interface.h"
19 #include "simgrid/simix.h"
20 #include "simgrid/sg_config.h"
21 #include "simgrid_config.h" /* what was compiled in? */
22 #if HAVE_SMPI
23 #include "smpi/smpi_interface.h"
24 #endif
25 #include "mc/mc.h"
26 #include "simgrid/instr.h"
27 #include "src/mc/mc_replay.h"
28
29 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_config, surf, "About the configuration of SimGrid");
30
31
32 /* 0: beginning of time (config cannot be changed yet);
33  * 1: initialized: cfg_set created (config can now be changed);
34  * 2: configured: command line parsed and config part of platform file was
35  *    integrated also, platform construction ongoing or done.
36  *    (Config cannot be changed anymore!)
37  */
38 int _sg_cfg_init_status = 0;
39
40 /* instruct the upper layer (simix or simdag) to exit as soon as possible */
41 int _sg_cfg_exit_asap = 0;
42
43 #define sg_cfg_exit_early() do { _sg_cfg_exit_asap = 1; return; } while (0)
44
45 /* Parse the command line, looking for options */
46 static void sg_config_cmd_line(int *argc, char **argv)
47 {
48   int shall_exit = 0;
49   int i, j;
50
51   for (j = i = 1; i < *argc; i++) {
52     if (!strncmp(argv[i], "--cfg=", strlen("--cfg="))) {
53       char *opt = strchr(argv[i], '=');
54       opt++;
55
56       xbt_cfg_set_parse(opt);
57       XBT_DEBUG("Did apply '%s' as config setting", opt);
58     } else if (!strcmp(argv[i], "--version")) {
59       printf("%s\n", SIMGRID_VERSION_STRING);
60       shall_exit = 1;
61     } else if (!strcmp(argv[i], "--cfg-help") || !strcmp(argv[i], "--help")) {
62       printf("Description of the configuration accepted by this simulator:\n");
63       xbt_cfg_help();
64       printf(
65           "\n"
66           "Each of these configurations can be used by adding\n"
67           "    --cfg=<option name>:<option value>\n"
68           "to the command line.\n"
69           "\n"
70           "For more information, please refer to:\n"
71           "   --help-aliases for the list of all option aliases.\n"
72           "   --help-logs and --help-log-categories for the details of logging output.\n"
73           "   --help-models for a list of all models known by this simulator.\n"
74           "   --help-tracing for the details of all tracing options known by this simulator.\n"
75           "   --version to get SimGrid version information.\n"
76           "\n"
77         );
78       shall_exit = 1;
79     } else if (!strcmp(argv[i], "--help-aliases")) {
80       printf("Here is a list of all deprecated option names, with their replacement.\n");
81       xbt_cfg_aliases();
82       printf("Please consider using the recent names\n");
83       shall_exit = 1;
84     } else if (!strcmp(argv[i], "--help-models")) {
85       model_help("host", surf_host_model_description);
86       printf("\n");
87       model_help("CPU", surf_cpu_model_description);
88       printf("\n");
89       model_help("network", surf_network_model_description);
90       printf("\nLong description of all optimization levels accepted by the models of this simulator:\n");
91       for (int k = 0; surf_optimization_mode_description[k].name; k++)
92         printf("  %s: %s\n",
93                surf_optimization_mode_description[k].name,
94                surf_optimization_mode_description[k].description);
95       printf("Both network and CPU models have 'Lazy' as default optimization level\n\n");
96       shall_exit = 1;
97     } else if (!strcmp(argv[i], "--help-tracing")) {
98       TRACE_help (1);
99       shall_exit = 1;
100     } else {
101       argv[j++] = argv[i];
102     }
103   }
104   if (j < *argc) {
105     argv[j] = NULL;
106     *argc = j;
107   }
108   if (shall_exit)
109     sg_cfg_exit_early();
110 }
111
112 /* callback of the plugin variable */
113 static void _sg_cfg_cb__plugin(const char *name)
114 {
115   xbt_assert(_sg_cfg_init_status < 2, "Cannot load a plugin after the initialization");
116
117   char *val = xbt_cfg_get_string(name);
118   if (val==nullptr)
119     return;
120
121   if (!strcmp(val, "help")) {
122     model_help("plugin", surf_plugin_description);
123     sg_cfg_exit_early();
124   }
125
126   int plugin_id = find_model_description(surf_plugin_description, val);
127   surf_plugin_description[plugin_id].model_init_preparse();
128 }
129
130 /* callback of the host/model variable */
131 static void _sg_cfg_cb__host_model(const char *name)
132 {
133   xbt_assert(_sg_cfg_init_status < 2, "Cannot change the model after the initialization");
134
135   char *val = xbt_cfg_get_string(name);
136   if (!strcmp(val, "help")) {
137     model_help("host", surf_host_model_description);
138     sg_cfg_exit_early();
139   }
140
141   /* Make sure that the model exists */
142   find_model_description(surf_host_model_description, val);
143 }
144
145 /* callback of the vm/model variable */
146 static void _sg_cfg_cb__vm_model(const char *name)
147 {
148   xbt_assert(_sg_cfg_init_status < 2, "Cannot change the model after the initialization");
149
150   char *val = xbt_cfg_get_string(name);
151   if (!strcmp(val, "help")) {
152     model_help("vm", surf_vm_model_description);
153     sg_cfg_exit_early();
154   }
155
156   /* Make sure that the model exists */
157   find_model_description(surf_vm_model_description, val);
158 }
159
160 /* callback of the cpu/model variable */
161 static void _sg_cfg_cb__cpu_model(const char *name)
162 {
163   xbt_assert(_sg_cfg_init_status < 2, "Cannot change the model after the initialization");
164
165   char *val = xbt_cfg_get_string(name);
166   if (!strcmp(val, "help")) {
167     model_help("CPU", surf_cpu_model_description);
168     sg_cfg_exit_early();
169   }
170
171   /* New Module missing */
172   find_model_description(surf_cpu_model_description, val);
173 }
174
175 /* callback of the cpu/model variable */
176 static void _sg_cfg_cb__optimization_mode(const char *name)
177 {
178   xbt_assert(_sg_cfg_init_status < 2, "Cannot change the model after the initialization");
179
180   char *val = xbt_cfg_get_string(name);
181   if (!strcmp(val, "help")) {
182     model_help("optimization", surf_optimization_mode_description);
183     sg_cfg_exit_early();
184   }
185
186   /* New Module missing */
187   find_model_description(surf_optimization_mode_description, val);
188 }
189
190 /* callback of the cpu/model variable */
191 static void _sg_cfg_cb__storage_mode(const char *name)
192 {
193   xbt_assert(_sg_cfg_init_status < 2, "Cannot change the model after the initialization");
194
195   char *val = xbt_cfg_get_string(name);
196   if (!strcmp(val, "help")) {
197     model_help("storage", surf_storage_model_description);
198     sg_cfg_exit_early();
199   }
200
201   find_model_description(surf_storage_model_description, val);
202 }
203
204 /* callback of the network_model variable */
205 static void _sg_cfg_cb__network_model(const char *name)
206 {
207   xbt_assert(_sg_cfg_init_status < 2, "Cannot change the model after the initialization");
208
209   char *val = xbt_cfg_get_string(name);
210   if (!strcmp(val, "help")) {
211     model_help("network", surf_network_model_description);
212     sg_cfg_exit_early();
213   }
214
215   /* New Module missing */
216   find_model_description(surf_network_model_description, val);
217 }
218
219 /* callbacks of the network models values */
220 static void _sg_cfg_cb__tcp_gamma(const char *name)
221 {
222   sg_tcp_gamma = xbt_cfg_get_double(name);
223 }
224
225 static void _sg_cfg_cb__maxmin_precision(const char* name)
226 {
227   sg_maxmin_precision = xbt_cfg_get_double(name);
228 }
229
230 static void _sg_cfg_cb__surf_precision(const char* name)
231 {
232   sg_surf_precision = xbt_cfg_get_double(name);
233 }
234
235 static void _sg_cfg_cb__sender_gap(const char* name)
236 {
237   sg_sender_gap = xbt_cfg_get_double(name);
238 }
239
240 static void _sg_cfg_cb__latency_factor(const char *name)
241 {
242   sg_latency_factor = xbt_cfg_get_double(name);
243 }
244
245 static void _sg_cfg_cb__bandwidth_factor(const char *name)
246 {
247   sg_bandwidth_factor = xbt_cfg_get_double(name);
248 }
249
250 static void _sg_cfg_cb__weight_S(const char *name)
251 {
252   sg_weight_S_parameter = xbt_cfg_get_double(name);
253 }
254
255 #if HAVE_SMPI
256 /* callback of the mpi collectives: simply check that this is a valid name. It will be picked up in smpi_global.cpp */
257 static void _check_coll(const char *category,
258                              s_mpi_coll_description_t * table,
259                              const char *name)
260 {
261   xbt_assert(_sg_cfg_init_status < 2, "Cannot change the collective algorithm after the initialization");
262
263   char *val = xbt_cfg_get_string(name);
264   if (val && !strcmp(val, "help")) {
265     coll_help(category, table);
266     sg_cfg_exit_early();
267   }
268
269   find_coll_description(table, val, category);
270 }
271 static void _check_coll_gather(const char *name){
272   _check_coll("gather", mpi_coll_gather_description, name);
273 }
274 static void _check_coll_allgather(const char *name){
275   _check_coll("allgather", mpi_coll_allgather_description, name);
276 }
277 static void _check_coll_allgatherv(const char *name){
278   _check_coll("allgatherv", mpi_coll_allgatherv_description, name);
279 }
280 static void _check_coll_allreduce(const char *name)
281 {
282   _check_coll("allreduce", mpi_coll_allreduce_description, name);
283 }
284 static void _check_coll_alltoall(const char *name)
285 {
286   _check_coll("alltoall", mpi_coll_alltoall_description, name);
287 }
288 static void _check_coll_alltoallv(const char *name)
289 {
290   _check_coll("alltoallv", mpi_coll_alltoallv_description, name);
291 }
292 static void _check_coll_bcast(const char *name)
293 {
294   _check_coll("bcast", mpi_coll_bcast_description, name);
295 }
296 static void _check_coll_reduce(const char *name)
297 {
298   _check_coll("reduce", mpi_coll_reduce_description, name);
299 }
300 static void _check_coll_reduce_scatter(const char *name){
301   _check_coll("reduce_scatter", mpi_coll_reduce_scatter_description, name);
302 }
303 static void _check_coll_scatter(const char *name){
304   _check_coll("scatter", mpi_coll_scatter_description, name);
305 }
306 static void _check_coll_barrier(const char *name){
307   _check_coll("barrier", mpi_coll_barrier_description, name);
308 }
309
310 static void _sg_cfg_cb__wtime_sleep(const char *name){
311   smpi_wtime_sleep = xbt_cfg_get_double(name);
312 }
313
314 static void _sg_cfg_cb__iprobe_sleep(const char *name){
315   smpi_iprobe_sleep = xbt_cfg_get_double(name);
316 }
317
318 static void _sg_cfg_cb__test_sleep(const char *name){
319   smpi_test_sleep = xbt_cfg_get_double(name);
320 }
321 #endif
322
323 /* callback of the inclusion path */
324 static void _sg_cfg_cb__surf_path(const char *name)
325 {
326   char *path = xbt_cfg_get_string(name);
327   if (path[0]) {// ignore ""
328     path = xbt_strdup(path);
329     xbt_dynar_push(surf_path, &path);
330   }
331 }
332
333 /* callback to decide if we want to use the model-checking */
334 #include "src/xbt_modinter.h"
335
336 static void _sg_cfg_cb_model_check_replay(const char *name) {
337   MC_record_path = xbt_cfg_get_string(name);
338 }
339
340 #if HAVE_MC
341 extern int _sg_do_model_check_record;
342 static void _sg_cfg_cb_model_check_record(const char *name) {
343   _sg_do_model_check_record = xbt_cfg_get_boolean(name);
344 }
345 #endif
346
347 extern int _sg_do_verbose_exit;
348 static void _sg_cfg_cb_verbose_exit(const char *name)
349 {
350   _sg_do_verbose_exit = xbt_cfg_get_boolean(name);
351 }
352
353 extern int _sg_do_clean_atexit;
354 static void _sg_cfg_cb_clean_atexit(const char *name)
355 {
356   _sg_do_clean_atexit = xbt_cfg_get_boolean(name);
357 }
358
359 static void _sg_cfg_cb_context_factory(const char *name)
360 {
361   smx_context_factory_name = xbt_cfg_get_string(name);
362 }
363
364 static void _sg_cfg_cb_context_stack_size(const char *name)
365 {
366   smx_context_stack_size_was_set = 1;
367   smx_context_stack_size = xbt_cfg_get_int(name) * 1024;
368 }
369
370 static void _sg_cfg_cb_context_guard_size(const char *name)
371 {
372   smx_context_guard_size_was_set = 1;
373   smx_context_guard_size = xbt_cfg_get_int(name) * xbt_pagesize;
374 }
375
376 static void _sg_cfg_cb_contexts_nthreads(const char *name)
377 {
378   SIMIX_context_set_nthreads(xbt_cfg_get_int(name));
379 }
380
381 static void _sg_cfg_cb_contexts_parallel_threshold(const char *name)
382 {
383   SIMIX_context_set_parallel_threshold(xbt_cfg_get_int(name));
384 }
385
386 static void _sg_cfg_cb_contexts_parallel_mode(const char *name)
387 {
388   const char* mode_name = xbt_cfg_get_string(name);
389   if (!strcmp(mode_name, "posix")) {
390     SIMIX_context_set_parallel_mode(XBT_PARMAP_POSIX);
391   }
392   else if (!strcmp(mode_name, "futex")) {
393     SIMIX_context_set_parallel_mode(XBT_PARMAP_FUTEX);
394   }
395   else if (!strcmp(mode_name, "busy_wait")) {
396     SIMIX_context_set_parallel_mode(XBT_PARMAP_BUSY_WAIT);
397   }
398   else {
399     xbt_die("Command line setting of the parallel synchronization mode should "
400             "be one of \"posix\", \"futex\" or \"busy_wait\"");
401   }
402 }
403
404 static void _sg_cfg_cb__surf_network_coordinates(const char *name)
405 {
406   static int already_set = 0;
407   int val = xbt_cfg_get_boolean(name);
408   if (val) {
409     if (!already_set) {
410       COORD_HOST_LEVEL = sg_host_extension_create(xbt_dynar_free_voidp);
411       COORD_ASR_LEVEL  = xbt_lib_add_level(as_router_lib,xbt_dynar_free_voidp);
412     }
413     already_set = 1;
414   } else
415     if (already_set)
416       xbt_die("Setting of whether to use coordinate cannot be disabled once set.");
417 }
418
419 static void _sg_cfg_cb__surf_network_crosstraffic(const char *name)
420 {
421   sg_network_crosstraffic = xbt_cfg_get_boolean(name);
422 }
423
424 /* build description line with possible values */
425 static void describe_model(char *result,
426                            const s_surf_model_description_t model_description[],
427                            const char *name,
428                            const char *description)
429 {
430   char *p = result +
431     sprintf(result, "%s. Possible values: %s", description,
432             model_description[0].name ? model_description[0].name : "n/a");
433   for (int i = 1; model_description[i].name; i++)
434     p += sprintf(p, ", %s", model_description[i].name);
435   sprintf(p, ".\n       (use 'help' as a value to see the long description of each %s)", name);
436 }
437
438 /* create the config set, register what should be and parse the command line*/
439 void sg_config_init(int *argc, char **argv)
440 {
441   char description[1024];
442
443   /* Create the configuration support */
444   if (_sg_cfg_init_status == 0) { /* Only create stuff if not already inited */
445
446     /* Plugins configuration */
447     describe_model(description, surf_plugin_description, "plugin", "The plugins");
448     xbt_cfg_register_string("plugin", nullptr, &_sg_cfg_cb__plugin, description);
449
450     describe_model(description, surf_cpu_model_description, "model", "The model to use for the CPU");
451     xbt_cfg_register_string("cpu/model", "Cas01", &_sg_cfg_cb__cpu_model, description);
452
453     describe_model(description, surf_optimization_mode_description, "optimization mode", "The optimization modes to use for the CPU");
454     xbt_cfg_register_string("cpu/optim", "Lazy", &_sg_cfg_cb__optimization_mode, description);
455
456     describe_model(description, surf_storage_model_description, "model", "The model to use for the storage");
457     xbt_cfg_register_string("storage/model", "default", &_sg_cfg_cb__storage_mode, description);
458
459     describe_model(description, surf_network_model_description, "model", "The model to use for the network");
460     xbt_cfg_register_string("network/model", "LV08", &_sg_cfg_cb__network_model, description);
461
462     describe_model(description, surf_optimization_mode_description, "optimization mode", "The optimization modes to use for the network");
463     xbt_cfg_register_string("network/optim", "Lazy", &_sg_cfg_cb__optimization_mode, description);
464
465     describe_model(description, surf_host_model_description, "model", "The model to use for the host");
466     xbt_cfg_register_string("host/model", "default", &_sg_cfg_cb__host_model, description);
467
468     describe_model(description, surf_vm_model_description, "model", "The model to use for the vm");
469     xbt_cfg_register_string("vm/model", "default", &_sg_cfg_cb__vm_model, description);
470
471     xbt_cfg_register_double("network/TCP-gamma",  4194304.0, _sg_cfg_cb__tcp_gamma,
472         "Size of the biggest TCP window (cat /proc/sys/net/ipv4/tcp_[rw]mem for recv/send window; Use the last given value, which is the max window size)");
473     xbt_cfg_register_alias("network/TCP-gamma","network/TCP_gamma");
474     xbt_cfg_register_double("surf/precision", 0.00001, _sg_cfg_cb__surf_precision,
475         "Numerical precision used when updating simulation times (in seconds)");
476     xbt_cfg_register_double("maxmin/precision", 0.00001, _sg_cfg_cb__maxmin_precision,
477         "Numerical precision used when computing resource sharing (in ops/sec or bytes/sec)");
478
479     /* The parameters of network models */
480
481     xbt_cfg_register_double("network/sender-gap", NAN, _sg_cfg_cb__sender_gap,
482         "Minimum gap between two overlapping sends"); /* real default for "network/sender-gap" is set in network_smpi.cpp */
483     xbt_cfg_register_alias("network/sender-gap","network/sender_gap");
484     xbt_cfg_register_double("network/latency-factor", 1.0, _sg_cfg_cb__latency_factor,
485         "Correction factor to apply to the provided latency (default value set by network model)");
486     xbt_cfg_register_alias("network/latency-factor","network/latency_factor");
487     xbt_cfg_register_double("network/bandwidth-factor", 1.0, _sg_cfg_cb__bandwidth_factor, "Correction factor to apply to the provided bandwidth (default value set by network model)");
488     xbt_cfg_register_alias("network/bandwidth-factor","network/bandwidth_factor");
489     xbt_cfg_register_double("network/weight-S", NAN, _sg_cfg_cb__weight_S, /* real default for "network/weight-S" is set in network_*.cpp */
490         "Correction factor to apply to the weight of competing streams (default value set by network model)");
491     xbt_cfg_register_alias("network/weight-S","network/weight_S");
492
493     /* Inclusion path */
494     xbt_cfg_register_string("path", "", _sg_cfg_cb__surf_path, "Lookup path for inclusions in platform and deployment XML files");
495
496     xbt_cfg_register_boolean("cpu/maxmin-selective-update", "no", NULL,
497         "Update the constraint set propagating recursively to others constraints (off by default when optim is set to lazy)");
498     xbt_cfg_register_alias("cpu/maxmin-selective-update","cpu/maxmin_selective_update");
499     xbt_cfg_register_boolean("network/maxmin-selective-update", "no", NULL,
500         "Update the constraint set propagating recursively to others constraints (off by default when optim is set to lazy)");
501     xbt_cfg_register_alias("network/maxmin-selective-update","network/maxmin_selective_update");
502     /* Replay (this part is enabled even if MC it disabled) */
503     xbt_cfg_register_string("model-check/replay", nullptr, _sg_cfg_cb_model_check_replay,
504         "Model-check path to replay (as reported by SimGrid when a violation is reported)");
505
506 #if HAVE_MC
507     /* do model-checking-record */
508     xbt_cfg_register_boolean("model-check/record", "no", _sg_cfg_cb_model_check_record, "Record the model-checking paths");
509
510     xbt_cfg_register_int("model-check/checkpoint", 0, _mc_cfg_cb_checkpoint,
511         "Specify the amount of steps between checkpoints during stateful model-checking (default: 0 => stateless verification). "
512         "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.");
513
514     xbt_cfg_register_boolean("model-check/sparse-checkpoint", "no", _mc_cfg_cb_sparse_checkpoint, "Use sparse per-page snapshots.");
515     xbt_cfg_register_boolean("model-check/ksm", "no", _mc_cfg_cb_ksm, "Kernel same-page merging");
516
517     xbt_cfg_register_string("model-check/property","", _mc_cfg_cb_property,
518         "Name of the file containing the property, as formated by the ltl2ba program.");
519     xbt_cfg_register_boolean("model-check/communications-determinism", "no", _mc_cfg_cb_comms_determinism,
520         "Whether to enable the detection of communication determinism");
521     xbt_cfg_register_alias("model-check/communications-determinism","model-check/communications_determinism");
522
523     xbt_cfg_register_boolean("model-check/send-determinism", "no", _mc_cfg_cb_send_determinism,
524         "Enable/disable the detection of send-determinism in the communications schemes");
525     xbt_cfg_register_alias("model-check/send-determinism","model-check/send_determinism");
526
527     /* Specify the kind of model-checking reduction */
528     xbt_cfg_register_string("model-check/reduction", "dpor", _mc_cfg_cb_reduce,
529         "Specify the kind of exploration reduction (either none or DPOR)");
530     xbt_cfg_register_boolean("model-check/timeout", "no",  _mc_cfg_cb_timeout,
531         "Whether to enable timeouts for wait requests");
532
533     xbt_cfg_register_boolean("model-check/hash", "no", _mc_cfg_cb_hash, "Whether to enable state hash for state comparison (experimental)");
534     xbt_cfg_register_boolean("model-check/snapshot-fds", "no",  _mc_cfg_cb_snapshot_fds,
535         "Whether file descriptors must be snapshoted (currently unusable)");
536     xbt_cfg_register_alias("model-check/snapshot-fds","model-check/snapshot_fds");
537     xbt_cfg_register_int("model-check/max-depth", 1000, _mc_cfg_cb_max_depth, "Maximal exploration depth (default: 1000)");
538     xbt_cfg_register_alias("model-check/max-depth","model-check/max_depth");
539     xbt_cfg_register_int("model-check/visited", 0, _mc_cfg_cb_visited,
540         "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.");
541
542     xbt_cfg_register_string("model-check/dot-output", "", _mc_cfg_cb_dot_output, "Name of dot output file corresponding to graph state");
543     xbt_cfg_register_alias("model-check/dot-output","model-check/dot_output");
544     xbt_cfg_register_boolean("model-check/termination", "no", _mc_cfg_cb_termination, "Whether to enable non progressive cycle detection");
545 #endif
546
547     xbt_cfg_register_boolean("verbose-exit", "yes", _sg_cfg_cb_verbose_exit, "Activate the \"do nothing\" mode in Ctrl-C");
548
549     /* context factory */
550     const char *dflt_ctx_fact = "thread";
551     {
552       char *p = description +
553         sprintf(description, "Context factory to use in SIMIX. Possible values: %s", dflt_ctx_fact);
554 #if HAVE_UCONTEXT_CONTEXTS
555       dflt_ctx_fact = "ucontext";
556       p += sprintf(p, ", %s", dflt_ctx_fact);
557 #endif
558 #if HAVE_RAW_CONTEXTS
559       dflt_ctx_fact = "raw";
560       p += sprintf(p, ", %s", dflt_ctx_fact);
561 #endif
562       sprintf(p, ".");
563     }
564     xbt_cfg_register_string("contexts/factory", dflt_ctx_fact, _sg_cfg_cb_context_factory, description);
565
566     xbt_cfg_register_int("contexts/stack-size", 8*1024, _sg_cfg_cb_context_stack_size, "Stack size of contexts in KiB");
567     /* (FIXME: this is unpleasant) Reset this static variable that was altered when setting the default value. */
568     smx_context_stack_size_was_set = 0;
569     xbt_cfg_register_alias("contexts/stack-size","contexts/stack_size");
570
571     /* guard size for contexts stacks in memory pages */
572     xbt_cfg_register_int("contexts/guard-size",
573 #if defined(_WIN32) || (PTH_STACKGROWTH != -1)
574         0,
575 #else
576         1,
577 #endif
578     _sg_cfg_cb_context_guard_size, "Guard size for contexts stacks in memory pages");
579     /* No, it was not set yet (the above setdefault() changed this to 1). */
580     smx_context_guard_size_was_set = 0;
581     xbt_cfg_register_alias("contexts/guard-size","contexts/guard_size");
582     xbt_cfg_register_int("contexts/nthreads", 1, _sg_cfg_cb_contexts_nthreads, "Number of parallel threads used to execute user contexts");
583
584     xbt_cfg_register_int("contexts/parallel-threshold", 2, _sg_cfg_cb_contexts_parallel_threshold,
585         "Minimal number of user contexts to be run in parallel (raw contexts only)");
586     xbt_cfg_register_alias("contexts/parallel-threshold","contexts/parallel_threshold");
587
588     /* synchronization mode for parallel user contexts */
589 #if HAVE_FUTEX_H
590     xbt_cfg_register_string("contexts/synchro", "futex",     _sg_cfg_cb_contexts_parallel_mode,
591         "Synchronization mode to use when running contexts in parallel (either futex, posix or busy_wait)");
592 #else //No futex on mac and posix is unimplememted yet
593     xbt_cfg_register_string("contexts/synchro", "busy_wait", _sg_cfg_cb_contexts_parallel_mode,
594         "Synchronization mode to use when running contexts in parallel (either futex, posix or busy_wait)");
595 #endif
596
597     xbt_cfg_register_boolean("network/coordinates", "no", _sg_cfg_cb__surf_network_coordinates,
598         "Whether we use a coordinate-based routing (as Vivaldi)");
599
600     xbt_cfg_register_boolean("network/crosstraffic", "yes", _sg_cfg_cb__surf_network_crosstraffic,
601         "Activate the interferences between uploads and downloads for fluid max-min models (LV08, CM02)");
602
603 #if HAVE_NS3
604     xbt_cfg_register_string("ns3/TcpModel", "default", NULL, "The ns3 tcp model can be : NewReno or Reno or Tahoe");
605 #endif
606
607     //For smpi/bw_factor and smpi/lat_factor
608     // SMPI model can be used without enable_smpi, so keep this out of the ifdef.
609     xbt_cfg_register_string("smpi/bw-factor",
610         "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", NULL,
611         "Bandwidth factors for smpi. Format: 'threshold0:value0;threshold1:value1;...;thresholdN:valueN', meaning if(size >=thresholdN ) return valueN.");
612     xbt_cfg_register_alias("smpi/bw-factor","smpi/bw_factor");
613
614     xbt_cfg_register_string("smpi/lat-factor",
615         "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", NULL, "Latency factors for smpi.");
616     xbt_cfg_register_alias("smpi/lat-factor","smpi/lat_factor");
617     
618     xbt_cfg_register_string("smpi/IB-penalty-factors", "0.965;0.925;1.35", NULL,
619         "Correction factor to communications using Infiniband model with contention (default value based on Stampede cluster profiling)");
620     xbt_cfg_register_alias("smpi/IB-penalty-factors","smpi/IB_penalty_factors");
621     
622 #if HAVE_SMPI
623     xbt_cfg_register_double("smpi/running-power", 20000.0, NULL, "Power of the host running the simulation (in flop/s). Used to bench the operations.");
624     xbt_cfg_register_alias("smpi/running-power","smpi/running_power");
625
626     xbt_cfg_register_boolean("smpi/display-timing", "no", NULL, "Whether we should display the timing after simulation.");
627     xbt_cfg_register_alias("smpi/display-timing", "smpi/display_timing");
628
629     xbt_cfg_register_boolean("smpi/simulate-computation", "yes", NULL, "Whether the computational part of the simulated application should be simulated.");
630     xbt_cfg_register_alias("smpi/simulate-computation","smpi/simulate_computation");
631
632     xbt_cfg_register_boolean("smpi/use-shared-malloc", "yes", NULL, "Whether SMPI_SHARED_MALLOC is enabled. Disable it for debugging purposes.");
633     xbt_cfg_register_alias("smpi/use-shared-malloc", "smpi/use_shared_malloc");
634
635     xbt_cfg_register_double("smpi/cpu-threshold", 1e-6, NULL, "Minimal computation time (in seconds) not discarded, or -1 for infinity.");
636     xbt_cfg_register_alias("smpi/cpu-threshold", "smpi/cpu_threshold");
637
638     xbt_cfg_register_int("smpi/async-small-thresh", 0, NULL,
639         "Maximal size of messages that are to be sent asynchronously, without waiting for the receiver");
640     xbt_cfg_register_alias("smpi/async-small-thresh","smpi/async_small_thresh");
641
642     xbt_cfg_register_int("smpi/send-is-detached-thresh", 65536, NULL,
643         "Threshold of message size where MPI_Send stops behaving like MPI_Isend and becomes MPI_Ssend");
644     xbt_cfg_register_alias("smpi/send-is-detached-thresh","smpi/send_is_detached_thresh");
645
646     xbt_cfg_register_boolean("smpi/privatize-global-variables", "no", NULL, "Whether we should privatize global variable at runtime.");
647     xbt_cfg_register_alias("smpi/privatize-global-variables", "smpi/privatize_global_variables");
648
649     xbt_cfg_register_string("smpi/os", "1:0:0:0:0", NULL,  "Small messages timings (MPI_Send minimum time for small messages)");
650     xbt_cfg_register_string("smpi/ois", "1:0:0:0:0", NULL, "Small messages timings (MPI_Isend minimum time for small messages)");
651     xbt_cfg_register_string("smpi/or", "1:0:0:0:0", NULL,  "Small messages timings (MPI_Recv minimum time for small messages)");
652     xbt_cfg_register_double("smpi/iprobe", 1e-4, _sg_cfg_cb__iprobe_sleep, "Minimum time to inject inside a call to MPI_Iprobe");
653     xbt_cfg_register_double("smpi/test", 1e-4, _sg_cfg_cb__test_sleep, "Minimum time to inject inside a call to MPI_Test");
654     xbt_cfg_register_double("smpi/wtime", 0.0, _sg_cfg_cb__wtime_sleep, "Minimum time to inject inside a call to MPI_Wtime");
655
656     xbt_cfg_register_string("smpi/coll-selector", "default", NULL, "Which collective selector to use");
657     xbt_cfg_register_alias("smpi/coll-selector","smpi/coll_selector");
658     xbt_cfg_register_string("smpi/gather",        nullptr, &_check_coll_gather, "Which collective to use for gather");
659     xbt_cfg_register_string("smpi/allgather",     nullptr, &_check_coll_allgather, "Which collective to use for allgather");
660     xbt_cfg_register_string("smpi/barrier",       nullptr, &_check_coll_barrier, "Which collective to use for barrier");
661     xbt_cfg_register_string("smpi/reduce-scatter",nullptr, &_check_coll_reduce_scatter, "Which collective to use for reduce_scatter");
662     xbt_cfg_register_alias("smpi/reduce-scatter","smpi/reduce_scatter");
663     xbt_cfg_register_string("smpi/scatter",       nullptr, &_check_coll_scatter, "Which collective to use for scatter");
664     xbt_cfg_register_string("smpi/allgatherv",    nullptr, &_check_coll_allgatherv, "Which collective to use for allgatherv");
665     xbt_cfg_register_string("smpi/allreduce",     nullptr, &_check_coll_allreduce, "Which collective to use for allreduce");
666     xbt_cfg_register_string("smpi/alltoall",      nullptr, &_check_coll_alltoall, "Which collective to use for alltoall");
667     xbt_cfg_register_string("smpi/alltoallv",     nullptr, &_check_coll_alltoallv,"Which collective to use for alltoallv");
668     xbt_cfg_register_string("smpi/bcast",         nullptr, &_check_coll_bcast, "Which collective to use for bcast");
669     xbt_cfg_register_string("smpi/reduce",        nullptr, &_check_coll_reduce, "Which collective to use for reduce");
670 #endif // HAVE_SMPI
671
672     xbt_cfg_register_boolean("exception/cutpath", "no", NULL,
673         "Whether to cut all path information from call traces, used e.g. in exceptions.");
674
675     xbt_cfg_register_boolean("clean-atexit", "yes", _sg_cfg_cb_clean_atexit,
676         "Whether to cleanup SimGrid at exit. Disable it if your code segfaults after its end.");
677     xbt_cfg_register_alias("clean-atexit","clean_atexit");
678
679     if (!surf_path) {
680       /* retrieves the current directory of the current process */
681       const char *initial_path = __surf_get_initial_path();
682       xbt_assert((initial_path), "__surf_get_initial_path() failed! Can't resolve current Windows directory");
683
684       surf_path = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
685       xbt_cfg_setdefault_string("path", initial_path);
686     }
687
688     _sg_cfg_init_status = 1;
689
690     sg_config_cmd_line(argc, argv);
691
692     xbt_mallocator_initialization_is_done(SIMIX_context_is_parallel());
693   } else {
694     XBT_WARN("Call to sg_config_init() after initialization ignored");
695   }
696 }
697
698 void sg_config_finalize(void)
699 {
700   if (!_sg_cfg_init_status)
701     return;                     /* Not initialized yet. Nothing to do */
702
703   xbt_cfg_free(&simgrid_config);
704   _sg_cfg_init_status = 0;
705 }