From 9a6a551ea1f841a71624dbb79e128bf0870d3aa9 Mon Sep 17 00:00:00 2001 From: Ben Cumming <louncharf@gmail.com> Date: Wed, 29 Mar 2017 12:26:38 +0200 Subject: [PATCH] Change default threading model from serial to cthread (#214) Fixes #212. * Update the main `CMakeLists.txt` file to select the cthread back end by default, and present the threading options in the order: cthread, tbb, serial. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7aef7171..5d569fb2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,8 +55,8 @@ set(EXTERNAL_INCLUDES "") #---------------------------------------------------------- # Threading model selection #---------------------------------------------------------- -set(NMC_THREADING_MODEL "serial" CACHE STRING "set the threading model, one of serial/tbb/cthread") -set_property(CACHE NMC_THREADING_MODEL PROPERTY STRINGS serial tbb cthread) +set(NMC_THREADING_MODEL "cthread" CACHE STRING "set the threading model, one of cthread/tbb/serial") +set_property(CACHE NMC_THREADING_MODEL PROPERTY STRINGS cthread tbb serial ) if(NMC_THREADING_MODEL MATCHES "tbb") -- GitLab