Views
No views yet
mxfp6-*-pack-quantized and fails with
No compressed-tensors compatible scheme was found. Serve with the
vllm_patches/mxfp6/ overlay from the PrismaQuant fork (a Python-only,
anchor-verified patch + derived Docker image):1# Tier-2 (recommended): fp6 expert groups stay packed on GPU (~6.5 bpp
2# residency for the fp6 share) and dequantize inline in Triton fused-MoE
3# kernels. Bit-identical math to Tier-1; faster and smaller.
4PRISMAQUANT_MXFP6_TIER2=1 vllm serve \
5 JasonW2025/Qwopus3.6-35B-A3B-v1-PrismaQuant-5.06bit-MXFP6mix-vllm \
6 --quantization compressed-tensors --kv-cache-dtype fp8 \
7 --trust-remote-code --enable-prefix-caching \
8 --speculative-config '{"method":"mtp","num_speculative_tokens":3}'
9
10# Without the env knob the overlay serves Tier-1: fp6 groups are
11# dequantized to BF16 once at load (BF16-class memory for that share).| serving mode | resident weights | TPS 1/4/8 | MTP acc |
|---|---|---|---|
| Tier-1 (load-time dequant) | ~31 GiB | 57.9 / 128.9 / 187.8 | 67.8% |
| Tier-2 (packed + Triton inline dequant) | 25.2 GiB | 58.7 / 135.8 / 211.1 | 68.3% |