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
This commit is contained in:
Chandrashekara K R
2022-01-25 13:53:03 +05:30
committed by Dipal M Zambare
parent 31921b9974
commit ec6e4162bc

View File

@@ -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()