Recipe

qwen3-6-27b-nvfp4-dgx-spark-gb10-128gb-vllm-tp1

qwen3-6-27b-nvfp4-dgx-spark-gb10-128gb-vllm-tp1

Observed LocalMaxxing leaderboard run. Evidence for compatibility, not an executable launch contract.

Record

Status
candidate
Source
localmaxxing
Engine
vllm
Engine version
0.24.0
Accelerators
1
Tensor parallel
1
Context tokens
2,048
chat
unknown
reasoning
unknown
tools
unknown
vision
unknown

Hugging Face model card

Identity

https://huggingface.co/unsloth/Qwen3.6-27B-NVFP4
Repository
unsloth/Qwen3.6-27B-NVFP4
Status
known
Link type
Exact Hub repository

Public Hugging Face repository confirmed by the Hub API.

Candidate: useful compatibility or speed evidence. The registry does not offer Run until promotion requirements are met.

Observed configuration

vllm

Evidence only · candidate · reference

Candidate evidence — not a Run contract

Source
https://www.localmaxxing.com/en/runs/cmri5obsn016xmj01joh0exn5

Source command could not be tokenized faithfully. The original string stays in metadata. This does not satisfy promotion.

Measured speed

ConcurrencyContextPrefillDecodeTTFT msStatusSweep
2,048440.440.1312observedqwen3-6-27b-nvfp4-dgx-spark-gb10-128gb-vllm-tp1-sweep

Remaining fields

Identity, launch, related records, and measured speed are shown above. This is the rest of the normalized record.

hardware count
1
hardware id
dgx-spark-gb10-128gb
id
qwen3-6-27b-nvfp4-dgx-spark-gb10-128gb-vllm-tp1
model instance id
unsloth-qwen3-6-27b-nvfp4--nvfp4
recipe source
localmaxxing
schema version
local-ai-registry/v1
speed sweep ids
qwen3-6-27b-nvfp4-dgx-spark-gb10-128gb-vllm-tp1-sweep
status
candidate

capabilities

draft launch

accelerator backend
nvidia
arguments
serve, --model, unsloth/Qwen3.6-27B-NVFP4, --tensor-parallel-size, 1, --host, 0.0.0.0, --port, 8000, --max-model-len, 2048
container port
8,000
entrypoint
vllm
host port
8,000
image
vllm/vllm-openai@sha256:0a51ea5b4ae2dc5d81890e5173f54203d2a3ae0cfffe51b8fd2afd4391bfd967
ipc
host
kind
docker
shm size
16g
synthesized · generated at
2026-08-31T22:12:17Z
synthesized · image provenance
deepseek-fp8-rtx-pro-6000-blackwell-96gb-vllm-tp1
synthesized · template
vllm-openai-v1

mounts

read onlytarget
No/root/.cache/huggingface

engine

name
vllm
version
0.24.0

serving

max context tokens
2,048
tensor parallel
1
Provenance & metadata (3)

facts

capabilities.chat · provenance · captured at
2026-08-30T09:26:09Z
capabilities.chat · reason capability-not-verified
capabilities.chat · state unknown
capabilities.reasoning · provenance · captured at
2026-08-30T09:26:09Z
capabilities.reasoning · reason capability-not-verified
capabilities.reasoning · state unknown
capabilities.tools · provenance · captured at
2026-08-30T09:26:09Z
capabilities.tools · reason capability-not-verified
capabilities.tools · state unknown
capabilities.vision · provenance · captured at
2026-08-30T09:26:09Z
capabilities.vision · reason capability-not-verified
capabilities.vision · state unknown
draft launch.entrypoint · provenance · captured at
2026-09-01T01:41:26Z
draft launch.entrypoint · reason linux-amd64-container-config-entrypoint
draft launch.entrypoint · state known
engine.graph mode · provenance · captured at
2026-08-30T09:26:09Z
engine.graph mode · reason runtime-detail-not-published
engine.graph mode · state unknown
serving.kv cache tokens · provenance · captured at
2026-08-30T09:26:09Z
serving.kv cache tokens · reason kv-cache-capacity-not-published
serving.kv cache tokens · state unknown
serving.max concurrency · provenance · captured at
2026-08-31T23:03:15Z
serving.max concurrency · reason server-capacity-not-evidenced
serving.max concurrency · state unknown

metadata

localmaxxing · backend
cuda
localmaxxing · batch size
1
localmaxxing · hardware label
GB10 Grace Blackwell
localmaxxing · notes
Caveat: The benchmark measured the streaming decode rate (time between first and last token). On llama-benchy which uses --exact-tg which measures differently (it counts the full request latency divided by output tokens) the numbers were more conservative PP: 772.7 tok/s (±46.4), TG: 18.0 tok/s (±4.1), Peak TG: 29.7 tok/s (±11.2), TTFT: 311.9 ms (±9.4)
localmaxxing · observed command
``` export CUTE_DSL_ARCH="${CUTE_DSL_ARCH:-sm_121a}" # Prevent OpenBLAS/MKL from spawning too many threads (crashes under systemd) export OPENBLAS_NUM_THREADS="${OPENBLAS_NUM_THREADS:-1}" export OMP_NUM_THREADS="${OMP_NUM_THREADS:-1}" export MKL_NUM_THREADS="${MKL_NUM_THREADS:-1}" export RAYON_NUM_THREADS="${RAYON_NUM_THREADS:-1}" export TOKENIZERS_PARALLELISM="${TOKENIZERS_PARALLELISM:-false}" # --- Paths --- VENV_DIR="${VENV_DIR:-./<local-dir>}" # see unsloth recipe (https://unsloth.ai/docs/models/qwen3.6#dgx-spark-with-nvfp4-quants) VLLM_BIN="$VENV_DIR/bin/vllm" MODEL_PATH="${MODEL_PATH:-$HOME/models/Qwen3.6-27B-NVFP4}" SERVED_NAME="${SERVED_NAME:-qwen36-27b}" # --- Speculative decoding --- SPEC_METHOD="${SPEC_METHOD:-mtp}" DFLASH_MODEL="${DFLASH_MODEL:-$HOME/models/Qwen3.6-27B-DFlash}" if [ "$SPEC_METHOD" = "dflash" ]; then SPEC_TOKENS="${SPEC_TOKENS:-15}" SPEC_CONFIG="{\"method\":\"dflash\",\"model\":\"$DFLASH_MODEL\",\"num_speculative_tokens\":${SPEC_TOKENS}}" else SPEC_TOKENS="${SPEC_TOKENS:-2}" SPEC_CONFIG="{\"method\":\"mtp\",\"num_speculative_tokens\":${SPEC_TOKENS}}" fi # --- Thinking mode --- ENABLE_THINKING="${ENABLE_THINKING:-1}" if [ "$ENABLE_THINKING" = "1" ]; then THINK_KWARGS='{"enable_thinking": true}' REASONING_FLAG="--reasoning-parser qwen3" else THINK_KWARGS='{"enable_thinking": false}' REASONING_FLAG="" fi # --- Serving --- MAX_MODEL_LEN="${MAX_MODEL_LEN:-262144}" MAX_NUM_SEQS="${MAX_NUM_SEQS:-8}" MAX_BATCH_TOKENS="${MAX_BATCH_TOKENS:-4096}" GPU_MEM_UTIL="${GPU_MEM_UTIL:-0.92}" # --- Optional flags --- EXTRA_FLAGS=() if [ "${LANGUAGE_ONLY:-1}" = "1" ]; then EXTRA_FLAGS+=(--language-model-only) fi if [ "${CHUNKED_PREFILL:-1}" = "1" ] && [ "$MAX_NUM_SEQS" -gt 1 ]; then EXTRA_FLAGS+=(--enable-chunked-prefill) fi # --- Launch --- exec "$VLLM_BIN" serve "$MODEL_PATH" \ --served-model-name "$SERVED_NAME" \ --host 0.0.0.0 --port 8000 \ --tensor-parallel-size 1 \ --gpu-memory-utilization "$GPU_MEM_UTIL" \ --max-model-len "$MAX_MODEL_LEN" \ --max-num-batched-tokens "$MAX_BATCH_TOKENS" \ --max-num-seqs "$MAX_NUM_SEQS" \ --trust-remote-code \ --speculative-config "$SPEC_CONFIG" \ --enable-auto-tool-choice \ --tool-call-parser qwen3_coder \ $REASONING_FLAG \ --default-chat-template-kwargs "$THINK_KWARGS" \ ${OVERRIDE_GENERATION_CONFIG:+--override-generation-config "$OVERRIDE_GENERATION_CONFIG"} \ "${EXTRA_FLAGS[@]}" \ --seed 0 ```
localmaxxing · run id
cmri5obsn016xmj01joh0exn5
localmaxxing · tokenized · fidelity
lossy

provenance

captured at
2026-08-30T09:26:09Z

sources

captured atkindurl
2026-08-30T09:26:09Znormalized-recipewww.localmaxxing.com/en/runs/cmri5obsn016xmj01joh0exn5