Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revert "Add a script to detect the number of core."
authorMartin Quinson <martin.quinson@loria.fr>
Fri, 27 Jan 2012 20:36:13 +0000 (21:36 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Fri, 27 Jan 2012 20:36:13 +0000 (21:36 +0100)
There is no use of detecting the amount of cores at compile time. We
need the amount of cores at runtime.

This reverts commit 39b99d7659c7f2ecd789c141a8fced9bf9684cff.

buildtools/Cmake/Modules/FindNbCore.cmake [deleted file]

diff --git a/buildtools/Cmake/Modules/FindNbCore.cmake b/buildtools/Cmake/Modules/FindNbCore.cmake
deleted file mode 100644 (file)
index 4b3c593..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-if(NOT DEFINED PROCESSOR_COUNT)
-  # Default:
-  set(PROCESSOR_COUNT 1)
-
-  # Linux:
-  set(cpuinfo_file "/proc/cpuinfo")
-  if(EXISTS "${cpuinfo_file}")
-    file(STRINGS "${cpuinfo_file}" procs REGEX "^processor.: [0-9]+$")
-    list(LENGTH procs PROCESSOR_COUNT)
-  endif()
-
-  # Mac:
-  if(APPLE)
-    find_program(cmd_sys_pro "system_profiler")
-    if(cmd_sys_pro)
-      execute_process(COMMAND ${cmd_sys_pro} OUTPUT_VARIABLE info)
-      string(REGEX REPLACE "^.*Total Number Of Cores: ([0-9]+).*$" "\\1"
-        PROCESSOR_COUNT "${info}")
-    endif()
-  endif()
-
-  # Windows:
-  if(WIN32)
-    set(PROCESSOR_COUNT "$ENV{NUMBER_OF_PROCESSORS}")
-  endif()
-endif()
-
-message(STATUS "Number of core ${PROCESSOR_COUNT}")
\ No newline at end of file