mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2026-04-05 14:45:28 +00:00
Add a --cpu-moe model for llama.cpp
This commit is contained in:
parent
d6f39e1fef
commit
0d4eff284c
5 changed files with 7 additions and 1 deletions
|
|
@ -326,6 +326,8 @@ class LlamaServer:
|
|||
cmd += ["--threads", str(shared.args.threads)]
|
||||
if shared.args.threads_batch > 0:
|
||||
cmd += ["--threads-batch", str(shared.args.threads_batch)]
|
||||
if shared.args.cpu_moe:
|
||||
cmd.append("--cpu-moe")
|
||||
if shared.args.no_mmap:
|
||||
cmd.append("--no-mmap")
|
||||
if shared.args.mlock:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue