llama: update to commit 71e90e88 (#10192)

This commit is contained in:
Jeffrey Morgan 2025-04-16 18:14:01 -04:00 committed by GitHub
parent 369de832cd
commit 943464ccb8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
160 changed files with 42219 additions and 33080 deletions

View file

@ -73,7 +73,7 @@ struct llama_vocab * llama_load_vocab_from_file(const char * fname) {
try {
const auto kv = LLM_KV(LLM_ARCH_UNKNOWN);
std::vector<std::string> splits = {};
llama_model_loader ml(std::string(fname), splits, false, false, nullptr);
llama_model_loader ml(std::string(fname), splits, false, false, nullptr, nullptr);
vocab->load(ml, kv);
} catch (const std::exception & err) {
LLAMA_LOG_ERROR("%s: error loading model: %s\n", __func__, err.what());