Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add configuration auto for contexts/nthreads and use the PROCESSOR_COUNT.
authornavarro <navarro@caraja.(none)>
Wed, 25 Jan 2012 10:36:00 +0000 (11:36 +0100)
committernavarro <navarro@caraja.(none)>
Wed, 25 Jan 2012 10:36:00 +0000 (11:36 +0100)
Default number is 1.

buildtools/Cmake/Modules/FindNbCore.cmake
include/simix/context.h
src/simix/smx_context.c
src/surf/surf_config.c

index a3c1809176a6703d240c1c75db17cfb799d3ad82..4b3c5935f1f79a4c4da91e87ee430e496f5ce00c 100644 (file)
@@ -1,6 +1,6 @@
 if(NOT DEFINED PROCESSOR_COUNT)
-  # Unknown:
-  set(PROCESSOR_COUNT 0)
+  # Default:
+  set(PROCESSOR_COUNT 1)
 
   # Linux:
   set(cpuinfo_file "/proc/cpuinfo")
index 137e37451976bd1a94dc8f6261aded9883977886..ce4def0ef683ccc456b6c073f6dd791b6f1fafe2 100644 (file)
@@ -101,7 +101,7 @@ XBT_PUBLIC(smx_process_t) SIMIX_process_from_PID(int PID);
 /* parallelism */
 XBT_INLINE int SIMIX_context_is_parallel(void);
 XBT_INLINE int SIMIX_context_get_nthreads(void);
-XBT_INLINE void SIMIX_context_set_nthreads(int nb_threads);
+XBT_INLINE void SIMIX_context_set_nthreads(char* str_nb_threads);
 XBT_INLINE int SIMIX_context_get_parallel_threshold(void);
 XBT_INLINE void SIMIX_context_set_parallel_threshold(int threshold);
 XBT_INLINE e_xbt_parmap_mode_t SIMIX_context_get_parallel_mode(void);
index fed8f7fe3fb8bdf949427b505f463ec2c80d5dc9..94746b7d91ceb5657ae6426412237d894fd22577 100644 (file)
@@ -136,7 +136,16 @@ XBT_INLINE int SIMIX_context_get_nthreads(void) {
  *
  * \param nb_threads the number of threads to use
  */
-XBT_INLINE void SIMIX_context_set_nthreads(int nb_threads) {
+XBT_INLINE void SIMIX_context_set_nthreads(char* str_nb_threads) {
+
+  int nb_threads;
+
+  if(!strcmp(str_nb_threads,"auto")){
+      nb_threads = PROCESSOR_COUNT;
+      XBT_DEBUG("Auto-setting threads to %d",nb_threads);
+  }
+  else
+    nb_threads = atoi(str_nb_threads);
 
   xbt_assert(nb_threads > 0, "Invalid number of parallel threads: %d", nb_threads);
 
index ad2b55e52d0158cccb7956a6d506b8a1c27cc811..3f495f3e9d3c1e9cef787a47c5d7bdd1c1d8c6f8 100644 (file)
@@ -226,7 +226,7 @@ static void _surf_cfg_cb_context_stack_size(const char *name, int pos)
 
 static void _surf_cfg_cb_contexts_nthreads(const char *name, int pos)
 {
-  SIMIX_context_set_nthreads(xbt_cfg_get_int(_surf_cfg_set, name));
+  SIMIX_context_set_nthreads(xbt_cfg_get_string(_surf_cfg_set, name));
 }
 
 static void _surf_cfg_cb_contexts_parallel_threshold(const char *name, int pos)
@@ -461,10 +461,10 @@ void surf_config_init(int *argc, char **argv)
                      _surf_cfg_cb_context_stack_size, NULL);
 
     /* number of parallel threads for user processes */
-    default_value_int = 1;
+    default_value = xbt_strdup("1");
     xbt_cfg_register(&_surf_cfg_set, "contexts/nthreads",
                      "Number of parallel threads used to execute user contexts",
-                     xbt_cfgelm_int, &default_value_int, 1, 1,
+                     xbt_cfgelm_string, &default_value, 1, 1,
                      _surf_cfg_cb_contexts_nthreads, NULL);
 
     /* minimal number of user contexts to be run in parallel */