AEON-7 commited on
Commit
7ddff52
·
verified ·
1 Parent(s): e80047d

Recipe: gpu-util 0.6-0.7 on DGX Spark unified memory (>~0.8 thrashes the shared pool); discrete VRAM unchanged

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -68,7 +68,7 @@ A measured, validate-before-ship abliteration:
68
  ```bash
69
  vllm serve AEON-7/Ornith-1.0-35B-AEON-Ultimate-Uncensored-BF16 \
70
  --served-model-name ornith --max-model-len 262144 \
71
- --gpu-memory-utilization 0.85 --max-num-batched-tokens 16384 \
72
  --mamba-cache-dtype float32 \
73
  --reasoning-parser qwen3 --enable-auto-tool-choice --tool-call-parser qwen3_coder \
74
  --limit-mm-per-prompt '{"image":4,"video":2}' --mm-encoder-tp-mode data \
@@ -76,6 +76,7 @@ vllm serve AEON-7/Ornith-1.0-35B-AEON-Ultimate-Uncensored-BF16 \
76
  --enable-chunked-prefill --enable-prefix-caching --trust-remote-code
77
  ```
78
  `--served-model-name` takes a list of aliases — name it after the model your clients already request for a drop-in cutover.
 
79
  Reasoning model: every turn opens `<think>…</think>`. Recommended sampling: `temperature 0.6, top_p 0.95, top_k 20`. Vision (image/video) is inherited from the base and intact; on a vision-enabled deploy, KV cache stays BF16.
80
 
81
  ## Variants & quantization
 
68
  ```bash
69
  vllm serve AEON-7/Ornith-1.0-35B-AEON-Ultimate-Uncensored-BF16 \
70
  --served-model-name ornith --max-model-len 262144 \
71
+ --gpu-memory-utilization 0.70 --max-num-batched-tokens 16384 \
72
  --mamba-cache-dtype float32 \
73
  --reasoning-parser qwen3 --enable-auto-tool-choice --tool-call-parser qwen3_coder \
74
  --limit-mm-per-prompt '{"image":4,"video":2}' --mm-encoder-tp-mode data \
 
76
  --enable-chunked-prefill --enable-prefix-caching --trust-remote-code
77
  ```
78
  `--served-model-name` takes a list of aliases — name it after the model your clients already request for a drop-in cutover.
79
+ On the DGX Spark's unified memory keep `--gpu-memory-utilization` at 0.6-0.7; above ~0.8 the shared CPU+GPU pool page-thrashes. Discrete-VRAM GPUs can run higher.
80
  Reasoning model: every turn opens `<think>…</think>`. Recommended sampling: `temperature 0.6, top_p 0.95, top_k 20`. Vision (image/video) is inherited from the base and intact; on a vision-enabled deploy, KV cache stays BF16.
81
 
82
  ## Variants & quantization