Recommended parameters to run Llama CPP

#2
by jpmrblood - opened

Can you share how you run your model using your llama.cpp branch? Thanks

Just wanna say thank you for your model. This model is stable and fast using your forked llama.cpp MXFP6 NVFP4. Here's my current way running in single RTX 5090:

$LLAMA_CPP_HOME/build-v2/bin/llama-server \
  -m "$MAIN_MODEL" \
  --mmproj "$MMPROJ_MODEL" \
  --no-mmproj-offload \
  --image-min-tokens 1024 \
  -fa on \
  --kv-unified \
  --no-ui \
  -ctk q8_0 -ctv q8_0 \
  --host 0.0.0.0 --port 8082 \
  -ngl all \
  -np 4 \
  --no-mmap --mlock --jinja \
  --no-host --metrics \
  --log-timestamps --log-prefix -lv 3 \
  --no-context-shift \
  --reasoning on \
  --chat-template-kwargs '{"preserve_thinking":true}' \
  --temp 0.7 --top-k 20 --top-p 0.95 --min-p 0.05 --presence-penalty 0.1 --repeat-penalty 1.1

Sign up or log in to comment