Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
yet another correction for those factors, hope this is the last one ..
[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     sprintf(description,
341             "The model to use for the CPU. Possible values: ");
342     p = description;
343     while (*(++p) != '\0');
344     for (i = 0; surf_cpu_model_description[i].name; i++)
345       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
346                    surf_cpu_model_description[i].name);
347     sprintf(p,
348             ".\n       (use 'help' as a value to see the long description of each model)");
349     default_value = xbt_strdup("Cas01");
350     xbt_cfg_register(&_surf_cfg_set, "cpu/model", description, xbt_cfgelm_string,
351                      &default_value, 1, 1, &_surf_cfg_cb__cpu_model, NULL);
352
353     sprintf(description,
354             "The optimization modes to use for the CPU. Possible values: ");
355     p = description;
356     while (*(++p) != '\0');
357     for (i = 0; surf_optimization_mode_description[i].name; i++)
358       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
359                    surf_optimization_mode_description[i].name);
360     sprintf(p,
361             ".\n       (use 'help' as a value to see the long description of each optimization mode)");
362     default_value = xbt_strdup("Lazy");
363     xbt_cfg_register(&_surf_cfg_set, "cpu/optim", description, xbt_cfgelm_string,
364                      &default_value, 1, 1, &_surf_cfg_cb__optimization_mode, NULL);
365
366     sprintf(description,
367             "The model to use for the storage. Possible values: ");
368     p = description;
369     while (*(++p) != '\0');
370     for (i = 0; surf_storage_model_description[i].name; i++)
371       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
372                    surf_storage_model_description[i].name);
373     sprintf(p,
374             ".\n       (use 'help' as a value to see the long description of each model)");
375     default_value = xbt_strdup("default");
376     xbt_cfg_register(&_surf_cfg_set, "storage/model", description, xbt_cfgelm_string,
377                      &default_value, 1, 1, &_surf_cfg_cb__storage_mode,
378                      NULL);
379
380     sprintf(description,
381             "The model to use for the network. Possible values: ");
382     p = description;
383     while (*(++p) != '\0');
384     for (i = 0; surf_network_model_description[i].name; i++)
385       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
386                    surf_network_model_description[i].name);
387     sprintf(p,
388             ".\n       (use 'help' as a value to see the long description of each model)");
389     default_value = xbt_strdup("LV08");
390     xbt_cfg_register(&_surf_cfg_set, "network/model", description, xbt_cfgelm_string,
391                      &default_value, 1, 1, &_surf_cfg_cb__network_model,
392                      NULL);
393
394     sprintf(description,
395             "The optimization modes to use for the network. Possible values: ");
396     p = description;
397     while (*(++p) != '\0');
398     for (i = 0; surf_optimization_mode_description[i].name; i++)
399       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
400                    surf_optimization_mode_description[i].name);
401     sprintf(p,
402             ".\n       (use 'help' as a value to see the long description of each optimization mode)");
403     default_value = xbt_strdup("Lazy");
404     xbt_cfg_register(&_surf_cfg_set, "network/optim", description, xbt_cfgelm_string,
405                      &default_value, 1, 1, &_surf_cfg_cb__optimization_mode, NULL);
406
407     sprintf(description,
408             "The model to use for the workstation. Possible values: ");
409     p = description;
410     while (*(++p) != '\0');
411     for (i = 0; surf_workstation_model_description[i].name; i++)
412       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
413                    surf_workstation_model_description[i].name);
414     sprintf(p,
415             ".\n       (use 'help' as a value to see the long description of each model)");
416     default_value = xbt_strdup("default");
417     xbt_cfg_register(&_surf_cfg_set, "workstation/model", description, xbt_cfgelm_string,
418                      &default_value, 1, 1,
419                      &_surf_cfg_cb__workstation_model, NULL);
420
421     xbt_free(description);
422
423     xbt_cfg_register(&_surf_cfg_set, "network/TCP_gamma",
424                      "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)",
425                      xbt_cfgelm_double, NULL, 1, 1,
426                      _surf_cfg_cb__tcp_gamma, NULL);
427     xbt_cfg_setdefault_double(_surf_cfg_set, "network/TCP_gamma", 20000.0);
428
429     xbt_cfg_register(&_surf_cfg_set, "maxmin/precision",
430                      "Numerical precision used when updating simulation models (epsilon in double comparisons)",
431                      xbt_cfgelm_double, NULL, 1, 1, _surf_cfg_cb__maxmin_precision, NULL);
432     xbt_cfg_setdefault_double(_surf_cfg_set, "maxmin/precision", 0.00001); // FIXME use setdefault everywhere here!
433
434     /* The parameters of network models */
435
436     double_default_value = 0.0;
437     xbt_cfg_register(&_surf_cfg_set, "network/sender_gap",
438                      "Minimum gap between two overlapping sends",
439                      xbt_cfgelm_double, &double_default_value, 1, 1,
440                      _surf_cfg_cb__sender_gap, NULL);
441
442     double_default_value = 1.0;
443     xbt_cfg_register(&_surf_cfg_set, "network/latency_factor",
444                      "Correction factor to apply to the provided latency (default value set by network model)",
445                      xbt_cfgelm_double, &double_default_value, 1, 1,
446                      _surf_cfg_cb__latency_factor, NULL);
447     double_default_value = 1.0;
448     xbt_cfg_register(&_surf_cfg_set, "network/bandwidth_factor",
449                      "Correction factor to apply to the provided bandwidth (default value set by network model)",
450                      xbt_cfgelm_double, &double_default_value, 1, 1,
451                      _surf_cfg_cb__bandwidth_factor, NULL);
452     double_default_value = 0.0;
453     xbt_cfg_register(&_surf_cfg_set, "network/weight_S",
454                      "Correction factor to apply to the weight of competing streams(default value set by network model)",
455                      xbt_cfgelm_double, &double_default_value, 1, 1,
456                      _surf_cfg_cb__weight_S, NULL);
457
458     /* Inclusion path */
459     xbt_cfg_register(&_surf_cfg_set, "path",
460                      "Lookup path for inclusions in platform and deployment XML files",
461                      xbt_cfgelm_string, NULL, 0, 0,
462                      _surf_cfg_cb__surf_path, NULL);
463
464     default_value_int = 0;
465     xbt_cfg_register(&_surf_cfg_set, "cpu/maxmin_selective_update",
466                      "Update the constraint set propagating recursively to others constraints (1 by default when optim is set to lazy)",
467                      xbt_cfgelm_int, &default_value_int, 0, 1,
468                      NULL, NULL);
469     default_value_int = 0;
470     xbt_cfg_register(&_surf_cfg_set, "network/maxmin_selective_update",
471                      "Update the constraint set propagating recursively to others constraints (1 by default when optim is set to lazy)",
472                      xbt_cfgelm_int, &default_value_int, 0, 1,
473                      NULL, NULL);
474
475 #ifdef HAVE_MC
476     /* do model-checking */
477     default_value_int = 0;
478     xbt_cfg_register(&_surf_cfg_set, "model-check",
479                      "Verify the system through model-checking instead of simulating it (EXPERIMENTAL)",
480                      xbt_cfgelm_int, &default_value_int, 0, 1,
481                      _surf_cfg_cb_model_check, NULL);
482
483     /* do stateful model-checking */
484     default_value_int = 0;
485     xbt_cfg_register(&_surf_cfg_set, "model-check/checkpoint",
486                      "Specify the amount of steps between checkpoints during stateful model-checking (default: 0 => stateless verification). "
487                      "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.",
488                      xbt_cfgelm_int, &default_value_int, 0, 1,
489                      _mc_cfg_cb_checkpoint, NULL);
490     
491     /* do liveness model-checking */
492     default_value = xbt_strdup("");
493     xbt_cfg_register(&_surf_cfg_set, "model-check/property",
494                      "Specify the name of the file containing the property. It must be the result of the ltl2ba program.",
495                      xbt_cfgelm_string, &default_value, 0, 1,
496                      _mc_cfg_cb_property, NULL);
497
498     /* Specify the kind of model-checking reduction */
499     default_value = xbt_strdup("unset");
500     xbt_cfg_register(&_surf_cfg_set, "model-check/reduction",
501                      "Specify the kind of exploration reduction (either none or DPOR)",
502                      xbt_cfgelm_string, &default_value, 0, 1,
503                      _mc_cfg_cb_reduce, NULL);
504 #endif
505
506     /* do verbose-exit */
507     default_value_int = 1;
508     xbt_cfg_register(&_surf_cfg_set, "verbose-exit",
509                      "Activate the \"do nothing\" mode in Ctrl-C",
510                      xbt_cfgelm_int, &default_value_int, 0, 1,
511                      _surf_cfg_cb_verbose_exit, NULL);
512     
513     
514     /* context factory */
515     default_value = xbt_strdup("ucontext");
516     xbt_cfg_register(&_surf_cfg_set, "contexts/factory",
517                      "Context factory to use in SIMIX (ucontext, thread or raw)",
518                      xbt_cfgelm_string, &default_value, 1, 1, _surf_cfg_cb_context_factory, NULL);
519
520     /* stack size of contexts in Ko */
521     default_value_int = 128;
522     xbt_cfg_register(&_surf_cfg_set, "contexts/stack_size",
523                      "Stack size of contexts in Kib (ucontext or raw only)",
524                      xbt_cfgelm_int, &default_value_int, 1, 1,
525                      _surf_cfg_cb_context_stack_size, NULL);
526
527     /* number of parallel threads for user processes */
528     default_value_int = 1;
529     xbt_cfg_register(&_surf_cfg_set, "contexts/nthreads",
530                      "Number of parallel threads used to execute user contexts",
531                      xbt_cfgelm_int, &default_value_int, 1, 1,
532                      _surf_cfg_cb_contexts_nthreads, NULL);
533
534     /* minimal number of user contexts to be run in parallel */
535     default_value_int = 2;
536     xbt_cfg_register(&_surf_cfg_set, "contexts/parallel_threshold",
537         "Minimal number of user contexts to be run in parallel (raw contexts only)",
538         xbt_cfgelm_int, &default_value_int, 1, 1,
539         _surf_cfg_cb_contexts_parallel_threshold, NULL);
540
541     /* synchronization mode for parallel user contexts */
542 #ifdef HAVE_FUTEX_H
543     default_value = xbt_strdup("futex");
544 #else //No futex on mac and posix is unimplememted yet
545     default_value = xbt_strdup("busy_wait");
546 #endif
547     xbt_cfg_register(&_surf_cfg_set, "contexts/synchro",
548         "Synchronization mode to use when running contexts in parallel (either futex, posix or busy_wait)",
549         xbt_cfgelm_string, &default_value, 1, 1,
550         _surf_cfg_cb_contexts_parallel_mode, NULL);
551
552     /* number of parallel threads for Surf */
553     default_value_int = surf_get_nthreads();
554     xbt_cfg_register(&_surf_cfg_set, "surf/nthreads",
555                      "Number of parallel threads used to update Surf models",
556                      xbt_cfgelm_int, &default_value_int, 1, 1,
557                      _surf_cfg_cb_surf_nthreads, NULL);
558
559     default_value = xbt_strdup("no");
560     xbt_cfg_register(&_surf_cfg_set, "network/coordinates",
561                      "\"yes\" or \"no\", specifying whether we use a coordinate-based routing (as Vivaldi)",
562                      xbt_cfgelm_string, &default_value, 1, 1,
563                      _surf_cfg_cb__surf_network_coordinates, NULL);
564     xbt_cfg_setdefault_string(_surf_cfg_set, "network/coordinates", default_value);
565
566     default_value_int = 0;
567     xbt_cfg_register(&_surf_cfg_set, "network/crosstraffic",
568                      "Activate the interferences between uploads and downloads for fluid max-min models (LV08, CM02)",
569                      xbt_cfgelm_int, &default_value_int, 0, 1,
570                      _surf_cfg_cb__surf_network_crosstraffic, NULL);
571     xbt_cfg_setdefault_int(_surf_cfg_set, "network/crosstraffic", default_value_int);
572
573 #ifdef HAVE_GTNETS
574     xbt_cfg_register(&_surf_cfg_set, "gtnets/jitter",
575                      "Double value to oscillate the link latency, uniformly in random interval [-latency*gtnets_jitter,latency*gtnets_jitter)",
576                      xbt_cfgelm_double, NULL, 1, 1,
577                      _surf_cfg_cb__gtnets_jitter, NULL);
578     xbt_cfg_setdefault_double(_surf_cfg_set, "gtnets/jitter", 0.0);
579
580     default_value_int = 10;
581     xbt_cfg_register(&_surf_cfg_set, "gtnets/jitter_seed",
582                      "Use a positive seed to reproduce jitted results, value must be in [1,1e8], default is 10",
583                      xbt_cfgelm_int, &default_value_int, 0, 1,
584                      _surf_cfg_cb__gtnets_jitter_seed, NULL);
585 #endif
586 #ifdef HAVE_NS3
587     xbt_cfg_register(&_surf_cfg_set, "ns3/TcpModel",
588                      "The ns3 tcp model can be : NewReno or Reno or Tahoe",
589                      xbt_cfgelm_string, NULL, 1, 1,
590                      NULL, NULL);
591     xbt_cfg_setdefault_string(_surf_cfg_set, "ns3/TcpModel", "default");
592 #endif
593
594 //SMPI
595     double default_reference_speed = 20000.0;
596     xbt_cfg_register(&_surf_cfg_set, "smpi/running_power",
597                      "Power of the host running the simulation (in flop/s). Used to bench the operations.",
598                      xbt_cfgelm_double, &default_reference_speed, 1, 1, NULL,
599                      NULL);
600
601     int default_display_timing = 0;
602     xbt_cfg_register(&_surf_cfg_set, "smpi/display_timing",
603                      "Boolean indicating whether we should display the timing after simulation.",
604                      xbt_cfgelm_int, &default_display_timing, 1, 1, NULL,
605                      NULL);
606
607     double default_threshold = 1e-6;
608     xbt_cfg_register(&_surf_cfg_set, "smpi/cpu_threshold",
609                      "Minimal computation time (in seconds) not discarded.",
610                      xbt_cfgelm_double, &default_threshold, 1, 1, NULL,
611                      NULL);
612
613     int default_small_messages_threshold = 0;
614     xbt_cfg_register(&_surf_cfg_set, "smpi/async_small_thres",
615                      "Maximal size of messages that are to be sent asynchronously, without waiting for the receiver",
616                      xbt_cfgelm_int, &default_small_messages_threshold, 1, 1, NULL,
617                      NULL);
618
619     //For smpi/bw_factor and smpi/lat_factor
620     //Default value have to be "threshold0:value0;threshold1:value1;...;thresholdN:valueN"
621     //test is if( size >= thresholdN ) return valueN;
622     //Values can be modified with command line --cfg=smpi/bw_factor:"threshold0:value0;threshold1:value1;...;thresholdN:valueN"
623     //  or with tag config put line <prop id="smpi/bw_factor" value="threshold0:value0;threshold1:value1;...;thresholdN:valueN"></prop>
624     xbt_cfg_register(&_surf_cfg_set, "smpi/bw_factor",
625                      "Bandwidth factors for smpi.",
626                      xbt_cfgelm_string, NULL, 1, 1, NULL,
627                      NULL);
628     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");
629
630     xbt_cfg_register(&_surf_cfg_set, "smpi/lat_factor",
631                      "Latency factors for smpi.",
632                      xbt_cfgelm_string, NULL, 1, 1, NULL,
633                      NULL);
634     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");
635 //END SMPI
636
637
638     if (!surf_path) {
639       /* retrieves the current directory of the        current process */
640       const char *initial_path = __surf_get_initial_path();
641       xbt_assert((initial_path),
642                   "__surf_get_initial_path() failed! Can't resolves current Windows directory");
643
644       surf_path = xbt_dynar_new(sizeof(char *), NULL);
645       xbt_cfg_setdefault_string(_surf_cfg_set, "path", initial_path);
646     }
647
648
649     surf_config_cmd_line(argc, argv);
650
651     _surf_init_status = 1;
652   } else {
653     XBT_WARN("Call to surf_config_init() after initialization ignored");
654   }
655 }
656
657 void surf_config_finalize(void)
658 {
659   if (!_surf_init_status)
660     return;                     /* Not initialized yet. Nothing to do */
661
662   xbt_cfg_free(&_surf_cfg_set);
663   _surf_init_status = 0;
664 }
665
666 /* Pick the right models for CPU, net and workstation, and call their model_init_preparse */
667 void surf_config_models_setup()
668 {
669   char *workstation_model_name;
670   int workstation_id = -1;
671   char *network_model_name = NULL;
672   char *cpu_model_name = NULL;
673   int storage_id = -1;
674   char *storage_model_name = NULL;
675
676   workstation_model_name =
677       xbt_cfg_get_string(_surf_cfg_set, "workstation/model");
678   network_model_name = xbt_cfg_get_string(_surf_cfg_set, "network/model");
679   cpu_model_name = xbt_cfg_get_string(_surf_cfg_set, "cpu/model");
680   storage_model_name = xbt_cfg_get_string(_surf_cfg_set, "storage/model");
681
682   /* Check whether we use a net/cpu model differing from the default ones, in which case
683    * we should switch to the "compound" workstation model to correctly dispatch stuff to
684    * the right net/cpu models.
685    */
686
687   if((!xbt_cfg_is_default_value(_surf_cfg_set, "network/model") ||
688     !xbt_cfg_is_default_value(_surf_cfg_set, "cpu/model")) &&
689     xbt_cfg_is_default_value(_surf_cfg_set, "workstation/model"))
690   {
691       const char *val = "compound";
692       XBT_INFO
693           ("Switching workstation model to compound since you changed the network and/or cpu model(s)");
694       xbt_cfg_set_string(_surf_cfg_set, "workstation/model", val);
695       workstation_model_name = (char *) "compound";
696   }
697
698   XBT_DEBUG("Workstation model: %s", workstation_model_name);
699   workstation_id =
700       find_model_description(surf_workstation_model_description,
701                              workstation_model_name);
702   if (!strcmp(workstation_model_name, "compound")) {
703     int network_id = -1;
704     int cpu_id = -1;
705
706     xbt_assert(cpu_model_name,
707                 "Set a cpu model to use with the 'compound' workstation model");
708
709     xbt_assert(network_model_name,
710                 "Set a network model to use with the 'compound' workstation model");
711
712     network_id =
713         find_model_description(surf_network_model_description,
714                                network_model_name);
715     cpu_id =
716         find_model_description(surf_cpu_model_description, cpu_model_name);
717
718     surf_cpu_model_description[cpu_id].model_init_preparse();
719     surf_network_model_description[network_id].model_init_preparse();
720   }
721
722   XBT_DEBUG("Call workstation_model_init");
723   surf_workstation_model_description[workstation_id].model_init_preparse();
724
725   XBT_DEBUG("Call storage_model_init");
726   storage_id = find_model_description(surf_storage_model_description, storage_model_name);
727   surf_storage_model_description[storage_id].model_init_preparse();
728 }