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