]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
download : prefer q8_0 when q4_k not available (#22428)
authorGeorgi Gerganov <redacted>
Mon, 27 Apr 2026 12:30:29 +0000 (15:30 +0300)
committerGitHub <redacted>
Mon, 27 Apr 2026 12:30:29 +0000 (14:30 +0200)
common/download.cpp

index c4bb02d90c2b70e3ac7a6027e6c4335bd186eb9e..d6d47b2d2fcfce00058cd2ede1a38a20716be0af 100644 (file)
@@ -627,7 +627,7 @@ static hf_cache::hf_file find_best_model(const hf_cache::hf_files & files,
     if (!tag.empty()) {
         tags.push_back(tag);
     } else {
-        tags = {"Q4_K_M", "Q4_0"};
+        tags = {"Q4_K_M", "Q8_0"};
     }
 
     for (const auto & t : tags) {