Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
Exception:    SplitsNotFoundError
Message:      The split names could not be parsed from the dataset config.
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
                  for split_generator in builder._split_generators(
                                         ^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 90, in _split_generators
                  inferred_arrow_schema = pa.concat_tables(pa_tables, promote_options="default").schema
                                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "pyarrow/table.pxi", line 6319, in pyarrow.lib.concat_tables
                File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
                File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
              pyarrow.lib.ArrowTypeError: Unable to merge: Field json has incompatible types: struct<manifests: list<item: struct<annotations: struct<io.containerd.image.name: string, org.opencontainers.image.ref.name: string>, digest: string, mediaType: string, size: int64>>, mediaType: string, schemaVersion: int64> vs list<item: struct<Config: string, Layers: list<item: string>, RepoTags: list<item: string>>>
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 66, in compute_split_names_from_streaming_response
                  for split in get_dataset_split_names(
                               ^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
                  info = get_dataset_config_info(
                         ^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
                  raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
              datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

canada-quant/dsv4-flash-w4a16-rtxpro6000-image

Pre-built Docker image (canada-quant/dsv4-w4a16-rtxpro6000:v1) that serves canada-quant/DeepSeek-V4-Flash-W4A16-FP8-MTP on RTX PRO 6000 Blackwell (SM 12.0a) out of the box.

Why this image exists: the W4A16 artifact needs a tightly-pinned vLLM build (jasl/vllm@27fd665b + canada-quant BF16-MTP cherry-pick + ~13 layers of dependency/patch fixes) to serve correctly on consumer/server Blackwell. Rebuilding all that on a fresh box is ~25 min of friction we already paid; this image saves you that time.

Hardware coverage: image was directly verified on RTX PRO 6000 Blackwell Server Edition (Brev g7e.24xlarge, 4× 97 GB Server cards, TP=2 and TP=4) with the full bench matrix (AIME-2024 chat/high/max c=4, GSM8K-50, throughput sweep, max-context walk to architectural 1M). It's expected to work on Workstation Edition (same SM 12.0a, same Marlin native cubins, same model) but we haven't directly run it ourselves. Reference TP=2 Workstation numbers from jasl's bench harness (jasl/vllm-ds4-sm120-harness/baselines/20260512_sm120_deployment_1c20f1a6d) confirm the underlying stack runs on Workstation Edition. Expect a 5-15% throughput delta vs Server numbers from clock/memory-bandwidth differences. If anything misbehaves on Workstation Edition, please open a discussion or a PR in the repo.

Quickstart

# 1) Download the tarball (~14 GB compressed)
hf download canada-quant/dsv4-flash-w4a16-rtxpro6000-image \
    --include "*.tar.gz" --local-dir .

# 2) Load into Docker (~5 min)
docker load < dsv4-w4a16-rtxpro6000-v1.tar.gz

# 3) Pre-cache the W4A16 model onto NVMe (~159 GB; 1-2 min via xet on Brev)
HF_HOME=/opt/dlami/nvme/hf-cache hf download \
    canada-quant/DeepSeek-V4-Flash-W4A16-FP8-MTP

# 4) Pull the serve script (TP-parameterized)
git clone https://github.com/canada-quant/dsv4-flash-w4a16-fp8-mtp.git
cd dsv4-flash-w4a16-fp8-mtp

# 5) Serve TP=2 (2× RTX PRO 6000) — works on a single-socket box
docker run -d --gpus '"device=0,1"' --name dsv4-w4a16-serve \
    --shm-size=16g --ipc=host -p 8000:8000 \
    -v /opt/dlami/nvme/hf-cache:/root/.cache/huggingface \
    -v $(pwd)/scripts:/workspace/scripts:ro \
    -e TP=2 -e MAX_NUM_SEQS=4 -e MAX_MODEL_LEN=65536 -e GPU_MEM_UTIL=0.95 \
    canada-quant/dsv4-w4a16-rtxpro6000:v1 \
    bash /workspace/scripts/serve_rtx6000pro_w4a16.sh

# 6) Wait for ready (~3-5 min)
until curl -sf http://127.0.0.1:8000/v1/models >/dev/null; do sleep 5; done

# 7) Smoke test
curl -sX POST http://127.0.0.1:8000/v1/chat/completions \
    -H "Content-Type: application/json" \
    -d '{"model":"DSV4-W4A16-FP8-MTP",
         "messages":[{"role":"user","content":"What is 17*23?"}],
         "max_tokens":60,"temperature":0}' | jq .choices[0].message.content
# → "391"

For TP=4 (single replica, all 4 GPUs): use --gpus all -e TP=4 -e MAX_NUM_SEQS=16.

What's in the image

Base: nvcr.io/nvidia/pytorch:26.04-py3 (PyTorch 2.12.0a0, CUDA 13.2, Py 3.12).

vLLM: jasl/vllm@27fd665bdc3ba58afc5c34cbb9034c9fc1a95029 (branch ds4-sm120-preview-dev), which carries:

  • PR #40923 sm_120a Marlin MoE native cubins (eliminates JIT-PTX corruption)
  • PR #43730's c_tmp clamp removal + Marlin MoE workspace 4× oversize
  • sm12x_deep_gemm_fallbacks.py shims for DeepGEMM Hopper-only kernels
  • canada-quant cherry-pick 5a49d88031 + 5acabf3152 (BF16 MTP block detection via safetensors header, fixes wo_a.weight_scale AttributeError when MTP block is unquantized in W4A16+FP8 mixed artifacts)

Runtime kernel pins (the 13-layer recipe):

Pin Why
humming-kernels==0.1.2 Quant kernel registry expects it; vLLM imports unconditionally
quack-kernels==0.4.1 DSv4 sparse attention compress path
tokenspeed-mla==0.1.5 MLA acceleration on Blackwell
fastsafetensors==0.3.2 Faster shard loading from local NVMe
tilelang==0.1.10 DSv4 attention HC head fusion kernel
flashinfer-python==0.6.11.post3 Worker import, sampling kernels
flashinfer-cubin==0.6.11.post3 Companion cubin payload
nvidia-cutlass-dsl==4.5.0 PIN — 4.5.2 removes cute.arch.fmin
setuptools_rust Build dependency for tokenizers/safetensors wheels

Additional patches applied in-image (see docker/Dockerfile.rtx6000pro):

  • PR #43722: MarlinFP8.can_implement refuses block-FP8 → Triton fallback
  • PR #43723: DSv4 attention.py wo_a.weight_scale_inv/weight_scale fallback
  • vllm/compilation/backends.py has_tuple_return = False (NGC torch lacks split_module(tuple_return=True))
  • sparse_attn_compress_cutedsl.py cute.arch.fmin algebraic-identity shim
  • apt-get remove --purge python3-yaml (blocks pip yaml installs)

Env defaults baked in:

  • VLLM_TEST_FORCE_FP8_MARLIN=1 (forces attention block-FP8 onto Marlin path)
  • VLLM_USE_LAYERNAME=0 (avoids Inductor MoE FakeScriptObject crash WITHOUT needing --enforce-eager, so CUDA graphs stay enabled)

Verified configurations

See canada-quant/dsv4-flash-w4a16-fp8-mtp README for the full bench matrix (AIME-2024 thinking-mode sweep at chat/high/max across c=1/4, GSM8K-50 c=8, throughput sweep) on TP=2 and TP=4.

Two recommended serve profiles:

# Throughput / interactive multi-user (Server Edition, 4× cards)
docker run -d --gpus all --name dsv4-w4a16-serve \
    --shm-size=16g --ipc=host -p 8000:8000 \
    -v /path/to/nvme/hf-cache:/root/.cache/huggingface \
    -v $(pwd)/scripts:/workspace/scripts:ro \
    -e TP=4 -e MAX_NUM_SEQS=16 -e MAX_MODEL_LEN=65536 -e GPU_MEM_UTIL=0.95 \
    canada-quant/dsv4-w4a16-rtxpro6000:v1 \
    bash /workspace/scripts/serve_rtx6000pro_w4a16.sh
# ⇒ 29/30 AIME thinking-high, 433 tok/s aggregate at bs=8

# Long-context single-user (Server or Workstation, 2× cards)
docker run -d --gpus '"device=0,1"' --name dsv4-w4a16-serve \
    --shm-size=16g --ipc=host -p 8000:8000 \
    -v /path/to/nvme/hf-cache:/root/.cache/huggingface \
    -v $(pwd)/scripts:/workspace/scripts:ro \
    -e TP=2 -e MAX_NUM_SEQS=2 -e MAX_MODEL_LEN=1048576 -e GPU_MEM_UTIL=0.95 \
    canada-quant/dsv4-w4a16-rtxpro6000:v1 \
    bash /workspace/scripts/serve_rtx6000pro_w4a16.sh
# ⇒ full 1M architectural max context with MTP retained

Tuning notes (read before deviating from defaults)

The image's defaults — serve_rtx6000pro_w4a16.sh with TP=2 or TP=4 + the env vars baked in — are optimal for RTX PRO 6000 Server Edition + TP=4 as of 2026-05-29. We A/B-tested adopting jasl's TP=2 Workstation env tunings (from jasl/vllm-ds4-sm120-harness/configs/sm120_tp2_serve.env.example) at TP=4 Server and ALL of them regressed; don't import them blindly:

Setting that wins on TP=2 Workstation Effect on TP=4 Server Verdict
--speculative-config '{"method":"deepseek_mtp","num_speculative_tokens":2}' (MTP k=2) −86% bs=8 throughput (433 → 60 tok/s) k=1 ("method":"mtp") is the right default for TP=4. k=2's 2x main-model cost amplifies all-reduce overhead past the ~1.5 tokens/draft acceptance benefit on a 4-GPU collective.
--enable-expert-parallel makes the above worse TP=4 all-to-all expert-gather is expensive.
VLLM_TRITON_MLA_SPARSE_QUERY_CHUNK_SIZE=512 + VLLM_TRITON_MLA_SPARSE_TOPK_CHUNK_SIZE=512 CUDA illegal memory access during cudagraph capture These chunk sizes are tuned for SM 12.0a c128a Workstation single-request prefill; they exceed safe limits at TP=4 Server. Leave unset on TP=4 Server.
--no-enable-flashinfer-autotune −74% bs=8 (433 → 111 tok/s) The Triton block-FP8 autotune is load-bearing at TP=4. Leave autotune ON.
--gpu-memory-utilization 0.985 crash potential at TP=4 (esp. combined with sparse-MLA env) 0.95 is the safe value the image ships with.

If you're deploying on TP=2 Workstation Edition instead, jasl's reference config (sm120_tp2_serve.env.example) is the right starting point — it was tuned on that exact hardware/topology.

License

MIT — inherits from upstream deepseek-ai/DeepSeek-V4-Flash model license and vLLM Apache-2.0.

Acknowledgments

  • jasl for the jasl/vllm SM 12.0 preview branch carrying all the DSv4-on-Blackwell scheduling + kernel fixes.
  • haosdent for the original Marlin MoE c_tmp fix (vllm-project/vllm#36889).
  • NVIDIA for the NGC PyTorch base image.
Downloads last month
146
Free AI Image Generator No sign-up. Instant results. Open Now