cmake : add a flag to disable F16C (#628)

This commit is contained in:
Andrew Huynh 2023-03-22 13:30:40 -07:00 committed by GitHub
parent aec01bb337
commit fc49c44426
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -172,9 +172,11 @@ else()
if(NOT WHISPER_NO_FMA) if(NOT WHISPER_NO_FMA)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mfma") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mfma")
endif() endif()
if(NOT WHISPER_NO_F16C)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mf16c") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mf16c")
endif() endif()
endif() endif()
endif()
endif() endif()
if (WHISPER_PERF) if (WHISPER_PERF)