From 1c87847b6bf10cf4ecc1d6b4b96f9d8b9449820c Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Thu, 11 May 2023 21:48:56 +0300 Subject: [PATCH] llama : update v2 PR number to 1405 --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index be9f8fffb..b2dbc6c3b 100644 --- a/llama.cpp +++ b/llama.cpp @@ -840,7 +840,7 @@ static const char *llama_file_version_name(llama_file_version version) { switch (version) { case LLAMA_FILE_VERSION_GGML: return "'ggml' (old version with low tokenizer quality and no mmap support)"; case LLAMA_FILE_VERSION_GGMF_V1: return "ggmf v1 (old version with no mmap support)"; - case LLAMA_FILE_VERSION_GGJT_V1: return "ggjt v1 (pre #1305)"; + case LLAMA_FILE_VERSION_GGJT_V1: return "ggjt v1 (pre #1405)"; case LLAMA_FILE_VERSION_GGJT_V2: return "ggjt v2 (latest)"; } }