From a56f435fd475afd7edf02bfbf9f8c77f527198c2 Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Sun, 10 Mar 2024 07:55:22 -0700 Subject: [PATCH] whisper : document whisper_batch.n_seq_id (#1942) To prevent other people from attempting to remove it, as I did. --- whisper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whisper.cpp b/whisper.cpp index bc19518..289d703 100644 --- a/whisper.cpp +++ b/whisper.cpp @@ -413,7 +413,7 @@ struct whisper_batch { whisper_token * token; whisper_pos * pos; - int32_t * n_seq_id; + int32_t * n_seq_id; // always 1, here for consistency with llama.cpp whisper_seq_id ** seq_id; // null terminated int8_t * logits; };