Deploy MiniMax's M2.5 on NVIDIA HGX B200 GPUs. This MoE model combines Lightning Attention with traditional SoftMax attention for efficient long-context inference.
MiniMax M2.5 uses Lightning Attention, a hybrid approach that splits sequence processing into two components:
Combined with MoE routing (only 10B of 229B parameters active per token), this creates an efficient model for long-context workloads. The 256-expert pool with 8 active per token provides high capacity with low per-token compute cost.
Implications for NVIDIA HGX B200 deployment:
Or with Docker:
--trust-remote-code is required — MiniMax M2.5 uses custom model code.
With TP=4 on FP8:
Benchmark parameters: 2048 input tokens, 512 output tokens, random dataset. TP=4 on 4x NVIDIA HGX B200.
Zero failed requests across all concurrency levels.
Throughput scales linearly from concurrency 1 to 512 (~101x increase), then plateaus. The model saturates at approximately 8,800 tok/s sustained output throughput on 4 GPUs. TTFT remains under 100ms up to concurrency 32, making this suitable for interactive applications at moderate load. TPOT stays under 20ms up to concurrency 32.
This model uses 4 of 8 available NVIDIA HGX B200 GPUs. In production, you could serve 2 independent instances on a single 8-GPU node, achieving ~17,600 tok/s aggregate throughput.
A community-quantized NVFP4 variant is available for NVIDIA HGX B200:
NVFP4 could potentially halve the GPU count from TP=4 to TP=2. See FP8/NVFP4 Quantization for details.
RuntimeError: n_group should not be zero for DeepSeekV3 routing. The fused MoE kernel assumes DeepSeek V3-style grouped routing. Use vLLM 0.12.0 for this model. All benchmarks in this guide were run on vLLM 0.12.0. See Troubleshooting for details.--trust-remote-code. The Lightning Attention implementation requires custom model code.
0 Comments
Be the first to comment and share your perspective with the community.