AI News AI资讯 1d ago Updated 1d ago 更新于 1天前 50

NVIDIA Releases Nemotron-Labs-3-Puzzle-75B-A9B: A Compressed Hybrid MoE LLM Delivering 2.03x Server Throughput at Matched User Throughput 英伟达发布 Nemotron-Labs-3-Puzzle-75B-A9B:一种压缩混合 MoE LLM,在匹配用户吞吐量时提供 2.03 倍服务器吞吐量

NVIDIA released Nemotron-Labs-3-Puzzle-75B-A9B, a compressed hybrid Mamba-Transformer MoE model reducing total parameters from 120.7B to 75.3B and active parameters from 12.8B to 9.3B while preserving the original 88-block architecture. The model achieves up to 2.14x server throughput on 8xB200 nodes and increases single-H100 concurrency for 1M-token contexts from 1 to 8 users by reducing weight footprint from 70GB to 44.5GB. An iterative "Puzzle" neural architecture search method, combining bou NVIDIA发布Nemotron-Labs-3-Puzzle-75B-A9B,将Nemotron-3-Super从120.7B压缩至75.3B总参数,在保持混合MoE架构布局不变的前提下显著降低部署成本。 该模型通过迭代式Puzzle搜索与知识蒸馏恢复,实现了单卡H100上百万token上下文并发数从1提升至8,服务器吞吐量提升最高达2.14倍。 性能权衡方面,模型在RULER等长上下文基准上表现稳定,但在Arena-Hard-V2和SWE-Bench上分别下降4.2分和2.6分,体现了压缩带来的精度损失。 采用NVFP4量化权重配合FP8 KV缓存,通过剪枝Mamba SSM状态大小和调整M

72
Hot 热度
68
Quality 质量
75
Impact 影响力

Analysis 深度分析

TL;DR

  • NVIDIA released Nemotron-Labs-3-Puzzle-75B-A9B, a compressed hybrid Mamba-Transformer MoE model reducing total parameters from 120.7B to 75.3B and active parameters from 12.8B to 9.3B while preserving the original 88-block architecture.
  • The model achieves up to 2.14x server throughput on 8xB200 nodes and increases single-H100 concurrency for 1M-token contexts from 1 to 8 users by reducing weight footprint from 70GB to 44.5GB.
  • An iterative "Puzzle" neural architecture search method, combining bounded compression with knowledge distillation, outperforms single-step compression by 0.57 average benchmark points.
  • Performance trade-offs include minor drops on Arena-Hard-V2 (-4.2) and SWE-Bench (-2.6), while maintaining strong results on reasoning and coding benchmarks.

Why It Matters

This release demonstrates a practical path to deploying large hybrid MoE models on consumer-grade or limited GPU clusters by significantly improving memory efficiency and concurrency without catastrophic accuracy loss. For AI practitioners, it highlights the viability of iterative neural architecture search combined with distillation as a superior alternative to static scaling or quantization alone. The ability to handle eight concurrent million-token requests on a single H100 addresses a critical bottleneck in long-context enterprise applications.

Technical Details

  • Architecture Compression: The model retains the 88-block layout (40 Mamba, 40 MoE, 8 Attention) but reduces Mamba SSM state size from 128 to 96 and dynamically reduces activated routed experts per token from 22 to a range of 4-18.
  • Iterative Puzzle Methodology: Uses a decomposed NAS framework (Puzzletron) that alternates bounded compression steps with short knowledge distillation recovery phases, scoring candidates against the current compressed model rather than the original teacher to account for non-additive interactions.
  • Pruning Techniques: Employs intermediate channel pruning for MoE experts, top-k reduction for routing, and uniform SSM state pruning, with channel ranking based on contribution estimates over 67M validation tokens.
  • Performance Benchmarks: On 8xB200 nodes with NVFP4 weights, throughput boosts range from 1.60x to 2.14x depending on input/output ratios; on single H100, concurrency for 1M-token sequences jumps from 1 to 8 due to reduced memory pressure.
  • Quality Trade-offs: The iterative approach yields an average gain of 0.57 points over single-step baselines, though it incurs measurable drops on Arena-Hard-V2 and SWE-Bench compared to the uncompressed parent.

Industry Insight

  • Memory-Constrained Deployment: Organizations relying on single-GPU setups for long-context tasks can now serve multiple concurrent users by adopting hybrid MoE architectures with optimized SSM states, drastically lowering hardware costs per request.
  • NAS over Static Quantization: The success of iterative Puzzle suggests that dynamic architectural search with distillation offers better accuracy-throughput pareto fronts than simple weight pruning or quantization, encouraging investment in automated compression pipelines.
  • Hybrid Model Viability: The sustained performance of Mamba-Transformer hybrids after significant compression validates their use case for high-throughput, long-context services, provided that inference engines support heterogeneous layer configurations.

TL;DR

  • NVIDIA发布Nemotron-Labs-3-Puzzle-75B-A9B,将Nemotron-3-Super从120.7B压缩至75.3B总参数,在保持混合MoE架构布局不变的前提下显著降低部署成本。
  • 该模型通过迭代式Puzzle搜索与知识蒸馏恢复,实现了单卡H100上百万token上下文并发数从1提升至8,服务器吞吐量提升最高达2.14倍。
  • 性能权衡方面,模型在RULER等长上下文基准上表现稳定,但在Arena-Hard-V2和SWE-Bench上分别下降4.2分和2.6分,体现了压缩带来的精度损失。
  • 采用NVFP4量化权重配合FP8 KV缓存,通过剪枝Mamba SSM状态大小和调整MoE专家路由数量,优化了计算与内存瓶颈。

为什么值得看

本文展示了如何通过非均匀剪枝和迭代式架构搜索,在大型混合MoE模型中实现极致的推理效率提升,解决了高并发场景下的显存瓶颈问题。对于AI基础设施工程师而言,其关于吞吐量、并发数与精度之间权衡的数据为模型部署优化提供了极具参考价值的实证依据。

技术解析

  • 架构压缩策略:保留父模型88个块的混合布局(40 Mamba, 40 MoE, 8 Attention),但调整内部容量。Mamba SSM状态从128降至96,MoE激活专家数从22动态调整为4-18,总参数量减少约37.6%。
  • 迭代式Puzzle框架:不同于单步压缩,采用三阶段迭代过程:先压缩MoE和Mamba至75%并蒸馏,再进一步压缩MoE至60%,最后调整激活专家预算至50%。每阶段结合知识蒸馏进行恢复,以最小化性能损失。
  • 部署性能突破:在8xB200节点上,匹配NVFP4权重时,解码密集型场景(8K输入/64K输出)吞吐量提升2.14倍;在单张H100上,百万token上下文并发能力从1路跃升至8路,得益于权重占用从70GB降至44.5GB释放了KV缓存空间。
  • 精度评估:虽然RULER和AA-LCR等基准几乎无变化,但复杂推理任务如Arena-Hard-V2得分下降4.2,代码任务SWE-Bench下降2.6,表明压缩对高阶逻辑能力有一定影响。

行业启示

  • 边缘与高密度部署成为新焦点:随着模型规模增长,显存带宽和容量成为主要瓶颈。通过架构搜索而非单纯缩小模型尺寸来优化吞吐量,是平衡成本与性能的关键路径。
  • 混合架构的优化潜力巨大:Mamba-Transformer混合模型在保持长上下文能力的同时,通过针对性剪枝Mamba层,能显著提升推理效率,未来混合架构将成为高效大模型的重要形态。
  • 压缩需伴随精细化的恢复流程:简单的静态剪枝往往导致性能断崖式下跌,迭代式压缩结合阶段性知识蒸馏(Distillation)是维持模型智能水平的必要手段,建议在模型轻量化项目中优先采用此类多阶段优化策略。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

LLM 大模型 Open Source 开源 Inference 推理 Quantization 量化 Deployment 部署