We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d6a1f commit 6d459cbCopy full SHA for 6d459cb
llama.cpp
@@ -1578,12 +1578,14 @@ static void llama_kv_cache_seq_shift(
1578
enum llama_fver {
1579
GGUF_FILE_VERSION_V1 = 1,
1580
GGUF_FILE_VERSION_V2 = 2,
1581
+ GGUF_FILE_VERSION_V3 = 3,
1582
};
1583
1584
static const char * llama_file_version_name(llama_fver version) {
1585
switch (version) {
1586
case GGUF_FILE_VERSION_V1: return "GGUF V1 (support until nov 2023)";
- case GGUF_FILE_VERSION_V2: return "GGUF V2 (latest)";
1587
+ case GGUF_FILE_VERSION_V2: return "GGUF V2";
1588
+ case GGUF_FILE_VERSION_V3: return "GGUF V3 (latest)";
1589
}
1590
1591
return "unknown";
0 commit comments