From b27726da932e200308f54b9eb3e24cb167a984fe Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Sat, 11 Nov 2023 13:04:58 +0200 Subject: [PATCH] whisper : add note that ggml_mul_mat_pad does not work with CUDA --- whisper.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/whisper.cpp b/whisper.cpp index bef6f69b..eb69f96f 100644 --- a/whisper.cpp +++ b/whisper.cpp @@ -207,6 +207,7 @@ static struct ggml_tensor * ggml_mul_mat_pad(struct ggml_context * ctx, struct g } // TODO: check if other platforms can benefit from this optimization +// TODO: CUDA is currently broken - seems ggml_mul_mat does not handle views correctly #if defined(GGML_USE_METAL) #define ggml_mul_mat ggml_mul_mat_pad #endif