mirror of
https://github.com/amd/blis.git
synced 2026-05-22 01:18:18 +00:00
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:
committed by
Dipal M Zambare
parent
31921b9974
commit
ec6e4162bc
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user