cmake : fix passing GGML_PERF compile option

pull/95/head^2
Georgi Gerganov 2 years ago
parent 0e689f83d8
commit a2eeb941f6
No known key found for this signature in database
GPG Key ID: 449E073F9DC10735

@ -47,7 +47,7 @@ else()
option(WHISPER_SUPPORT_OPENBLAS "whisper: support for OpenBLAS" OFF) option(WHISPER_SUPPORT_OPENBLAS "whisper: support for OpenBLAS" OFF)
endif() endif()
option(WHISPER_PERF "whisper: enable perf timings" OFF) option(WHISPER_PERF "whisper: enable perf timings" OFF)
# sanitizers # sanitizers
@ -151,6 +151,10 @@ else()
endif() endif()
endif() endif()
if (WHISPER_PERF)
set(WHISPER_EXTRA_FLAGS ${WHISPER_EXTRA_FLAGS} -DGGML_PERF)
endif()
# #
# whisper - this is the main library of the project # whisper - this is the main library of the project
# #

Loading…
Cancel
Save