llama : fix build
This commit is contained in:
parent
decea31220
commit
8f9fe6dd7f
1 changed files with 3 additions and 1 deletions
|
@ -11792,8 +11792,10 @@ enum llama_rope_type llama_rope_type(const struct llama_model * model) {
|
||||||
// all model arches should be listed explicitly here
|
// all model arches should be listed explicitly here
|
||||||
case LLM_ARCH_UNKNOWN:
|
case LLM_ARCH_UNKNOWN:
|
||||||
GGML_ASSERT(false && "unknown architecture");
|
GGML_ASSERT(false && "unknown architecture");
|
||||||
return LLAMA_ROPE_TYPE_NONE;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return LLAMA_ROPE_TYPE_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t llama_n_vocab(const struct llama_model * model) {
|
int32_t llama_n_vocab(const struct llama_model * model) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue