From c9441a8b10872cb08ce85d829833ea79274b4b4c Mon Sep 17 00:00:00 2001 From: Florent Pruvost <florent.pruvost@inria.fr> Date: Mon, 16 Apr 2018 16:11:45 +0200 Subject: [PATCH] no need to force sequential version here, it should be the use's choice with CHAMELEON_KERNELS_PAR=ON|OFF --- CMakeLists.txt | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2123adf60..daaeeb997 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -247,21 +247,16 @@ endif() # --------------------------- option(CHAMELEON_KERNELS_PAR "Enable parallel kernels (requires Intel MKL)" OFF) +# If parallel kernels ON: we need the parallel MKL version +if (CHAMELEON_KERNELS_PAR) + set (BLA_VENDOR "Intel10_64lp") +endif() + # Initially we need to generate files for different precisions # TODO: use this option to avoid generate multiple precisions each time we launch cmake #option(CHAMELEON_GEN_PREC "Generate source files precisions" ON) #------------------------------------------------------------------------------ -# If Intel compiler force using Intel MKL Sequential if BLA_VENDOR not set -if (CMAKE_C_COMPILER_ID MATCHES "Intel" AND (NOT BLA_VENDOR OR BLA_VENDOR STREQUAL "All")) - set (BLA_VENDOR "Intel10_64lp_seq") -endif() - -# If parallel kernels ON we need the parallel MKL version -if (CHAMELEON_KERNELS_PAR) - set (BLA_VENDOR "Intel10_64lp") -endif() - ############################################################################### # Build dependency HQR library # ################################ -- GitLab