llama: Restore quantization of mmprojs (#26818)

* Restore quantization of mmprojs

This was lost in the refactor undertaken in #22004.

* add noreturn

---------

Co-authored-by: Xuan Son Nguyen <son@huggingface.co>
This commit is contained in:
Pedro Cuenca
2026-08-10 11:58:32 +02:00
committed by GitHub
co-authored by Xuan Son Nguyen
parent 2e2d99cfd2
commit 86c298fb8a
3 changed files with 36 additions and 0 deletions
+2
View File
@@ -40,6 +40,8 @@
static llama_model * llama_model_mapping(llm_arch arch, const llama_model_params & params) {
switch (arch) {
case LLM_ARCH_CLIP:
return new llama_model_clip(params);
case LLM_ARCH_LLAMA:
return new llama_model_llama(params);
case LLM_ARCH_LLAMA4: