Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cosmetics
[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/str.h"
11 #include "surf/surf_private.h"
12 #include "surf/surf_routing.h"  /* COORD_HOST_LEVEL and COORD_ASR_LEVEL */
13 #include "simix/context.h"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_config, surf,
16                                 "About the configuration of surf (and the rest of the simulation)");
17
18 xbt_cfg_t _surf_cfg_set = NULL;
19
20 /* Parse the command line, looking for options */
21 static void surf_config_cmd_line(int *argc, char **argv)
22 {
23   int i, j;
24   char *opt;
25
26   for (i = 1; i < *argc; i++) {
27     int remove_it = 0;
28     if (!strncmp(argv[i], "--cfg=", strlen("--cfg="))) {
29       opt = strchr(argv[i], '=');
30       opt++;
31
32       xbt_cfg_set_parse(_surf_cfg_set, opt);
33       XBT_DEBUG("Did apply '%s' as config setting", opt);
34       remove_it = 1;
35     } else if (!strncmp(argv[i], "--cfg-help", strlen("--cfg-help") + 1) ||
36                !strncmp(argv[i], "--help", strlen("--help") + 1)) {
37       printf
38           ("Description of the configuration accepted by this simulator:\n");
39       xbt_cfg_help(_surf_cfg_set);
40       printf("\nYou can also use --help-models to see the details of all models known by this simulator.\n");
41 #ifdef HAVE_TRACING
42       printf("\nYou can also use --help-tracing to see the details of all tracing options known by this simulator.\n");
43 #endif
44       exit(0);
45     } else if (!strncmp(argv[i], "--help-models", strlen("--help-models") + 1)) {
46       model_help("workstation", surf_workstation_model_description);
47       model_help("CPU", surf_cpu_model_description);
48       model_help("network", surf_network_model_description);
49       exit(0);
50 #ifdef HAVE_TRACING
51     } else if (!strncmp(argv[i], "--help-tracing", strlen("--help-tracing") + 1)) {
52       TRACE_help (1);
53       exit(0);
54 #endif
55     }
56     if (remove_it) {            /*remove this from argv */
57       for (j = i + 1; j < *argc; j++) {
58         argv[j - 1] = argv[j];
59       }
60
61       argv[j - 1] = NULL;
62       (*argc)--;
63       i--;                      /* compensate effect of next loop incrementation */
64     }
65   }
66 }
67
68
69 int _surf_init_status = 0;      /* 0: beginning of time;
70                                    1: pre-inited (cfg_set created);
71                                    2: inited (running) */
72
73 /* callback of the workstation/model variable */
74 static void _surf_cfg_cb__workstation_model(const char *name, int pos)
75 {
76   char *val;
77
78   xbt_assert(_surf_init_status < 2,
79               "Cannot change the model after the initialization");
80
81   val = xbt_cfg_get_string(_surf_cfg_set, name);
82
83   if (!strcmp(val, "help")) {
84     model_help("workstation", surf_workstation_model_description);
85     exit(0);
86   }
87
88   /* Make sure that the model exists */
89   find_model_description(surf_workstation_model_description, val);
90 }
91
92 /* callback of the cpu/model variable */
93 static void _surf_cfg_cb__cpu_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("CPU", surf_cpu_model_description);
104     exit(0);
105   }
106
107   /* New Module missing */
108   find_model_description(surf_cpu_model_description, val);
109 }
110
111 /* callback of the cpu/model variable */
112 static void _surf_cfg_cb__optimization_mode(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("optimization", surf_optimization_mode_description);
123     exit(0);
124   }
125
126   /* New Module missing */
127   find_model_description(surf_optimization_mode_description, val);
128 }
129
130 /* callback of the workstation_model variable */
131 static void _surf_cfg_cb__network_model(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("network", surf_network_model_description);
142     exit(0);
143   }
144
145   /* New Module missing */
146   find_model_description(surf_network_model_description, val);
147 }
148
149
150 /* callbacks of the network models values */
151 static void _surf_cfg_cb__tcp_gamma(const char *name, int pos)
152 {
153   sg_tcp_gamma = xbt_cfg_get_double(_surf_cfg_set, name);
154 }
155
156 static void _surf_cfg_cb__maxmin_precision(const char* name, int pos)
157 {
158   sg_maxmin_precision = xbt_cfg_get_double(_surf_cfg_set, name);
159 }
160
161 static void _surf_cfg_cb__sender_gap(const char* name, int pos)
162 {
163   sg_sender_gap = xbt_cfg_get_double(_surf_cfg_set, name);
164 }
165
166 static void _surf_cfg_cb__latency_factor(const char *name, int pos)
167 {
168   sg_latency_factor = xbt_cfg_get_double(_surf_cfg_set, name);
169 }
170
171 static void _surf_cfg_cb__bandwidth_factor(const char *name, int pos)
172 {
173   sg_bandwidth_factor = xbt_cfg_get_double(_surf_cfg_set, name);
174 }
175
176 static void _surf_cfg_cb__weight_S(const char *name, int pos)
177 {
178   sg_weight_S_parameter = xbt_cfg_get_double(_surf_cfg_set, name);
179 }
180
181 /* callback of the inclusion path */
182 static void _surf_cfg_cb__surf_path(const char *name, int pos)
183 {
184   char *path = xbt_cfg_get_string_at(_surf_cfg_set, name, pos);
185   xbt_dynar_push(surf_path, &path);
186 }
187
188 /* callback to decide if we want to use the model-checking */
189 #include "xbt_modinter.h"
190 extern int _surf_do_model_check;   /* this variable lives in xbt_main until I find a right location for it */
191
192 static void _surf_cfg_cb_model_check(const char *name, int pos)
193 {
194   _surf_do_model_check = xbt_cfg_get_int(_surf_cfg_set, name);
195
196   if (_surf_do_model_check) {
197     /* Tell modules using mallocators that they shouldn't. MC don't like them */
198     xbt_fifo_preinit();
199     xbt_dict_preinit();
200   }
201 }
202
203 extern int _surf_do_verbose_exit;
204
205 static void _surf_cfg_cb_verbose_exit(const char *name, int pos)
206 {
207   _surf_do_verbose_exit = xbt_cfg_get_int(_surf_cfg_set, name);
208 }
209
210
211 static void _surf_cfg_cb_context_factory(const char *name, int pos)
212 {
213   smx_context_factory_name = xbt_cfg_get_string(_surf_cfg_set, name);
214 }
215
216 static void _surf_cfg_cb_context_stack_size(const char *name, int pos)
217 {
218   smx_context_stack_size = xbt_cfg_get_int(_surf_cfg_set, name) * 1024;
219 }
220
221 static void _surf_cfg_cb_contexts_nthreads(const char *name, int pos)
222 {
223   SIMIX_context_set_nthreads(xbt_cfg_get_int(_surf_cfg_set, name));
224 }
225
226 static void _surf_cfg_cb_contexts_parallel_threshold(const char *name, int pos)
227 {
228   SIMIX_context_set_parallel_threshold(xbt_cfg_get_int(_surf_cfg_set, name));
229 }
230
231 static void _surf_cfg_cb_contexts_parallel_mode(const char *name, int pos)
232 {
233   const char* mode_name = xbt_cfg_get_string(_surf_cfg_set, name);
234   if (!strcmp(mode_name, "posix")) {
235     SIMIX_context_set_parallel_mode(XBT_PARMAP_POSIX);
236   }
237   else if (!strcmp(mode_name, "futex")) {
238     SIMIX_context_set_parallel_mode(XBT_PARMAP_FUTEX);
239   }
240   else if (!strcmp(mode_name, "busy_wait")) {
241     SIMIX_context_set_parallel_mode(XBT_PARMAP_BUSY_WAIT);
242   }
243   else {
244     XBT_WARN("Command line setting of the parallel synchronization mode should "
245         "be one of \"posix\", \"futex\" or \"busy_wait\"");
246   }
247 }
248
249 static void _surf_cfg_cb__surf_network_coordinates(const char *name,
250                                                    int pos)
251 {
252   char *val = xbt_cfg_get_string(_surf_cfg_set, name);
253   if (!strcmp(val, "yes")) {
254     if (!COORD_HOST_LEVEL) {
255       COORD_HOST_LEVEL = xbt_lib_add_level(host_lib,xbt_dynar_free_voidp);
256       COORD_ASR_LEVEL  = xbt_lib_add_level(as_router_lib,xbt_dynar_free_voidp);
257     }
258   } else if (!strcmp(val, "no")) {
259     if (COORD_HOST_LEVEL)
260       XBT_WARN("Setting of whether to use coordinate cannot be disabled once set.");
261   } else {
262     XBT_WARN("Command line setting of whether to use coordinates must be either \"yes\" or \"no\"");
263   }
264 }
265
266 static void _surf_cfg_cb__surf_network_crosstraffic(const char *name,
267                                                   int pos)
268 {
269   sg_network_crosstraffic = xbt_cfg_get_int(_surf_cfg_set, name);
270 }
271
272 #ifdef HAVE_GTNETS
273 static void _surf_cfg_cb__gtnets_jitter(const char *name, int pos)
274 {
275   sg_gtnets_jitter = xbt_cfg_get_double(_surf_cfg_set, name);
276 }
277
278 static void _surf_cfg_cb__gtnets_jitter_seed(const char *name, int pos)
279 {
280   sg_gtnets_jitter_seed = xbt_cfg_get_int(_surf_cfg_set, name);
281 }
282 #endif
283
284 /* create the config set, register what should be and parse the command line*/
285 void surf_config_init(int *argc, char **argv)
286 {
287   char *description = xbt_malloc(1024), *p = description;
288   char *default_value;
289   double double_default_value;
290   int default_value_int;
291   int i;
292
293   /* Create the configuration support */
294   if (_surf_init_status == 0) { /* Only create stuff if not already inited */
295     _surf_init_status = 1;
296
297     sprintf(description,
298             "The model to use for the CPU. Possible values: ");
299     p = description;
300     while (*(++p) != '\0');
301     for (i = 0; surf_cpu_model_description[i].name; i++)
302       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
303                    surf_cpu_model_description[i].name);
304     sprintf(p,
305             ".\n       (use 'help' as a value to see the long description of each model)");
306     default_value = xbt_strdup("Cas01");
307     xbt_cfg_register(&_surf_cfg_set,
308                      "cpu/model", description, xbt_cfgelm_string,
309                      &default_value, 1, 1, &_surf_cfg_cb__cpu_model, NULL);
310
311     sprintf(description,
312             "The optimization modes to use for the CPU. Possible values: ");
313     p = description;
314     while (*(++p) != '\0');
315     for (i = 0; surf_optimization_mode_description[i].name; i++)
316       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
317                    surf_optimization_mode_description[i].name);
318     sprintf(p,
319             ".\n       (use 'help' as a value to see the long description of each optimization mode)");
320     default_value = xbt_strdup("Lazy");
321     xbt_cfg_register(&_surf_cfg_set,
322                      "cpu/optim", description, xbt_cfgelm_string,
323                      &default_value, 1, 1, &_surf_cfg_cb__optimization_mode, NULL);
324
325     sprintf(description,
326             "The model to use for the network. Possible values: ");
327     p = description;
328     while (*(++p) != '\0');
329     for (i = 0; surf_network_model_description[i].name; i++)
330       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
331                    surf_network_model_description[i].name);
332     sprintf(p,
333             ".\n       (use 'help' as a value to see the long description of each model)");
334     default_value = xbt_strdup("LV08");
335     xbt_cfg_register(&_surf_cfg_set,
336                      "network/model", description, xbt_cfgelm_string,
337                      &default_value, 1, 1, &_surf_cfg_cb__network_model,
338                      NULL);
339
340     sprintf(description,
341             "The optimization modes to use for the network. Possible values: ");
342     p = description;
343     while (*(++p) != '\0');
344     for (i = 0; surf_optimization_mode_description[i].name; i++)
345       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
346                    surf_optimization_mode_description[i].name);
347     sprintf(p,
348             ".\n       (use 'help' as a value to see the long description of each optimization mode)");
349     default_value = xbt_strdup("Lazy");
350     xbt_cfg_register(&_surf_cfg_set,
351                      "network/optim", description, xbt_cfgelm_string,
352                      &default_value, 1, 1, &_surf_cfg_cb__optimization_mode, NULL);
353
354     sprintf(description,
355             "The model to use for the workstation. Possible values: ");
356     p = description;
357     while (*(++p) != '\0');
358     for (i = 0; surf_workstation_model_description[i].name; i++)
359       p += sprintf(p, "%s%s", (i == 0 ? "" : ", "),
360                    surf_workstation_model_description[i].name);
361     sprintf(p,
362             ".\n       (use 'help' as a value to see the long description of each model)");
363     default_value = xbt_strdup("current_default");
364     xbt_cfg_register(&_surf_cfg_set,
365                      "workstation/model", description, xbt_cfgelm_string,
366                      &default_value, 1, 1,
367                      &_surf_cfg_cb__workstation_model, NULL);
368
369     xbt_free(description);
370
371     default_value = xbt_strdup("Full");
372     xbt_cfg_register(&_surf_cfg_set, "routing",
373                      "Model to use to store the routing information",
374                      xbt_cfgelm_string, &default_value, 1, 1, NULL, NULL);
375
376     xbt_cfg_register(&_surf_cfg_set, "TCP_gamma",
377                      "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)",
378                      xbt_cfgelm_double, NULL, 1, 1,
379                      _surf_cfg_cb__tcp_gamma, NULL);
380     xbt_cfg_setdefault_double(_surf_cfg_set, "TCP_gamma", 20000.0);
381
382     xbt_cfg_register(&_surf_cfg_set, "maxmin/precision",
383                      "Minimum retained action value when updating simulation",
384                      xbt_cfgelm_double, NULL, 1, 1, _surf_cfg_cb__maxmin_precision, NULL);
385     xbt_cfg_setdefault_double(_surf_cfg_set, "maxmin/precision", 0.00001); // FIXME use setdefault everywhere here!
386
387     /* The parameters of network models */
388
389     double_default_value = 0.0;
390     xbt_cfg_register(&_surf_cfg_set, "network/sender_gap",
391                      "Minimum gap between two overlapping sends",
392                      xbt_cfgelm_double, &double_default_value, 1, 1,
393                      _surf_cfg_cb__sender_gap, NULL);
394
395     double_default_value = 1.0;
396     xbt_cfg_register(&_surf_cfg_set, "network/latency_factor",
397                      "Correction factor to apply to the provided latency (default value set by network model)",
398                      xbt_cfgelm_double, &double_default_value, 1, 1,
399                      _surf_cfg_cb__latency_factor, NULL);
400     double_default_value = 1.0;
401     xbt_cfg_register(&_surf_cfg_set, "network/bandwidth_factor",
402                      "Correction factor to apply to the provided bandwidth (default value set by network model)",
403                      xbt_cfgelm_double, &double_default_value, 1, 1,
404                      _surf_cfg_cb__bandwidth_factor, NULL);
405     double_default_value = 0.0;
406     xbt_cfg_register(&_surf_cfg_set, "network/weight_S",
407                      "Correction factor to apply to the weight of competing streams(default value set by network model)",
408                      xbt_cfgelm_double, &double_default_value, 1, 1,
409                      _surf_cfg_cb__weight_S, NULL);
410
411     /* Inclusion path */
412     xbt_cfg_register(&_surf_cfg_set, "path",
413                      "Lookup path for inclusions in platform and deployment XML files",
414                      xbt_cfgelm_string, NULL, 0, 0,
415                      _surf_cfg_cb__surf_path, NULL);
416
417     default_value_int = 0;
418     xbt_cfg_register(&_surf_cfg_set, "cpu/maxmin_selective_update",
419                      "Update the constraint set propagating recursively to others constraints (1 by default when optim is set to lazy)",
420                      xbt_cfgelm_int, &default_value_int, 0, 1,
421                      NULL, NULL);
422     default_value_int = 0;
423     xbt_cfg_register(&_surf_cfg_set, "network/maxmin_selective_update",
424                      "Update the constraint set propagating recursively to others constraints (1 by default when optim is set to lazy)",
425                      xbt_cfgelm_int, &default_value_int, 0, 1,
426                      NULL, NULL);
427
428     /* do model-check */
429     default_value_int = 0;
430     xbt_cfg_register(&_surf_cfg_set, "model-check",
431                      "Activate the model-checking of the \"simulated\" system (EXPERIMENTAL -- msg only for now)",
432                      xbt_cfgelm_int, &default_value_int, 0, 1,
433                      _surf_cfg_cb_model_check, NULL);
434     
435     /*
436        FIXME: this function is not setting model-check to it's default value because
437        internally it calls to variable->cb_set that in this case is the function 
438        _surf_cfg_cb_model_check which sets it's value to 1 (instead of the default value 0)
439        xbt_cfg_set_int(_surf_cfg_set, "model-check", default_value_int); */
440
441     /* do verbose-exit */
442     default_value_int = 0;
443     xbt_cfg_register(&_surf_cfg_set, "verbose-exit",
444                      "Activate the \"do nothing\" mode in Ctrl-C",
445                      xbt_cfgelm_int, &default_value_int, 0, 1,
446                      _surf_cfg_cb_verbose_exit, NULL);
447     
448     
449     /* context factory */
450     default_value = xbt_strdup("ucontext");
451     xbt_cfg_register(&_surf_cfg_set, "contexts/factory",
452                      "Context factory to use in SIMIX (ucontext, thread or raw)",
453                      xbt_cfgelm_string, &default_value, 1, 1, _surf_cfg_cb_context_factory, NULL);
454
455     /* stack size of contexts in Ko */
456     default_value_int = 128;
457     xbt_cfg_register(&_surf_cfg_set, "contexts/stack_size",
458                      "Stack size of contexts in Ko (ucontext or raw only)",
459                      xbt_cfgelm_int, &default_value_int, 1, 1,
460                      _surf_cfg_cb_context_stack_size, NULL);
461
462     /* number of parallel threads for user processes */
463     default_value_int = 1;
464     xbt_cfg_register(&_surf_cfg_set, "contexts/nthreads",
465                      "Number of parallel threads for user contexts (EXPERIMENTAL)",
466                      xbt_cfgelm_int, &default_value_int, 1, 1,
467                      _surf_cfg_cb_contexts_nthreads, NULL);
468
469     /* minimal number of user contexts to be run in parallel */
470     default_value_int = 1;
471     xbt_cfg_register(&_surf_cfg_set, "contexts/parallel_threshold",
472         "Minimal number of user contexts to be run in parallel (raw contexts only)",
473         xbt_cfgelm_int, &default_value_int, 1, 1,
474         _surf_cfg_cb_contexts_parallel_threshold, NULL);
475
476     /* minimal number of user contexts to be run in parallel */
477     default_value = xbt_strdup("futex");
478     xbt_cfg_register(&_surf_cfg_set, "contexts/parallel_mode",
479         "Synchronization mode to use when running contexts in parallel",
480         xbt_cfgelm_string, &default_value, 1, 1,
481         _surf_cfg_cb_contexts_parallel_mode, NULL);
482
483     default_value = xbt_strdup("no");
484     xbt_cfg_register(&_surf_cfg_set, "coordinates",
485                      "\"yes\" or \"no\" (FIXME: document)",
486                      xbt_cfgelm_string, &default_value, 1, 1,
487                      _surf_cfg_cb__surf_network_coordinates, NULL);
488     xbt_cfg_setdefault_string(_surf_cfg_set, "coordinates", default_value);
489
490     default_value_int = 0;
491     xbt_cfg_register(&_surf_cfg_set, "network/crosstraffic",
492                      "Activate the interferences between uploads and downloads for fluid max-min models (LV08, CM02)",
493                      xbt_cfgelm_int, &default_value_int, 0, 1,
494                      _surf_cfg_cb__surf_network_crosstraffic, NULL);
495     xbt_cfg_setdefault_int(_surf_cfg_set, "network/crosstraffic", default_value_int);
496
497 #ifdef HAVE_GTNETS
498     xbt_cfg_register(&_surf_cfg_set, "gtnets_jitter",
499                      "Double value to oscillate the link latency, uniformly in random interval [-latency*gtnets_jitter,latency*gtnets_jitter)",
500                      xbt_cfgelm_double, NULL, 1, 1,
501                      _surf_cfg_cb__gtnets_jitter, NULL);
502     xbt_cfg_setdefault_double(_surf_cfg_set, "gtnets_jitter", 0.0);
503
504     default_value_int = 10;
505     xbt_cfg_register(&_surf_cfg_set, "gtnets_jitter_seed",
506                      "Use a positive seed to reproduce jitted results, value must be in [1,1e8], default is 10",
507                      xbt_cfgelm_int, &default_value_int, 0, 1,
508                      _surf_cfg_cb__gtnets_jitter_seed, NULL);
509 #endif
510 #ifdef HAVE_NS3
511     xbt_cfg_register(&_surf_cfg_set, "ns3/TcpModel",
512                      "The ns3 tcp model can be : NewReno or Reno or Tahoe",
513                      xbt_cfgelm_string, NULL, 1, 1,
514                      NULL, NULL);
515     xbt_cfg_setdefault_string(_surf_cfg_set, "ns3/TcpModel", "default");
516 #endif
517     if (!surf_path) {
518       /* retrieves the current directory of the        current process */
519       const char *initial_path = __surf_get_initial_path();
520       xbt_assert((initial_path),
521                   "__surf_get_initial_path() failed! Can't resolves current Windows directory");
522
523       surf_path = xbt_dynar_new(sizeof(char *), NULL);
524       xbt_cfg_setdefault_string(_surf_cfg_set, "path", initial_path);
525     }
526
527
528     surf_config_cmd_line(argc, argv);
529   } else {
530     XBT_WARN("Call to surf_config_init() after initialization ignored");
531   }
532 }
533
534 void surf_config_finalize(void)
535 {
536   if (!_surf_init_status)
537     return;                     /* Not initialized yet. Nothing to do */
538
539   xbt_cfg_free(&_surf_cfg_set);
540   _surf_init_status = 0;
541 }
542
543 /* Pick the right models for CPU, net and workstation, and call their model_init_preparse */
544 void surf_config_models_setup()
545 {
546   char *workstation_model_name;
547   int workstation_id = -1;
548   char *network_model_name = NULL;
549   char *cpu_model_name = NULL;
550
551   workstation_model_name =
552       xbt_cfg_get_string(_surf_cfg_set, "workstation/model");
553   network_model_name = xbt_cfg_get_string(_surf_cfg_set, "network/model");
554   cpu_model_name = xbt_cfg_get_string(_surf_cfg_set, "cpu/model");
555
556   /* Check whether we use a net/cpu model differing from the default ones, in which case
557    * we should switch to the "compound" workstation model to correctly dispatch stuff to
558    * the right net/cpu models.
559    */
560
561   if((!xbt_cfg_is_default_value(_surf_cfg_set, "network/model") ||
562           !xbt_cfg_is_default_value(_surf_cfg_set, "cpu/model")) &&
563           xbt_cfg_is_default_value(_surf_cfg_set, "workstation/model"))
564   {
565             const char *val = "compound";
566             XBT_INFO
567                 ("Switching workstation model to compound since you changed the network and/or cpu model(s)");
568             xbt_cfg_set_string(_surf_cfg_set, "workstation/model", val);
569             workstation_model_name = (char *) "compound";
570   }
571
572   XBT_DEBUG("Workstation model: %s", workstation_model_name);
573   workstation_id =
574       find_model_description(surf_workstation_model_description,
575                              workstation_model_name);
576   if (!strcmp(workstation_model_name, "compound")) {
577     int network_id = -1;
578     int cpu_id = -1;
579
580     xbt_assert(cpu_model_name,
581                 "Set a cpu model to use with the 'compound' workstation model");
582
583     xbt_assert(network_model_name,
584                 "Set a network model to use with the 'compound' workstation model");
585
586     network_id =
587         find_model_description(surf_network_model_description,
588                                network_model_name);
589     cpu_id =
590         find_model_description(surf_cpu_model_description, cpu_model_name);
591
592     surf_cpu_model_description[cpu_id].model_init_preparse();
593     surf_network_model_description[network_id].model_init_preparse();
594   }
595
596   XBT_DEBUG("Call workstation_model_init");
597   surf_workstation_model_description[workstation_id].model_init_preparse();
598 }