From 6e9596f6de084ee07035ea8c5cfdd6966403800c Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Wed, 28 Aug 2024 11:40:11 +0300 Subject: [PATCH] whisper : fix compile warning for unused params --- src/whisper.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/whisper.cpp b/src/whisper.cpp index 0744dba..0e72f87 100644 --- a/src/whisper.cpp +++ b/src/whisper.cpp @@ -1297,6 +1297,8 @@ static ggml_backend_t whisper_backend_init_gpu(const whisper_context_params & pa } #endif + GGML_UNUSED(params); + return result; }