Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b9e903bd368997ed372bfb0db429079d8a5bf25b
[simgrid.git] / src / surf / surf_config.c
1 /* Copyright (c) 2009, 2010. 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 /* surf_config: configuration infrastructure for the simulation world       */
8
9 #include "xbt/config.h"
10 #include "xbt/log.h"
11 #include "xbt/str.h"
12 #include "surf/surf_private.h"
13 #include "surf/surf_routing.h"  /* COORD_HOST_LEVEL and COORD_ASR_LEVEL */
14 #include "simgrid/simix.h"
15 #include "mc/mc.h" /* configuration callbacks of model-checking */
16
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_config, surf,
18                                 "About the configuration of surf (and the rest of the simulation)");
19
20 xbt_cfg_t _surf_cfg_set = NULL;
21
22 /* Parse the command line, looking for options */
23 static void surf_config_cmd_line(int *argc, char **argv)
24 {
25   int shall_exit = 0;
26   int i, j;
27   char *opt;
28
29   for (j = i = 1; i < *argc; i++) {
30     if (!strncmp(argv[i], "--cfg=", strlen("--cfg="))) {
31       opt = strchr(argv[i], '=');
32       opt++;
33
34       xbt_cfg_set_parse(_surf_cfg_set, opt);
35       XBT_DEBUG("Did apply '%s' as config setting", opt);
36     } else if (!strcmp(argv[i], "--cfg-help") || !strcmp(argv[i], "--help")) {
37       printf
38           ("Description of the configuration accepted by this simulator:\n");
39       xbt_cfg_help(_surf_cfg_set);
40       printf(
41 "\n"
42 "Each of these configurations can be used by adding\n"
43 "    --cfg=<option name>:<option value>\n"
44 "to the command line.\n"
45 "You can also use --help-models to see the details of all models known by this simulator.\n"
46 #ifdef HAVE_TRACING
47 "\n"
48 "You can also use --help-tracing to see the details of all tracing options known by this simulator.\n"
49 #endif
50 "\n"
51 "You can also use --help-logs and --help-log-categories to see the details of logging output.\n"
52 "\n"
53         );
54       shall_exit = 1;
55     } else if (!strcmp(argv[i], "--help-models")) {
56       int k;
57
58       model_help("workstation", surf_workstation_model_description);
59       printf("\n");
60       model_help("CPU", surf_cpu_model_description);
61       printf("\n");
62       model_help("network", surf_network_model_description);
63       printf("\nLong description of all optimization levels accepted by the models of this simulator:\n");
64       for (k = 0; surf_optimization_mode_description[k].name; k++)
65         printf("  %s: %s\n",
66                surf_optimization_mode_description[k].name,
67                surf_optimization_mode_description[k].description);
68       printf("Both network and CPU models have 'Lazy' as default optimization level\n\n");
69       shall_exit = 1;
70 #ifdef HAVE_TRACING
71     } else if (!strcmp(argv[i], "--help-tracing")) {
72       TRACE_help (1);
73       shall_exit = 1;
74 #endif
75     } else {
76       argv[j++] = argv[i];
77     }
78   }
79   if (j < *argc) {
80     argv[j] = NULL;
81     *argc = j;
82   }
83   if (shall_exit)
84     exit(0);
85 }
86
87
88 int _surf_init_status = 0;      /* 0: beginning of time;
89                                    1: pre-inited (cfg_set created);
90                                    2: inited (running) */
91
92 /* callback of the workstation/model variable */
93 static void _surf_cfg_cb__workstation_model(const char *name, int pos)
94 {
95   char *val;
96
97   xbt_assert(_surf_init_status < 2,
98               "Cannot change the model after the initialization");
99
100   val = xbt_cfg_get_string(_surf_cfg_set, name);
101
102   if (!strcmp(val, "help")) {
103     model_help("workstation", surf_workstation_model_description);
104     exit(0);
105   }
106
107   /* Make sure that the model exists */
108   find_model_description(surf_workstation_model_description, val);
109 }
110
111 /* callback of the cpu/model variable */
112 static void _surf_cfg_cb__cpu_model(const char *name, int pos)
113 {
114   char *val;
115
116   xbt_assert(_surf_init_status < 2,
117               "Cannot change the model after the initialization");
118
119   val = xbt_cfg_get_string(_surf_cfg_set, name);
120
121   if (!strcmp(val, "help")) {
122     model_help("CPU", surf_cpu_model_description);
123     exit(0);
124   }
125
126   /* New Module missing */
127   find_model_description(surf_cpu_model_description, val);
128 }
129
130 /* callback of the cpu/model variable */
131 static void _surf_cfg_cb__optimization_mode(const char *name, int pos)
132 {
133   char *val;
134
135   xbt_assert(_surf_init_status < 2,
136               "Cannot change the model after the initialization");
137
138   val = xbt_cfg_get_string(_surf_cfg_set, name);
139
140   if (!strcmp(val, "help")) {
141     model_help("optimization", surf_optimization_mode_description);
142     exit(0);
143   }
144
145   /* New Module missing */
146   find_model_description(surf_optimization_mode_description, val);
147 }
148
149 /* callback of the cpu/model variable */
150 static void _surf_cfg_cb__storage_mode(const char *name, int pos)
151 {
152   char *val;
153
154   xbt_assert(_surf_init_status < 2,
155               "Cannot change the model after the initialization");
156
157   val = xbt_cfg_get_string(_surf_cfg_set, name);
158
159   if (!strcmp(val, "help")) {
160     model_help("storage", surf_storage_model_description);
161     exit(0);
162   }
163
164   /* New Module missing */
165   find_model_description(surf_storage_model_description, val);
166 }
167
168 /* callback of the workstation_model variable */
169 static void _surf_cfg_cb__network_model(const char *name, int pos)
170 {
171   char *val;
172
173   xbt_assert(_surf_init_status < 2,
174               "Cannot change the model after the initialization");
175
176   val = xbt_cfg_get_string(_surf_cfg_set, name);
177
178   if (!strcmp(val, "help")) {
179     model_help("network", surf_network_model_description);
180     exit(0);
181   }
182
183   /* New Module missing */
184   find_model_description(surf_network_model_description, val);
185 }
186
187
188 /* callbacks of the network models values */
189 static void _surf_cfg_cb__tcp_gamma(const char *name, int pos)
190 {
191   sg_tcp_gamma = xbt_cfg_get_double(_surf_cfg_set, name);
192 }
193
194 static void _surf_cfg_cb__maxmin_precision(const char* name, int pos)
195 {
196   sg_maxmin_precision = xbt_cfg_get_double(_surf_cfg_set, name);
197 }
198
199 static void _surf_cfg_cb__sender_gap(const char* name, int pos)
200 {
201   sg_sender_gap = xbt_cfg_get_double(_surf_cfg_set, name);
202 }
203
204 static void _surf_cfg_cb__latency_factor(const char *name, int pos)
205 {
206   sg_latency_factor = xbt_cfg_get_double(_surf_cfg_set, name);
207 }
208
209 static void _surf_cfg_cb__bandwidth_factor(const char *name, int pos)
210 {
211   sg_bandwidth_factor = xbt_cfg_get_double(_surf_cfg_set, name);
212 }
213
214 static void _surf_cfg_cb__weight_S(const char *name, int pos)
215 {
216   sg_weight_S_parameter = xbt_cfg_get_double(_surf_cfg_set, name);
217 }
218
219 /* callback of the inclusion path */
220 static void _surf_cfg_cb__surf_path(const char *name, int pos)
221 {
222   char *path = xbt_cfg_get_string_at(_surf_cfg_set, name, pos);
223   xbt_dynar_push(surf_path, &path);
224 }
225
226 /* callback to decide if we want to use the model-checking */
227 #include "xbt_modinter.h"
228 extern int _surf_do_model_check;   /* this variable lives in xbt_main until I find a right location for it */
229
230 static void _surf_cfg_cb_model_check(const char *name, int pos)
231 {
232   _surf_do_model_check = xbt_cfg_get_int(_surf_cfg_set, name);
233
234   if (_surf_do_model_check) {
235 #ifndef HAVE_MC
236     xbt_die("You tried to activate the model-checking from the command line, but it was not compiled in. Change your settings in cmake, recompile and try again");
237 #endif
238     /* Tell modules using mallocators that they shouldn't. MC don't like them */
239     xbt_fifo_preinit();
240     xbt_dict_preinit();
241   }
242 }
243
244 extern int _surf_do_verbose_exit;
245
246 static void _surf_cfg_cb_verbose_exit(const char *name, int pos)
247 {
248   _surf_do_verbose_exit = xbt_cfg_get_int(_surf_cfg_set, name);
249 }
250
251
252 static void _surf_cfg_cb_context_factory(const char *name, int pos) {
253   smx_context_factory_name = xbt_cfg_get_string(_surf_cfg_set, name);
254 }
255
256 static void _surf_cfg_cb_context_stack_size(const char *name, int pos)
257 {
258   smx_context_stack_size = xbt_cfg_get_int(_surf_cfg_set, name) * 1024;
259 }
260
261 static void _surf_cfg_cb_contexts_nthreads(const char *name, int pos)
262 {
263   SIMIX_context_set_nthreads(xbt_cfg_get_int(_surf_cfg_set, name));
264 }
265
266 static void _surf_cfg_cb_contexts_parallel_threshold(const char *name, int pos)
267 {
268   SIMIX_context_set_parallel_threshold(xbt_cfg_get_int(_surf_cfg_set, name));
269 }
270
271 static void _surf_cfg_cb_contexts_parallel_mode(const char *name, int pos)
272 {
273   const char* mode_name = xbt_cfg_get_string(_surf_cfg_set, name);
274   if (!strcmp(mode_name, "posix")) {
275     SIMIX_context_set_parallel_mode(XBT_PARMAP_POSIX);
276   }
277   else if (!strcmp(mode_name, "futex")) {
278     SIMIX_context_set_parallel_mode(XBT_PARMAP_FUTEX);
279   }
280   else if (!strcmp(mode_name, "busy_wait")) {
281     SIMIX_context_set_parallel_mode(XBT_PARMAP_BUSY_WAIT);
282   }
283   else {
284     xbt_die("Command line setting of the parallel synchronization mode should "
285         "be one of \"posix\", \"futex\" or \"busy_wait\"");
286   }
287 }
288
289 static void _surf_cfg_cb_surf_nthreads(const char *name, int pos)
290 {
291   surf_set_nthreads(xbt_cfg_get_int(_surf_cfg_set, name));
292 }
293
294 static void _surf_cfg_cb__surf_network_coordinates(const char *name,
295                                                    int pos)
296 {
297   char *val = xbt_cfg_get_string(_surf_cfg_set, name);
298   if (!strcmp(val, "yes")) {
299     if (!COORD_HOST_LEVEL) {
300       COORD_HOST_LEVEL = xbt_lib_add_level(host_lib,xbt_dynar_free_voidp);
301       COORD_ASR_LEVEL  = xbt_lib_add_level(as_router_lib,xbt_dynar_free_voidp);
302     }
303   } else if (!strcmp(val, "no")) {
304     if (COORD_HOST_LEVEL)
305       xbt_die("Setting of whether to use coordinate cannot be disabled once set.");
306   } else {
307     xbt_die("Command line setting of whether to use coordinates must be either \"yes\" or \"no\"");
308   }
309 }
310
311 static void _surf_cfg_cb__surf_network_crosstraffic(const char *name,
312                                                   int pos)
313 {
314   sg_network_crosstraffic = xbt_cfg_get_int(_surf_cfg_set, name);
315 }
316
317 #ifdef HAVE_GTNETS
318 static void _surf_cfg_cb__gtnets_jitter(const char *name, int pos)
319 {
320   sg_gtnets_jitter = xbt_cfg_get_double(_surf_cfg_set, name);
321 }
322
323 static void _surf_cfg_cb__gtnets_jitter_seed(const char *name, int pos)
324 {
325   sg_gtnets_jitter_seed = xbt_cfg_get_int(_surf_cfg_set, name);
326 }
327 #endif
328
329 /* create the config set, register what should be and parse the command line*/
330 void surf_config_init(int *argc, char **argv)
331 {
332   char *description = xbt_malloc(1024), *p = description;
333   char *default_value;
334   double double_default_value;
335   int default_value_int;
336   int i;
337
338   /* Create the configuration support */
339   if (_surf_init_status == 0) { /* Only create stuff if not already inited */
340     _surf_init_status = 1;
341
342     sprintf(description,
343             "The model to use for the CPU. Possible values: ");
344     p = description;
345     while (*(++p) != '\0');
346     for (i = 0; surf_cpu_model_description[i].name; i++)
347       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
348                    surf_cpu_model_description[i].name);
349     sprintf(p,
350             ".\n       (use 'help' as a value to see the long description of each model)");
351     default_value = xbt_strdup("Cas01");
352     xbt_cfg_register(&_surf_cfg_set, "cpu/model", description, xbt_cfgelm_string,
353                      &default_value, 1, 1, &_surf_cfg_cb__cpu_model, NULL);
354
355     sprintf(description,
356             "The optimization modes to use for the CPU. Possible values: ");
357     p = description;
358     while (*(++p) != '\0');
359     for (i = 0; surf_optimization_mode_description[i].name; i++)
360       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
361                    surf_optimization_mode_description[i].name);
362     sprintf(p,
363             ".\n       (use 'help' as a value to see the long description of each optimization mode)");
364     default_value = xbt_strdup("Lazy");
365     xbt_cfg_register(&_surf_cfg_set, "cpu/optim", description, xbt_cfgelm_string,
366                      &default_value, 1, 1, &_surf_cfg_cb__optimization_mode, NULL);
367
368     sprintf(description,
369             "The model to use for the storage. Possible values: ");
370     p = description;
371     while (*(++p) != '\0');
372     for (i = 0; surf_storage_model_description[i].name; i++)
373       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
374                    surf_storage_model_description[i].name);
375     sprintf(p,
376             ".\n       (use 'help' as a value to see the long description of each model)");
377     default_value = xbt_strdup("default");
378     xbt_cfg_register(&_surf_cfg_set, "storage/model", description, xbt_cfgelm_string,
379                      &default_value, 1, 1, &_surf_cfg_cb__storage_mode,
380                      NULL);
381
382     sprintf(description,
383             "The model to use for the network. Possible values: ");
384     p = description;
385     while (*(++p) != '\0');
386     for (i = 0; surf_network_model_description[i].name; i++)
387       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
388                    surf_network_model_description[i].name);
389     sprintf(p,
390             ".\n       (use 'help' as a value to see the long description of each model)");
391     default_value = xbt_strdup("LV08");
392     xbt_cfg_register(&_surf_cfg_set, "network/model", description, xbt_cfgelm_string,
393                      &default_value, 1, 1, &_surf_cfg_cb__network_model,
394                      NULL);
395
396     sprintf(description,
397             "The optimization modes to use for the network. Possible values: ");
398     p = description;
399     while (*(++p) != '\0');
400     for (i = 0; surf_optimization_mode_description[i].name; i++)
401       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
402                    surf_optimization_mode_description[i].name);
403     sprintf(p,
404             ".\n       (use 'help' as a value to see the long description of each optimization mode)");
405     default_value = xbt_strdup("Lazy");
406     xbt_cfg_register(&_surf_cfg_set, "network/optim", description, xbt_cfgelm_string,
407                      &default_value, 1, 1, &_surf_cfg_cb__optimization_mode, NULL);
408
409     sprintf(description,
410             "The model to use for the workstation. Possible values: ");
411     p = description;
412     while (*(++p) != '\0');
413     for (i = 0; surf_workstation_model_description[i].name; i++)
414       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
415                    surf_workstation_model_description[i].name);
416     sprintf(p,
417             ".\n       (use 'help' as a value to see the long description of each model)");
418     default_value = xbt_strdup("default");
419     xbt_cfg_register(&_surf_cfg_set, "workstation/model", description, xbt_cfgelm_string,
420                      &default_value, 1, 1,
421                      &_surf_cfg_cb__workstation_model, NULL);
422
423     xbt_free(description);
424
425     xbt_cfg_register(&_surf_cfg_set, "network/TCP_gamma",
426                      "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)",
427                      xbt_cfgelm_double, NULL, 1, 1,
428                      _surf_cfg_cb__tcp_gamma, NULL);
429     xbt_cfg_setdefault_double(_surf_cfg_set, "network/TCP_gamma", 20000.0);
430
431     xbt_cfg_register(&_surf_cfg_set, "maxmin/precision",
432                      "Numerical precision used when updating simulation models (epsilon in double comparisons)",
433                      xbt_cfgelm_double, NULL, 1, 1, _surf_cfg_cb__maxmin_precision, NULL);
434     xbt_cfg_setdefault_double(_surf_cfg_set, "maxmin/precision", 0.00001); // FIXME use setdefault everywhere here!
435
436     /* The parameters of network models */
437
438     double_default_value = 0.0;
439     xbt_cfg_register(&_surf_cfg_set, "network/sender_gap",
440                      "Minimum gap between two overlapping sends",
441                      xbt_cfgelm_double, &double_default_value, 1, 1,
442                      _surf_cfg_cb__sender_gap, NULL);
443
444     double_default_value = 1.0;
445     xbt_cfg_register(&_surf_cfg_set, "network/latency_factor",
446                      "Correction factor to apply to the provided latency (default value set by network model)",
447                      xbt_cfgelm_double, &double_default_value, 1, 1,
448                      _surf_cfg_cb__latency_factor, NULL);
449     double_default_value = 1.0;
450     xbt_cfg_register(&_surf_cfg_set, "network/bandwidth_factor",
451                      "Correction factor to apply to the provided bandwidth (default value set by network model)",
452                      xbt_cfgelm_double, &double_default_value, 1, 1,
453                      _surf_cfg_cb__bandwidth_factor, NULL);
454     double_default_value = 0.0;
455     xbt_cfg_register(&_surf_cfg_set, "network/weight_S",
456                      "Correction factor to apply to the weight of competing streams(default value set by network model)",
457                      xbt_cfgelm_double, &double_default_value, 1, 1,
458                      _surf_cfg_cb__weight_S, NULL);
459
460     /* Inclusion path */
461     xbt_cfg_register(&_surf_cfg_set, "path",
462                      "Lookup path for inclusions in platform and deployment XML files",
463                      xbt_cfgelm_string, NULL, 0, 0,
464                      _surf_cfg_cb__surf_path, NULL);
465
466     default_value_int = 0;
467     xbt_cfg_register(&_surf_cfg_set, "cpu/maxmin_selective_update",
468                      "Update the constraint set propagating recursively to others constraints (1 by default when optim is set to lazy)",
469                      xbt_cfgelm_int, &default_value_int, 0, 1,
470                      NULL, NULL);
471     default_value_int = 0;
472     xbt_cfg_register(&_surf_cfg_set, "network/maxmin_selective_update",
473                      "Update the constraint set propagating recursively to others constraints (1 by default when optim is set to lazy)",
474                      xbt_cfgelm_int, &default_value_int, 0, 1,
475                      NULL, NULL);
476
477 #if HAVE_MC
478     /* do model-checking */
479     default_value_int = 0;
480     xbt_cfg_register(&_surf_cfg_set, "model-check",
481                      "Verify the system through model-checking instead of simulating it (EXPERIMENTAL)",
482                      xbt_cfgelm_int, &default_value_int, 0, 1,
483                      _surf_cfg_cb_model_check, NULL);
484
485     /* do stateful model-checking */
486     default_value_int = 0;
487     xbt_cfg_register(&_surf_cfg_set, "model-check/checkpoint",
488                      "Specify the amount of steps between checkpoints during stateful model-checking (default: 0 => stateless verification). "
489                      "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.",
490                      xbt_cfgelm_int, &default_value_int, 0, 1,
491                      _mc_cfg_cb_checkpoint, NULL);
492     
493     /* do liveness model-checking */
494     default_value = xbt_strdup("");
495     xbt_cfg_register(&_surf_cfg_set, "model-check/property",
496                      "Specify the name of the file containing the property. It must be the result of the ltl2ba program.",
497                      xbt_cfgelm_string, &default_value, 0, 1,
498                      _mc_cfg_cb_property, NULL);
499
500     /* Specify the kind of model-checking reduction */
501     default_value = xbt_strdup("unset");
502     xbt_cfg_register(&_surf_cfg_set, "model-check/reduction",
503                      "Specify the kind of exploration reduction (either none or DPOR)",
504                      xbt_cfgelm_string, &default_value, 0, 1,
505                      _mc_cfg_cb_reduce, NULL);
506 #endif
507
508     /* do verbose-exit */
509     default_value_int = 1;
510     xbt_cfg_register(&_surf_cfg_set, "verbose-exit",
511                      "Activate the \"do nothing\" mode in Ctrl-C",
512                      xbt_cfgelm_int, &default_value_int, 0, 1,
513                      _surf_cfg_cb_verbose_exit, NULL);
514     
515     
516     /* context factory */
517     default_value = xbt_strdup("ucontext");
518     xbt_cfg_register(&_surf_cfg_set, "contexts/factory",
519                      "Context factory to use in SIMIX (ucontext, thread or raw)",
520                      xbt_cfgelm_string, &default_value, 1, 1, _surf_cfg_cb_context_factory, NULL);
521
522     /* stack size of contexts in Ko */
523     default_value_int = 128;
524     xbt_cfg_register(&_surf_cfg_set, "contexts/stack_size",
525                      "Stack size of contexts in Kib (ucontext or raw only)",
526                      xbt_cfgelm_int, &default_value_int, 1, 1,
527                      _surf_cfg_cb_context_stack_size, NULL);
528
529     /* number of parallel threads for user processes */
530     default_value_int = 1;
531     xbt_cfg_register(&_surf_cfg_set, "contexts/nthreads",
532                      "Number of parallel threads used to execute user contexts",
533                      xbt_cfgelm_int, &default_value_int, 1, 1,
534                      _surf_cfg_cb_contexts_nthreads, NULL);
535
536     /* minimal number of user contexts to be run in parallel */
537     default_value_int = 2;
538     xbt_cfg_register(&_surf_cfg_set, "contexts/parallel_threshold",
539         "Minimal number of user contexts to be run in parallel (raw contexts only)",
540         xbt_cfgelm_int, &default_value_int, 1, 1,
541         _surf_cfg_cb_contexts_parallel_threshold, NULL);
542
543     /* synchronization mode for parallel user contexts */
544 #ifdef HAVE_FUTEX_H
545     default_value = xbt_strdup("futex");
546 #else //No futex on mac and posix is unimplememted yet
547     default_value = xbt_strdup("busy_wait");
548 #endif
549     xbt_cfg_register(&_surf_cfg_set, "contexts/synchro",
550         "Synchronization mode to use when running contexts in parallel (either futex, posix or busy_wait)",
551         xbt_cfgelm_string, &default_value, 1, 1,
552         _surf_cfg_cb_contexts_parallel_mode, NULL);
553
554     /* number of parallel threads for Surf */
555     default_value_int = surf_get_nthreads();
556     xbt_cfg_register(&_surf_cfg_set, "surf/nthreads",
557                      "Number of parallel threads used to update Surf models",
558                      xbt_cfgelm_int, &default_value_int, 1, 1,
559                      _surf_cfg_cb_surf_nthreads, NULL);
560
561     default_value = xbt_strdup("no");
562     xbt_cfg_register(&_surf_cfg_set, "network/coordinates",
563                      "\"yes\" or \"no\", specifying whether we use a coordinate-based routing (as Vivaldi)",
564                      xbt_cfgelm_string, &default_value, 1, 1,
565                      _surf_cfg_cb__surf_network_coordinates, NULL);
566     xbt_cfg_setdefault_string(_surf_cfg_set, "network/coordinates", default_value);
567
568     default_value_int = 0;
569     xbt_cfg_register(&_surf_cfg_set, "network/crosstraffic",
570                      "Activate the interferences between uploads and downloads for fluid max-min models (LV08, CM02)",
571                      xbt_cfgelm_int, &default_value_int, 0, 1,
572                      _surf_cfg_cb__surf_network_crosstraffic, NULL);
573     xbt_cfg_setdefault_int(_surf_cfg_set, "network/crosstraffic", default_value_int);
574
575 #ifdef HAVE_GTNETS
576     xbt_cfg_register(&_surf_cfg_set, "gtnets/jitter",
577                      "Double value to oscillate the link latency, uniformly in random interval [-latency*gtnets_jitter,latency*gtnets_jitter)",
578                      xbt_cfgelm_double, NULL, 1, 1,
579                      _surf_cfg_cb__gtnets_jitter, NULL);
580     xbt_cfg_setdefault_double(_surf_cfg_set, "gtnets/jitter", 0.0);
581
582     default_value_int = 10;
583     xbt_cfg_register(&_surf_cfg_set, "gtnets/jitter_seed",
584                      "Use a positive seed to reproduce jitted results, value must be in [1,1e8], default is 10",
585                      xbt_cfgelm_int, &default_value_int, 0, 1,
586                      _surf_cfg_cb__gtnets_jitter_seed, NULL);
587 #endif
588 #ifdef HAVE_NS3
589     xbt_cfg_register(&_surf_cfg_set, "ns3/TcpModel",
590                      "The ns3 tcp model can be : NewReno or Reno or Tahoe",
591                      xbt_cfgelm_string, NULL, 1, 1,
592                      NULL, NULL);
593     xbt_cfg_setdefault_string(_surf_cfg_set, "ns3/TcpModel", "default");
594 #endif
595
596 //SMPI
597     double default_reference_speed = 20000.0;
598     xbt_cfg_register(&_surf_cfg_set, "smpi/running_power",
599                      "Power of the host running the simulation (in flop/s). Used to bench the operations.",
600                      xbt_cfgelm_double, &default_reference_speed, 1, 1, NULL,
601                      NULL);
602
603     int default_display_timing = 0;
604     xbt_cfg_register(&_surf_cfg_set, "smpi/display_timing",
605                      "Boolean indicating whether we should display the timing after simulation.",
606                      xbt_cfgelm_int, &default_display_timing, 1, 1, NULL,
607                      NULL);
608
609     double default_threshold = 1e-6;
610     xbt_cfg_register(&_surf_cfg_set, "smpi/cpu_threshold",
611                      "Minimal computation time (in seconds) not discarded.",
612                      xbt_cfgelm_double, &default_threshold, 1, 1, NULL,
613                      NULL);
614
615     //For smpi/bw_factor and smpi/lat_factor
616     //Default value have to be "threshold0:value0;threshold1:value1;...;thresholdN:valueN"
617     //test is if( size >= thresholdN ) return valueN;
618     //Values can be modified with command line --cfg=smpi/bw_factor:"threshold0:value0;threshold1:value1;...;thresholdN:valueN"
619     //  or with tag config put line <prop id="smpi/bw_factor" value="threshold0:value0;threshold1:value1;...;thresholdN:valueN"></prop>
620     xbt_cfg_register(&_surf_cfg_set, "smpi/bw_factor",
621                      "Bandwidth factors for smpi.",
622                      xbt_cfgelm_string, NULL, 1, 1, NULL,
623                      NULL);
624     xbt_cfg_setdefault_string(_surf_cfg_set, "smpi/bw_factor", "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");
625
626     xbt_cfg_register(&_surf_cfg_set, "smpi/lat_factor",
627                      "Latency factors for smpi.",
628                      xbt_cfgelm_string, NULL, 1, 1, NULL,
629                      NULL);
630     xbt_cfg_setdefault_string(_surf_cfg_set, "smpi/lat_factor", "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");
631 //END SMPI
632
633
634     if (!surf_path) {
635       /* retrieves the current directory of the        current process */
636       const char *initial_path = __surf_get_initial_path();
637       xbt_assert((initial_path),
638                   "__surf_get_initial_path() failed! Can't resolves current Windows directory");
639
640       surf_path = xbt_dynar_new(sizeof(char *), NULL);
641       xbt_cfg_setdefault_string(_surf_cfg_set, "path", initial_path);
642     }
643
644
645     surf_config_cmd_line(argc, argv);
646   } else {
647     XBT_WARN("Call to surf_config_init() after initialization ignored");
648   }
649 }
650
651 void surf_config_finalize(void)
652 {
653   if (!_surf_init_status)
654     return;                     /* Not initialized yet. Nothing to do */
655
656   xbt_cfg_free(&_surf_cfg_set);
657   _surf_init_status = 0;
658 }
659
660 /* Pick the right models for CPU, net and workstation, and call their model_init_preparse */
661 void surf_config_models_setup()
662 {
663   char *workstation_model_name;
664   int workstation_id = -1;
665   char *network_model_name = NULL;
666   char *cpu_model_name = NULL;
667   int storage_id = -1;
668   char *storage_model_name = NULL;
669
670   workstation_model_name =
671       xbt_cfg_get_string(_surf_cfg_set, "workstation/model");
672   network_model_name = xbt_cfg_get_string(_surf_cfg_set, "network/model");
673   cpu_model_name = xbt_cfg_get_string(_surf_cfg_set, "cpu/model");
674   storage_model_name = xbt_cfg_get_string(_surf_cfg_set, "storage/model");
675
676   /* Check whether we use a net/cpu model differing from the default ones, in which case
677    * we should switch to the "compound" workstation model to correctly dispatch stuff to
678    * the right net/cpu models.
679    */
680
681   if((!xbt_cfg_is_default_value(_surf_cfg_set, "network/model") ||
682     !xbt_cfg_is_default_value(_surf_cfg_set, "cpu/model")) &&
683     xbt_cfg_is_default_value(_surf_cfg_set, "workstation/model"))
684   {
685       const char *val = "compound";
686       XBT_INFO
687           ("Switching workstation model to compound since you changed the network and/or cpu model(s)");
688       xbt_cfg_set_string(_surf_cfg_set, "workstation/model", val);
689       workstation_model_name = (char *) "compound";
690   }
691
692   XBT_DEBUG("Workstation model: %s", workstation_model_name);
693   workstation_id =
694       find_model_description(surf_workstation_model_description,
695                              workstation_model_name);
696   if (!strcmp(workstation_model_name, "compound")) {
697     int network_id = -1;
698     int cpu_id = -1;
699
700     xbt_assert(cpu_model_name,
701                 "Set a cpu model to use with the 'compound' workstation model");
702
703     xbt_assert(network_model_name,
704                 "Set a network model to use with the 'compound' workstation model");
705
706     network_id =
707         find_model_description(surf_network_model_description,
708                                network_model_name);
709     cpu_id =
710         find_model_description(surf_cpu_model_description, cpu_model_name);
711
712     surf_cpu_model_description[cpu_id].model_init_preparse();
713     surf_network_model_description[network_id].model_init_preparse();
714   }
715
716   XBT_DEBUG("Call workstation_model_init");
717   surf_workstation_model_description[workstation_id].model_init_preparse();
718
719   XBT_DEBUG("Call storage_model_init");
720   storage_id = find_model_description(surf_storage_model_description, storage_model_name);
721   surf_storage_model_description[storage_id].model_init_preparse();
722 }