Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b6aaa569a53cf5485a727fc45e7fdd1bad3ac6ad
[simgrid.git] / src / surf / surf.c
1 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011. 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 #include "surf_private.h"
8 #include "xbt/module.h"
9 #include "mc/mc.h"
10 #include "simix/smx_host_private.h"
11 #include "surf/surf_resource.h"
12 #include "xbt/xbt_os_thread.h"
13
14 #include <ctype.h>
15
16 XBT_LOG_NEW_CATEGORY(surf, "All SURF categories");
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_kernel, surf,
18                                 "Logging specific to SURF (kernel)");
19
20 /* Additional declarations for Windows portability. */
21
22 #ifndef MAX_DRIVE
23 #define MAX_DRIVE 26
24 #endif
25
26 #ifdef _XBT_WIN32
27 #include <windows.h>
28 static const char *disk_drives_letter_table[MAX_DRIVE] = {
29   "A:\\",
30   "B:\\",
31   "C:\\",
32   "D:\\",
33   "E:\\",
34   "F:\\",
35   "G:\\",
36   "H:\\",
37   "I:\\",
38   "J:\\",
39   "K:\\",
40   "L:\\",
41   "M:\\",
42   "N:\\",
43   "O:\\",
44   "P:\\",
45   "Q:\\",
46   "R:\\",
47   "S:\\",
48   "T:\\",
49   "U:\\",
50   "V:\\",
51   "W:\\",
52   "X:\\",
53   "Y:\\",
54   "Z:\\"
55 };
56 #endif                          /* #ifdef _XBT_WIN32 */
57
58 int surf_cfg_get_int(char* name)
59 {
60         return xbt_cfg_get_int(_surf_cfg_set,name);
61 }
62 double surf_cfg_get_double(char* name)
63 {
64         return xbt_cfg_get_double(_surf_cfg_set,name);
65 }
66 char* surf_cfg_get_string(char* name)
67 {
68         return xbt_cfg_get_string(_surf_cfg_set,name);
69 }
70 void surf_cfg_get_peer(const char *name, char **peer, int *port)
71 {
72         xbt_cfg_get_peer(_surf_cfg_set,name, peer, port);
73 }
74 xbt_dynar_t surf_cfg_get_dynar(char* name)
75 {
76         return xbt_cfg_get_dynar(_surf_cfg_set,name);
77 }
78 /*
79  * Returns the initial path. On Windows the initial path is
80  * the current directory for the current process in the other
81  * case the function returns "./" that represents the current
82  * directory on Unix/Linux platforms.
83  */
84
85 const char *__surf_get_initial_path(void)
86 {
87
88 #ifdef _XBT_WIN32
89   unsigned i;
90   char current_directory[MAX_PATH + 1] = { 0 };
91   unsigned int len = GetCurrentDirectory(MAX_PATH + 1, current_directory);
92   char root[4] = { 0 };
93
94   if (!len)
95     return NULL;
96
97   strncpy(root, current_directory, 3);
98
99   for (i = 0; i < MAX_DRIVE; i++) {
100     if (toupper(root[0]) == disk_drives_letter_table[i][0])
101       return disk_drives_letter_table[i];
102   }
103
104   return NULL;
105 #else
106   return "./";
107 #endif
108 }
109
110 /* The __surf_is_absolute_file_path() returns 1 if
111  * file_path is a absolute file path, in the other
112  * case the function returns 0.
113  */
114 int __surf_is_absolute_file_path(const char *file_path)
115 {
116 #ifdef _XBT_WIN32
117   WIN32_FIND_DATA wfd = { 0 };
118   HANDLE hFile = FindFirstFile(file_path, &wfd);
119
120   if (INVALID_HANDLE_VALUE == hFile)
121     return 0;
122
123   FindClose(hFile);
124   return 1;
125 #else
126   return (file_path[0] == '/');
127 #endif
128 }
129
130 double NOW = 0;
131
132 xbt_dynar_t model_list = NULL;
133 tmgr_history_t history = NULL;
134 lmm_system_t maxmin_system = NULL;
135 xbt_dynar_t surf_path = NULL;
136
137 /* Don't forget to update the option description in smx_config when you change this */
138 s_surf_model_description_t surf_network_model_description[] = {
139   {"LV08",
140    "Realistic network analytic model (slow-start modeled by multiplying latency by 10.4, bandwidth by .92; bottleneck sharing uses a payload of S=8775 for evaluating RTT). ",
141    surf_network_model_init_LegrandVelho},
142   {"Constant",
143    "Simplistic network model where all communication take a constant time (one second). This model provides the lowest realism, but is (marginally) faster.",
144    surf_network_model_init_Constant},
145   {"SMPI",
146    "Realistic network model specifically tailored for HPC settings (accurate modeling of slow start with correction factors on three intervals: < 1KiB, < 64 KiB, >= 64 KiB)",
147    surf_network_model_init_SMPI},
148   {"CM02",
149    "Legacy network analytic model (Very similar to LV08, but without corrective factors. The timings of small messages are thus poorly modeled).",
150    surf_network_model_init_CM02},
151 #ifdef HAVE_GTNETS
152   {"GTNets",
153    "Network pseudo-model using the GTNets simulator instead of an analytic model",
154    surf_network_model_init_GTNETS},
155 #endif
156 #ifdef HAVE_NS3
157   {"NS3",
158    "Network pseudo-model using the NS3 tcp model instead of an analytic model",
159   surf_network_model_init_NS3},
160 #endif
161   {"Reno",
162    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
163    surf_network_model_init_Reno},
164   {"Reno2",
165    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
166    surf_network_model_init_Reno2},
167   {"Vegas",
168    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
169    surf_network_model_init_Vegas},
170   {NULL, NULL, NULL}      /* this array must be NULL terminated */
171 };
172
173 s_surf_model_description_t surf_cpu_model_description[] = {
174   {"Cas01",
175    "Simplistic CPU model (time=size/power).",
176    surf_cpu_model_init_Cas01},
177   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
178 };
179
180 s_surf_model_description_t surf_workstation_model_description[] = {
181   {"default",
182    "Default workstation model. Currently, CPU:Cas01 and network:LV08 (with cross traffic enabled)",
183    surf_workstation_model_init_current_default},
184   {"compound",
185    "Workstation model that is automatically chosen if you change the network and CPU models",
186    surf_workstation_model_init_compound},
187   {"ptask_L07", "Workstation model somehow similar to Cas01+CM02 but allowing parallel tasks",
188    surf_workstation_model_init_ptask_L07},
189   {NULL, NULL, NULL}      /* this array must be NULL terminated */
190 };
191
192 s_surf_model_description_t surf_optimization_mode_description[] = {
193   {"Lazy",
194    "Lazy action management (partial invalidation in lmm + heap in action remaining).",
195    NULL},
196   {"TI",
197    "Trace integration. Highly optimized mode when using availability traces (only available for the Cas01 CPU model for now).",
198     NULL},
199   {"Full",
200    "Full update of remaining and variables. Slow but may be useful when debugging.",
201    NULL},
202   {NULL, NULL, NULL}      /* this array must be NULL terminated */
203 };
204
205 s_surf_model_description_t surf_storage_model_description[] = {
206   {"default",
207    "Simplistic storage model.",
208    surf_storage_model_init_default},
209   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
210 };
211
212 /* ********************************************************************* */
213 /* TUTORIAL: New model                                                   */
214 s_surf_model_description_t surf_new_model_description[] = {
215   {"default",
216    "Tutorial model.",
217    surf_new_model_init_default},
218   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
219 };
220 /* ********************************************************************* */
221
222 #ifdef CONTEXT_THREADS
223 static xbt_parmap_t surf_parmap = NULL; /* parallel map on models */
224 #endif
225
226 static int surf_nthreads = 1;    /* number of threads of the parmap (1 means no parallelism) */
227 static double *surf_mins = NULL; /* return value of share_resources for each model */
228 static int surf_min_index;       /* current index in surf_mins */
229 static double min;               /* duration determined by surf_solve */
230
231 static void surf_share_resources(surf_model_t model);
232 static void surf_update_actions_state(surf_model_t model);
233
234 /** Displays the long description of all registered models, and quit */
235 void model_help(const char *category, s_surf_model_description_t * table)
236 {
237   int i;
238   printf("Long description of the %s models accepted by this simulator:\n",
239          category);
240   for (i = 0; table[i].name; i++)
241     printf("  %s: %s\n", table[i].name, table[i].description);
242 }
243
244 int find_model_description(s_surf_model_description_t * table,
245                            const char *name)
246 {
247   int i;
248   char *name_list = NULL;
249
250   for (i = 0; table[i].name; i++)
251     if (!strcmp(name, table[i].name)) {
252       return i;
253     }
254   name_list = strdup(table[0].name);
255   for (i = 1; table[i].name; i++) {
256     name_list =
257         xbt_realloc(name_list,
258                     strlen(name_list) + strlen(table[i].name) + 3);
259     strcat(name_list, ", ");
260     strcat(name_list, table[i].name);
261   }
262   xbt_die("Model '%s' is invalid! Valid models are: %s.", name, name_list);
263   return -1;
264 }
265
266 double generic_maxmin_share_resources(xbt_swag_t running_actions,
267                                       size_t offset,
268                                       lmm_system_t sys,
269                                       void (*solve) (lmm_system_t))
270 {
271   surf_action_t action = NULL;
272   double min = -1;
273   double value = -1;
274 #define VARIABLE(action) (*((lmm_variable_t*)(((char *) (action)) + (offset))))
275
276   solve(sys);
277
278   xbt_swag_foreach(action, running_actions) {
279     value = lmm_variable_getvalue(VARIABLE(action));
280     if ((value > 0) || (action->max_duration >= 0))
281       break;
282   }
283
284   if (!action)
285     return -1.0;
286
287   if (value > 0) {
288     if (action->remains > 0)
289       min = action->remains / value;
290     else
291       min = 0.0;
292     if ((action->max_duration >= 0) && (action->max_duration < min))
293       min = action->max_duration;
294   } else
295     min = action->max_duration;
296
297
298   for (action = xbt_swag_getNext(action, running_actions->offset);
299        action;
300        action = xbt_swag_getNext(action, running_actions->offset)) {
301     value = lmm_variable_getvalue(VARIABLE(action));
302     if (value > 0) {
303       if (action->remains > 0)
304         value = action->remains / value;
305       else
306         value = 0.0;
307       if (value < min) {
308         min = value;
309         XBT_DEBUG("Updating min (value) with %p: %f", action, min);
310       }
311     }
312     if ((action->max_duration >= 0) && (action->max_duration < min)) {
313       min = action->max_duration;
314       XBT_DEBUG("Updating min (duration) with %p: %f", action, min);
315     }
316   }
317   XBT_DEBUG("min value : %f", min);
318
319 #undef VARIABLE
320   return min;
321 }
322
323 double generic_share_resources_lazy(double now, surf_model_t model)
324 {
325   surf_action_lmm_t action = NULL;
326   double min = -1;
327   double value;
328
329   XBT_DEBUG
330       ("Before share resources, the size of modified actions set is %d",
331        xbt_swag_size(model->model_private->modified_set));
332
333   lmm_solve(model->model_private->maxmin_system);
334
335   XBT_DEBUG
336       ("After share resources, The size of modified actions set is %d",
337        xbt_swag_size(model->model_private->modified_set));
338
339   while((action = xbt_swag_extract(model->model_private->modified_set))) {
340     int max_dur_flag = 0;
341
342     if (action->generic_action.state_set !=
343         model->states.running_action_set)
344       continue;
345
346     /* bogus priority, skip it */
347     if (action->generic_action.priority <= 0)
348       continue;
349
350     generic_update_action_remaining_lazy(action,now);
351
352     min = -1;
353     value = lmm_variable_getvalue(action->variable);
354     if (value > 0) {
355       if (action->generic_action.remains > 0) {
356         value = action->generic_action.remains / value;
357         min = now + value;
358       } else {
359         value = 0.0;
360         min = now;
361       }
362     }
363
364     if ((action->generic_action.max_duration != NO_MAX_DURATION)
365         && (min == -1
366             || action->generic_action.start +
367             action->generic_action.max_duration < min)) {
368       min = action->generic_action.start +
369           action->generic_action.max_duration;
370       max_dur_flag = 1;
371     }
372
373     XBT_DEBUG("Action(%p) Start %lf Finish %lf Max_duration %lf", action,
374         action->generic_action.start, now + value,
375         action->generic_action.max_duration);
376
377     if (min != -1) {
378       surf_action_lmm_heap_remove(model->model_private->action_heap,action);
379       surf_action_lmm_heap_insert(model->model_private->action_heap,action, min, max_dur_flag ? MAX_DURATION : NORMAL);
380       XBT_DEBUG("Insert at heap action(%p) min %lf now %lf", action, min,
381                 now);
382     } else DIE_IMPOSSIBLE;
383   }
384
385   //hereafter must have already the min value for this resource model
386   if (xbt_heap_size(model->model_private->action_heap) > 0)
387     min = xbt_heap_maxkey(model->model_private->action_heap) - now;
388   else
389     min = -1;
390
391   XBT_DEBUG("The minimum with the HEAP %lf", min);
392
393   return min;
394 }
395 static XBT_INLINE void routing_asr_host_free(void *p)
396 {
397   sg_routing_edge_t elm = p;
398   free(elm->name);
399   xbt_free(elm);
400 }
401
402 static XBT_INLINE void routing_asr_prop_free(void *p)
403 {
404   xbt_dict_t elm = p;
405   xbt_dict_free(&elm);
406 }
407
408 void sg_version(int *ver_major,int *ver_minor,int *ver_patch) {
409   *ver_major = SIMGRID_VERSION_MAJOR;
410   *ver_minor = SIMGRID_VERSION_MINOR;
411   *ver_patch = SIMGRID_VERSION_PATCH;
412 }
413
414 xbt_dynar_t sg_cmdline = NULL;
415
416 void surf_init(int *argc, char **argv)
417 {
418   XBT_DEBUG("Create all Libs");
419   host_lib = xbt_lib_new();
420   link_lib = xbt_lib_new();
421   as_router_lib = xbt_lib_new();
422   storage_lib = xbt_lib_new();
423   storage_type_lib = xbt_lib_new();
424   watched_hosts_lib = xbt_dict_new();
425
426   XBT_DEBUG("Add routing levels");
427   ROUTING_HOST_LEVEL = xbt_lib_add_level(host_lib,routing_asr_host_free);
428   ROUTING_ASR_LEVEL  = xbt_lib_add_level(as_router_lib,routing_asr_host_free);
429   ROUTING_PROP_ASR_LEVEL = xbt_lib_add_level(as_router_lib,routing_asr_prop_free);
430
431   XBT_DEBUG("Add SURF levels");
432   SURF_CPU_LEVEL = xbt_lib_add_level(host_lib,surf_resource_free);
433   SURF_WKS_LEVEL = xbt_lib_add_level(host_lib,surf_resource_free);
434   SURF_LINK_LEVEL = xbt_lib_add_level(link_lib,surf_resource_free);
435
436   sg_cmdline = xbt_dynar_new(sizeof(char*),NULL);
437   int i;
438   for (i=0;i<*argc;i++) {
439     xbt_dynar_push(sg_cmdline,&(argv[i]));
440   }
441   xbt_init(argc, argv);
442   if (!model_list)
443     model_list = xbt_dynar_new(sizeof(surf_model_private_t), NULL);
444   if (!history)
445     history = tmgr_history_new();
446
447   surf_config_init(argc, argv);
448
449   surf_action_init();
450   if (MC_is_active())
451     MC_memory_init();
452 }
453
454 #ifdef _XBT_WIN32
455 # define FILE_DELIM "\\"
456 #else
457 # define FILE_DELIM "/"         /* FIXME: move to better location */
458 #endif
459
460 FILE *surf_fopen(const char *name, const char *mode)
461 {
462   unsigned int cpt;
463   char *path_elm = NULL;
464   char *buff;
465   FILE *file = NULL;
466
467   xbt_assert(name);
468
469   if (__surf_is_absolute_file_path(name))       /* don't mess with absolute file names */
470     return fopen(name, mode);
471
472   /* search relative files in the path */
473   xbt_dynar_foreach(surf_path, cpt, path_elm) {
474     buff = bprintf("%s" FILE_DELIM "%s", path_elm, name);
475     file = fopen(buff, mode);
476     free(buff);
477
478     if (file)
479       return file;
480   }
481   return NULL;
482 }
483
484 void surf_exit(void)
485 {
486   unsigned int iter;
487   surf_model_t model = NULL;
488
489   surf_config_finalize();
490
491   xbt_dynar_foreach(model_list, iter, model)
492       model->model_private->finalize();
493   xbt_dynar_free(&model_list);
494   routing_exit();
495
496   if (maxmin_system) {
497     lmm_system_free(maxmin_system);
498     maxmin_system = NULL;
499   }
500   if (history) {
501     tmgr_history_free(history);
502     history = NULL;
503   }
504   surf_action_exit();
505
506 #ifdef CONTEXT_THREADS
507   xbt_parmap_destroy(surf_parmap);
508   xbt_free(surf_mins);
509   surf_mins = NULL;
510 #endif
511
512   xbt_dynar_free(&surf_path);
513   xbt_dynar_free(&sg_cmdline);
514
515   xbt_lib_free(&host_lib);
516   xbt_lib_free(&link_lib);
517   xbt_lib_free(&as_router_lib);
518   xbt_lib_free(&storage_lib);
519   xbt_lib_free(&storage_type_lib);
520
521   xbt_dict_free(&watched_hosts_lib);
522
523   tmgr_finalize();
524   surf_parse_lex_destroy();
525   surf_parse_free_callbacks();
526
527   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
528 }
529
530 void surf_presolve(void)
531 {
532   double next_event_date = -1.0;
533   tmgr_trace_event_t event = NULL;
534   double value = -1.0;
535   surf_resource_t resource = NULL;
536   surf_model_t model = NULL;
537   unsigned int iter;
538
539   XBT_DEBUG
540       ("First Run! Let's \"purge\" events and put models in the right state");
541   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
542     if (next_event_date > NOW)
543       break;
544     while ((event =
545             tmgr_history_get_next_event_leq(history, next_event_date,
546                                             &value,
547                                             (void **) &resource))) {
548       resource->model->model_private->update_resource_state(resource,
549                                                             event, value,
550                                                             NOW);
551     }
552   }
553   xbt_dynar_foreach(model_list, iter, model)
554       model->model_private->update_actions_state(NOW, 0.0);
555 }
556
557 double surf_solve(double max_date)
558 {
559   min = -1.0; /* duration */
560   double next_event_date = -1.0;
561   double model_next_action_end = -1.0;
562   double value = -1.0;
563   surf_resource_t resource = NULL;
564   surf_model_t model = NULL;
565   tmgr_trace_event_t event = NULL;
566   unsigned int iter;
567
568   if (max_date != -1.0 && max_date != NOW) {
569     min = max_date - NOW;
570   }
571
572   XBT_DEBUG("Looking for next action end for all models except NS3");
573
574   if (surf_mins == NULL) {
575     surf_mins = xbt_new(double, xbt_dynar_length(model_list));
576   }
577   surf_min_index = 0;
578
579
580   if (surf_get_nthreads() > 1) {
581     /* parallel version */
582 #ifdef CONTEXT_THREADS
583     xbt_parmap_apply(surf_parmap, (void_f_pvoid_t) surf_share_resources, model_list);
584 #else
585     xbt_die("Asked to run in parallel, but no thread at hand...");
586 #endif
587   }
588   else {
589     /* sequential version */
590     xbt_dynar_foreach(model_list, iter, model) {
591       surf_share_resources(model);
592     }
593   }
594
595   unsigned i;
596   for (i = 0; i < xbt_dynar_length(model_list); i++) {
597     if ((min < 0.0 || surf_mins[i] < min)
598         && surf_mins[i] >= 0.0) {
599       min = surf_mins[i];
600     }
601   }
602
603   XBT_DEBUG("Min for resources (remember that NS3 don't update that value) : %f", min);
604
605   XBT_DEBUG("Looking for next trace event");
606
607   do {
608     XBT_DEBUG("Next TRACE event : %f", next_event_date);
609
610     next_event_date = tmgr_history_next_date(history);
611
612     if(surf_network_model->name && !strcmp(surf_network_model->name,"network NS3")){
613       if(next_event_date!=-1.0 && min!=-1.0) {
614         min = MIN(next_event_date - NOW, min);
615       } else{
616         min = MAX(next_event_date - NOW, min);
617       }
618
619       XBT_DEBUG("Run for NS3 at most %f", min);
620       // run until min or next flow
621       model_next_action_end = surf_network_model->model_private->share_resources(min);
622
623       XBT_DEBUG("Min for NS3 : %f", model_next_action_end);
624       if(model_next_action_end>=0.0)
625         min = model_next_action_end;
626     }
627
628     if (next_event_date == -1.0) {
629       XBT_DEBUG("no next TRACE event. Stop searching for it");
630       break;
631     }
632
633     if ((min != -1.0) && (next_event_date > NOW + min)) break;
634
635     XBT_DEBUG("Updating models");
636     while ((event =
637             tmgr_history_get_next_event_leq(history, next_event_date,
638                                             &value,
639                                             (void **) &resource))) {
640       if (resource->model->model_private->resource_used(resource)) {
641         min = next_event_date - NOW;
642         XBT_DEBUG
643             ("This event will modify model state. Next event set to %f",
644              min);
645       }
646       /* update state of model_obj according to new value. Does not touch lmm.
647          It will be modified if needed when updating actions */
648       XBT_DEBUG("Calling update_resource_state for resource %s with min %lf",
649              resource->model->name, min);
650       resource->model->model_private->update_resource_state(resource,
651                                                             event, value,
652                                                             NOW + min);
653     }
654   } while (1);
655
656   /* FIXME: Moved this test to here to avoid stopping simulation if there are actions running on cpus and all cpus are with availability = 0.
657    * This may cause an infinite loop if one cpu has a trace with periodicity = 0 and the other a trace with periodicity > 0.
658    * The options are: all traces with same periodicity(0 or >0) or we need to change the way how the events are managed */
659   if (min == -1.0) {
660   XBT_DEBUG("No next event at all. Bail out now.");
661     return -1.0;
662   }
663
664   XBT_DEBUG("Duration set to %f", min);
665
666   NOW = NOW + min;
667
668   if (surf_get_nthreads() > 1) {
669     /* parallel version */
670 #ifdef CONTEXT_THREADS
671     xbt_parmap_apply(surf_parmap, (void_f_pvoid_t) surf_update_actions_state, model_list);
672 #endif
673   }
674   else {
675     /* sequential version */
676     xbt_dynar_foreach(model_list, iter, model) {
677       surf_update_actions_state(model);
678     }
679   }
680
681 #ifdef HAVE_TRACING
682   TRACE_paje_dump_buffer (0);
683 #endif
684
685   return min;
686 }
687
688 XBT_INLINE double surf_get_clock(void)
689 {
690   return NOW;
691 }
692
693 static void surf_share_resources(surf_model_t model)
694 {
695   double next_action_end = -1.0;
696   int i = __sync_fetch_and_add(&surf_min_index, 1);
697   if (strcmp(model->name,"network NS3")) {
698     XBT_DEBUG("Running for Resource [%s]", model->name);
699     next_action_end = model->model_private->share_resources(NOW);
700     XBT_DEBUG("Resource [%s] : next action end = %f",
701         model->name, next_action_end);
702   }
703   surf_mins[i] = next_action_end;
704 }
705
706 static void surf_update_actions_state(surf_model_t model)
707 {
708   model->model_private->update_actions_state(NOW, min);
709 }
710
711 /**
712  * \brief Returns the number of parallel threads used to update the models.
713  * \return the number of threads (1 means no parallelism)
714  */
715 int surf_get_nthreads(void) {
716   return surf_nthreads;
717 }
718
719 /**
720  * \brief Sets the number of parallel threads used to update the models.
721  *
722  * A value of 1 means no parallelism.
723  *
724  * \param nb_threads the number of threads to use
725  */
726 void surf_set_nthreads(int nthreads) {
727
728   if (nthreads<=0) {
729      nthreads = xbt_os_get_numcores();
730      XBT_INFO("Auto-setting surf/nthreads to %d",nthreads);
731   }
732
733 #ifdef CONTEXT_THREADS
734   xbt_parmap_destroy(surf_parmap);
735   surf_parmap = NULL;
736 #endif
737
738   if (nthreads > 1) {
739 #ifdef CONTEXT_THREADS
740     surf_parmap = xbt_parmap_new(nthreads, XBT_PARMAP_DEFAULT);
741 #else
742     THROWF(arg_error, 0, "Cannot activate parallel threads in Surf: your architecture does not support threads");
743 #endif
744   }
745
746   surf_nthreads = nthreads;
747 }
748
749 void surf_watched_hosts(void)
750 {
751   char *key;
752   void *host;
753   xbt_dict_cursor_t cursor;
754
755   XBT_DEBUG("Check for host SURF_RESOURCE_ON on watched_hosts_lib");
756   xbt_dict_foreach(watched_hosts_lib,cursor,key,host)
757   {
758     if(SIMIX_host_get_state(host) == SURF_RESOURCE_ON){
759       XBT_INFO("Restart processes on host: %s",SIMIX_host_get_name(host));
760       SIMIX_host_autorestart(host);
761       xbt_dict_remove(watched_hosts_lib,key);
762     }
763     else
764       XBT_DEBUG("See SURF_RESOURCE_OFF on host: %s",key);
765   }
766 }