Deploy DeepSeek's V3.2 on NVIDIA HGX B200 GPUs. This MoE model uses Multi-Latent Attention (MLA) for compressed KV caching, delivering strong reasoning performance at 685B parameters.
DeepSeek V3.2 uses Multi-Latent Attention (MLA), which compresses KV projections into a lower-dimensional latent space before caching:
This compression means:
--block-size 1 is requiredCombined with MoE routing (~37B active of 685B total), DeepSeek V3.2 is memory-efficient for its size.
Or with Docker:
--block-size 1 is required for MLA models. --quantization fp8 applies on-the-fly FP8 quantization since the base model is BF16.
With TP=8 on FP8 (on-the-fly quantization):
vLLM reported 75.23 GiB available for KV cache, totalling 1,149,440 tokens of cache capacity. MLA's compressed KV format means each token uses significantly less cache than standard GQA.
Benchmark parameters: 2048 input tokens, 512 output tokens, random dataset. TP=8 on 8x NVIDIA HGX B200.
--quantization fp8. This adds to startup time but avoids needing a separate FP8 checkpoint.--block-size 1 will produce a clear error message.
0 Comments
Be the first to comment and share your perspective with the community.