From a9a2af93ed7ac7eaaf8ae8df922fbbb3aeccc0ab Mon Sep 17 00:00:00 2001 From: goerch Date: Mon, 2 Oct 2023 09:18:51 +0200 Subject: [PATCH] Update llama.cpp Co-authored-by: Georgi Gerganov --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index 8add6d165..eafcfda22 100644 --- a/llama.cpp +++ b/llama.cpp @@ -4460,7 +4460,7 @@ struct llm_bigram_bpe { struct llm_tokenizer_bpe { llm_tokenizer_bpe(const llama_vocab & vocab): vocab(vocab) {} - void tokenize(const std::string & text, std::vector& output) { + void tokenize(const std::string & text, std::vector & output) { int final_prev_index = -1; auto word_collection = bpe_gpt2_preprocess(text);