mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2025-09-10 17:14:36 +00:00
fixed tools compile error
This commit is contained in:
parent
1559d4d2fb
commit
dca7ab5d9e
2 changed files with 5 additions and 5 deletions
|
@ -1365,7 +1365,7 @@ struct llama_model * common_load_model_from_url(
|
|||
return NULL;
|
||||
}
|
||||
|
||||
auto key_n_split = gguf_find_key(ctx_gguf, LLM_KV_SPLIT_COUNT_STR);
|
||||
auto key_n_split = gguf_find_key(ctx_gguf, LLM_KV_SPLIT_COUNT);
|
||||
if (key_n_split >= 0) {
|
||||
n_split = gguf_get_val_u16(ctx_gguf, key_n_split);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue