Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
df3087e1a13c82b9a564af4fbac72af637c81ba6
[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(const char* name)
59 {
60         return xbt_cfg_get_int(_surf_cfg_set,name);
61 }
62 double surf_cfg_get_double(const char* name)
63 {
64         return xbt_cfg_get_double(_surf_cfg_set,name);
65 }
66 char* surf_cfg_get_string(const 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(const 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 extern char *xbt_os_procname_data;
417
418
419 void surf_init(int *argc, char **argv)
420 {
421   xbt_os_procname_data = argv[0];
422
423   XBT_DEBUG("Create all Libs");
424   host_lib = xbt_lib_new();
425   link_lib = xbt_lib_new();
426   as_router_lib = xbt_lib_new();
427   storage_lib = xbt_lib_new();
428   storage_type_lib = xbt_lib_new();
429   watched_hosts_lib = xbt_dict_new();
430
431   XBT_DEBUG("Add routing levels");
432   ROUTING_HOST_LEVEL = xbt_lib_add_level(host_lib,routing_asr_host_free);
433   ROUTING_ASR_LEVEL  = xbt_lib_add_level(as_router_lib,routing_asr_host_free);
434   ROUTING_PROP_ASR_LEVEL = xbt_lib_add_level(as_router_lib,routing_asr_prop_free);
435
436   XBT_DEBUG("Add SURF levels");
437   SURF_CPU_LEVEL = xbt_lib_add_level(host_lib,surf_resource_free);
438   SURF_WKS_LEVEL = xbt_lib_add_level(host_lib,surf_resource_free);
439   SURF_LINK_LEVEL = xbt_lib_add_level(link_lib,surf_resource_free);
440
441   sg_cmdline = xbt_dynar_new(sizeof(char*),NULL);
442   int i;
443   for (i=0;i<*argc;i++) {
444     xbt_dynar_push(sg_cmdline,&(argv[i]));
445   }
446   xbt_init(argc, argv);
447   if (!model_list)
448     model_list = xbt_dynar_new(sizeof(surf_model_private_t), NULL);
449   if (!history)
450     history = tmgr_history_new();
451
452   surf_config_init(argc, argv);
453
454   surf_action_init();
455   if (MC_is_active())
456     MC_memory_init();
457 }
458
459 #ifdef _XBT_WIN32
460 # define FILE_DELIM "\\"
461 #else
462 # define FILE_DELIM "/"         /* FIXME: move to better location */
463 #endif
464
465 FILE *surf_fopen(const char *name, const char *mode)
466 {
467   unsigned int cpt;
468   char *path_elm = NULL;
469   char *buff;
470   FILE *file = NULL;
471
472   xbt_assert(name);
473
474   if (__surf_is_absolute_file_path(name))       /* don't mess with absolute file names */
475     return fopen(name, mode);
476
477   /* search relative files in the path */
478   xbt_dynar_foreach(surf_path, cpt, path_elm) {
479     buff = bprintf("%s" FILE_DELIM "%s", path_elm, name);
480     file = fopen(buff, mode);
481     free(buff);
482
483     if (file)
484       return file;
485   }
486   return NULL;
487 }
488
489 void surf_exit(void)
490 {
491   unsigned int iter;
492   surf_model_t model = NULL;
493
494   surf_config_finalize();
495
496   xbt_dynar_foreach(model_list, iter, model)
497       model->model_private->finalize();
498   xbt_dynar_free(&model_list);
499   routing_exit();
500
501   if (maxmin_system) {
502     lmm_system_free(maxmin_system);
503     maxmin_system = NULL;
504   }
505   if (history) {
506     tmgr_history_free(history);
507     history = NULL;
508   }
509   surf_action_exit();
510
511 #ifdef CONTEXT_THREADS
512   xbt_parmap_destroy(surf_parmap);
513   xbt_free(surf_mins);
514   surf_mins = NULL;
515 #endif
516
517   xbt_dynar_free(&surf_path);
518   xbt_dynar_free(&sg_cmdline);
519
520   xbt_lib_free(&host_lib);
521   xbt_lib_free(&link_lib);
522   xbt_lib_free(&as_router_lib);
523   xbt_lib_free(&storage_lib);
524   xbt_lib_free(&storage_type_lib);
525
526   xbt_dict_free(&watched_hosts_lib);
527
528   tmgr_finalize();
529   surf_parse_lex_destroy();
530   surf_parse_free_callbacks();
531
532   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
533 }
534
535 void surf_presolve(void)
536 {
537   double next_event_date = -1.0;
538   tmgr_trace_event_t event = NULL;
539   double value = -1.0;
540   surf_resource_t resource = NULL;
541   surf_model_t model = NULL;
542   unsigned int iter;
543
544   XBT_DEBUG
545       ("First Run! Let's \"purge\" events and put models in the right state");
546   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
547     if (next_event_date > NOW)
548       break;
549     while ((event =
550             tmgr_history_get_next_event_leq(history, next_event_date,
551                                             &value,
552                                             (void **) &resource))) {
553       resource->model->model_private->update_resource_state(resource,
554                                                             event, value,
555                                                             NOW);
556     }
557   }
558   xbt_dynar_foreach(model_list, iter, model)
559       model->model_private->update_actions_state(NOW, 0.0);
560 }
561
562 double surf_solve(double max_date)
563 {
564   min = -1.0; /* duration */
565   double next_event_date = -1.0;
566   double model_next_action_end = -1.0;
567   double value = -1.0;
568   surf_resource_t resource = NULL;
569   surf_model_t model = NULL;
570   tmgr_trace_event_t event = NULL;
571   unsigned int iter;
572
573   if (max_date != -1.0 && max_date != NOW) {
574     min = max_date - NOW;
575   }
576
577   XBT_DEBUG("Looking for next action end for all models except NS3");
578
579   if (surf_mins == NULL) {
580     surf_mins = xbt_new(double, xbt_dynar_length(model_list));
581   }
582   surf_min_index = 0;
583
584
585   if (surf_get_nthreads() > 1) {
586     /* parallel version */
587 #ifdef CONTEXT_THREADS
588     xbt_parmap_apply(surf_parmap, (void_f_pvoid_t) surf_share_resources, model_list);
589 #else
590     xbt_die("Asked to run in parallel, but no thread at hand...");
591 #endif
592   }
593   else {
594     /* sequential version */
595     xbt_dynar_foreach(model_list, iter, model) {
596       surf_share_resources(model);
597     }
598   }
599
600   unsigned i;
601   for (i = 0; i < xbt_dynar_length(model_list); i++) {
602     if ((min < 0.0 || surf_mins[i] < min)
603         && surf_mins[i] >= 0.0) {
604       min = surf_mins[i];
605     }
606   }
607
608   XBT_DEBUG("Min for resources (remember that NS3 don't update that value) : %f", min);
609
610   XBT_DEBUG("Looking for next trace event");
611
612   do {
613     XBT_DEBUG("Next TRACE event : %f", next_event_date);
614
615     next_event_date = tmgr_history_next_date(history);
616
617     if(surf_network_model->name && !strcmp(surf_network_model->name,"network NS3")){
618       if(next_event_date!=-1.0 && min!=-1.0) {
619         min = MIN(next_event_date - NOW, min);
620       } else{
621         min = MAX(next_event_date - NOW, min);
622       }
623
624       XBT_DEBUG("Run for NS3 at most %f", min);
625       // run until min or next flow
626       model_next_action_end = surf_network_model->model_private->share_resources(min);
627
628       XBT_DEBUG("Min for NS3 : %f", model_next_action_end);
629       if(model_next_action_end>=0.0)
630         min = model_next_action_end;
631     }
632
633     if (next_event_date == -1.0) {
634       XBT_DEBUG("no next TRACE event. Stop searching for it");
635       break;
636     }
637
638     if ((min != -1.0) && (next_event_date > NOW + min)) break;
639
640     XBT_DEBUG("Updating models");
641     while ((event =
642             tmgr_history_get_next_event_leq(history, next_event_date,
643                                             &value,
644                                             (void **) &resource))) {
645       if (resource->model->model_private->resource_used(resource)) {
646         min = next_event_date - NOW;
647         XBT_DEBUG
648             ("This event will modify model state. Next event set to %f",
649              min);
650       }
651       /* update state of model_obj according to new value. Does not touch lmm.
652          It will be modified if needed when updating actions */
653       XBT_DEBUG("Calling update_resource_state for resource %s with min %lf",
654              resource->model->name, min);
655       resource->model->model_private->update_resource_state(resource,
656                                                             event, value,
657                                                             NOW + min);
658     }
659   } while (1);
660
661   /* FIXME: Moved this test to here to avoid stopping simulation if there are actions running on cpus and all cpus are with availability = 0.
662    * This may cause an infinite loop if one cpu has a trace with periodicity = 0 and the other a trace with periodicity > 0.
663    * The options are: all traces with same periodicity(0 or >0) or we need to change the way how the events are managed */
664   if (min == -1.0) {
665   XBT_DEBUG("No next event at all. Bail out now.");
666     return -1.0;
667   }
668
669   XBT_DEBUG("Duration set to %f", min);
670
671   NOW = NOW + min;
672
673   if (surf_get_nthreads() > 1) {
674     /* parallel version */
675 #ifdef CONTEXT_THREADS
676     xbt_parmap_apply(surf_parmap, (void_f_pvoid_t) surf_update_actions_state, model_list);
677 #endif
678   }
679   else {
680     /* sequential version */
681     xbt_dynar_foreach(model_list, iter, model) {
682       surf_update_actions_state(model);
683     }
684   }
685
686 #ifdef HAVE_TRACING
687   TRACE_paje_dump_buffer (0);
688 #endif
689
690   return min;
691 }
692
693 XBT_INLINE double surf_get_clock(void)
694 {
695   return NOW;
696 }
697
698 static void surf_share_resources(surf_model_t model)
699 {
700   double next_action_end = -1.0;
701   int i = __sync_fetch_and_add(&surf_min_index, 1);
702   if (strcmp(model->name,"network NS3")) {
703     XBT_DEBUG("Running for Resource [%s]", model->name);
704     next_action_end = model->model_private->share_resources(NOW);
705     XBT_DEBUG("Resource [%s] : next action end = %f",
706         model->name, next_action_end);
707   }
708   surf_mins[i] = next_action_end;
709 }
710
711 static void surf_update_actions_state(surf_model_t model)
712 {
713   model->model_private->update_actions_state(NOW, min);
714 }
715
716 /**
717  * \brief Returns the number of parallel threads used to update the models.
718  * \return the number of threads (1 means no parallelism)
719  */
720 int surf_get_nthreads(void) {
721   return surf_nthreads;
722 }
723
724 /**
725  * \brief Sets the number of parallel threads used to update the models.
726  *
727  * A value of 1 means no parallelism.
728  *
729  * \param nb_threads the number of threads to use
730  */
731 void surf_set_nthreads(int nthreads) {
732
733   if (nthreads<=0) {
734      nthreads = xbt_os_get_numcores();
735      XBT_INFO("Auto-setting surf/nthreads to %d",nthreads);
736   }
737
738 #ifdef CONTEXT_THREADS
739   xbt_parmap_destroy(surf_parmap);
740   surf_parmap = NULL;
741 #endif
742
743   if (nthreads > 1) {
744 #ifdef CONTEXT_THREADS
745     surf_parmap = xbt_parmap_new(nthreads, XBT_PARMAP_DEFAULT);
746 #else
747     THROWF(arg_error, 0, "Cannot activate parallel threads in Surf: your architecture does not support threads");
748 #endif
749   }
750
751   surf_nthreads = nthreads;
752 }
753
754 void surf_watched_hosts(void)
755 {
756   char *key;
757   void *host;
758   xbt_dict_cursor_t cursor;
759
760   XBT_DEBUG("Check for host SURF_RESOURCE_ON on watched_hosts_lib");
761   xbt_dict_foreach(watched_hosts_lib,cursor,key,host)
762   {
763     if(SIMIX_host_get_state(host) == SURF_RESOURCE_ON){
764       XBT_INFO("Restart processes on host: %s",SIMIX_host_get_name(host));
765       SIMIX_host_autorestart(host);
766       xbt_dict_remove(watched_hosts_lib,key);
767     }
768     else
769       XBT_DEBUG("See SURF_RESOURCE_OFF on host: %s",key);
770   }
771 }