From ec6e4162bcc7cfe68a81d833102a0f93048701da Mon Sep 17 00:00:00 2001 From: Chandrashekara K R Date: Tue, 25 Jan 2022 13:53:03 +0530 Subject: [PATCH] Updated windows build system. We were using add_compile_options(-Xclang -fopenmp) statement to set omp library compiler flags on MSVC using cmake. Observing there is an performance regression because of the compiler version which is using in MSVC(clang 10), so removing it from the windows build system and configuring the compiler version(clang 13) and compiler options manually on MSVC gui to gain a performance on matlab bench. Change-Id: I37d778abdceb7c1fae9b1caaeea8adb114677dd2 --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 19cf7e68f..39e8a44bc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -267,7 +267,6 @@ if(ENABLE_MULTITHREADING) find_package(OpenMP) if (OPENMP_FOUND) set(BLIS_ENABLE_OPENMP TRUE) - add_compile_options(-Xclang -fopenmp) else() message (FATAL_ERROR "Openmp Not Found") endif()