Signed-off-by: Adrien Gallouët <angt@huggingface.co>
This commit is contained in:
Adrien Gallouët 2025-01-31 15:51:28 +00:00
parent 7a3ed4171e
commit 3f199134f0
No known key found for this signature in database

View File

@ -37,7 +37,7 @@ struct Args {
n_gpu_layers: usize,
/// Split the model across multiple GPUs.
#[clap(default_value = "Layer", long, env)]
#[clap(default_value = "layer", long, env)]
split_mode: LlamacppSplitMode,
/// Defragment the KV cache if holes/size > threshold.
@ -45,7 +45,7 @@ struct Args {
defrag_threshold: f32,
/// Setup NUMA optimizations.
#[clap(default_value = "Disabled", value_enum, long, env)]
#[clap(default_value = "disabled", value_enum, long, env)]
numa: LlamacppNuma,
/// Whether to use memory mapping.