一键重装系统工具 | U盘启动盘制作工具 | 误删文件恢复软件 | 硬盘数据抢救专家 | 电脑蓝屏修复助手 | C盘空间清理神器 | 电脑驱动离线安装工具 | 微信聊天记录恢复工具 | 照片误格式化恢复 | 电脑密码破解清除工具 | 系统崩溃紧急救援盘 | 电脑加速优化大师 | 电脑开不了机怎么重装系统 | 回收站清空了怎么恢复 | 硬盘分区丢失数据恢复 | 电脑卡顿重装系统有用吗 | U盘插入提示格式化数据恢复 | 电脑中毒文件被隐藏恢复 | 忘记电脑开机密码怎么办 | 新硬盘分区对齐工具 | 旧电脑装Win10流畅工具 | SD卡照片删除恢复免费版 | 移动硬盘打不开提示损坏修复 | 电脑无故重启系统修复工具 | 电脑小白一键重装神器 | 程序员电脑环境配置助手 | 设计师电脑字体/素材恢复工具 | 网吧网管系统维护工具箱 | 财务人员电脑发票备份恢复 | 学生党免费电脑系统安装包 | 电脑维修师傅必备工具盘 | 游戏玩家电脑性能优化助手 | 办公白领误删文档恢复软件 | 自媒体视频素材恢复工具 | 网课录制视频损坏修复工具 | 最好的U盘PE系统排名 | 数据恢复软件哪个最强 | 免费电脑助手与收费版区别 | 国产装机工具哪款无广告 | 离线版驱动助手推荐 | 轻量级电脑优化工具对比 | 支持NVMe驱动的PE工具 | 带网络功能的应急启动盘 | 2026最新版万能装机工具 | 支持Win11 24H2的PE工具 | 最新免激活系统重装工具 | 2026数据恢复软件破解版合集 | 纯净无捆绑装机助手V3.0 | 支持苹果M芯片的电脑助手 | 秋季更新版系统维护工具箱 | 电脑系统崩了怎么用U盘把重要资料拷贝出来 | 重装系统前哪些文件夹必须备份 | 固态硬盘误格式化还能恢复数据吗 | 如何制作一个既带PE又能存数据的双分区U盘 | 电脑总是弹窗广告用什么助手彻底拦截 后台管理
📢 欢迎访问系统之家!所有资源均经过安全检测。

Think Smart About Sparse Compute: LatentMoE for Higher Accuracy per FLOP and per Parameter

发布时间:2026-09-18 | 浏览:2
📥 下载地址(文章开头)
软件神器安装一切软件。
Authors: Venmugil Elango, Nidhi Bhatia, Roger Waleffe, Rasoul Shafipour, Tomer Asida, Abhinav Khattar, Nave Assaf, Maximilian Golub, Joey Guman, Tiyasa Mitra, Ritchie Zhao, Ritika Borkar, Ran Zilberstein, Mostofa Patwary, Mohammad Shoeybi, Bita Rouhani Sparsity ≠ cheap inference Mixture-of-Experts (MoE) is often pitched as “activate a few experts, get a lot of parameters for cheap.” That framing is mostly about FLOPs—but serving doesn’t care only about FLOPs. In real deployments, MoE cost is frequently dominated by memory movement & communication : Interactive serving (low latency) : streaming expert weights from HBM dominates latency when few tokens hit each expert. Throughput serving (scale-out) : all-to-all routing dominates when token vectors must move across GPUs. For an optimal design, one should answer the following question: ⇒ How much accuracy do we get per byte moved and per FLOP spent, under realistic serving constraints? LatentMoE is built around this question. LatentMoE: A serving-aware MoE LatentMoE is a revised MoE architecture that improves accuracy per parameter and per FLOP by making the routed expert path cheaper (Figure 1). Figure 1. (a) Standard MoE: routing payloads and routed expert compute operate in hidden dimension d. (b) LatentMoE: project to latent dimension ℓ for routing payloads and routed expert compute, then project back to d. This reduces both routing bytes and expert weight bytes by roughly d/ℓ. The savings are reinvested into more experts and higher top-k at similar serving cost, improving expressivity and combinatorial sparsity. Instead of running routed experts on the model’s hidden representation, LatentMoE wraps the routed path with two shared linear layers: Project tokens down to a smaller latent representation (d → ℓ) before dispatch Perform expert dispatch/combine and expert compute in that latent space Project expert outputs back up to the model’s hidden representation (ℓ → d) Importantly, the router still computes gating decisions from the model’s hidden representation—only the routed payload and routed expert computation move into the latent space. Shared experts, if present, operate in the original hidden dimension. By shrinking what must be moved across GPUs and what expert weights must be read per token, LatentMoE reduces both memory traffic and all-to-all routing volume. It reinvests those savings into a larger number of experts and higher top-k, improving model accuracy at roughly similar serving cost. LatentMoE has been adopted in NVIDIA’s Nemotron-3 Super and Ultra family. Design Principles Behind LatentMoE LatentMoE takes a hardware-software codesign approach. It was guided by five principles: Low-latency inference is memory-bound. In low-latency serving scenarios, MoE inference is often dominated by the memory bandwidth cost of reading expert weights. As a result, accuracy per parameter matters for interactive applications, since parameter footprint largely determines how much weight data must be moved. Low-latency inference is memory-bound. In low-latency serving scenarios, MoE inference is often dominated by the memory bandwidth cost of reading expert weights. As a result, accuracy per parameter matters for interactive applications, since parameter footprint largely determines how much weight data must be moved.
📥 下载地址(文章中间)
软件神器安装一切软件。
High-throughput inference is communication-bound. In throughput-oriented serving, distributed MoE inference is dominated by all-to-all routing. Routing volume scales with tokens × top-k × routed width. Consequently, communication overhead can be mitigated by reducing the routed width. High-throughput inference is communication-bound. In throughput-oriented serving, distributed MoE inference is dominated by all-to-all routing. Routing volume scales with tokens × top-k × routed width. Consequently, communication overhead can be mitigated by reducing the routed width. Preserve nonlinear capacity. Model quality tracks the effective nonlinear budget per token: top-k × expert intermediate dimension. Consequently, to alleviate memory and communication bottlenecks without sacrificing model quality, we should keep both top-k and expert intermediate dimension unchanged. Preserve nonlinear capacity. Model quality tracks the effective nonlinear budget per token: top-k × expert intermediate dimension. Consequently, to alleviate memory and communication bottlenecks without sacrificing model quality, we should keep both top-k and expert intermediate dimension unchanged. Don’t over-compress features. There is a task-dependent “feature rank” that imposes a lower limit on the reduction of hidden dimension d to latent dimension ℓ. Reducing below this limit degrades model quality. Don’t over-compress features. There is a task-dependent “feature rank” that imposes a lower limit on the reduction of hidden dimension d to latent dimension ℓ. Reducing below this limit degrades model quality. Exploit combinatorial sparsity. MoE gains come from expert specialization. Increasing both the number of experts and top-k expands the space of expert combinations dramatically, which can improve accuracy. Exploit combinatorial sparsity. MoE gains come from expert specialization. Increasing both the number of experts and top-k expands the space of expert combinations dramatically, which can improve accuracy. These principles led to a clear strategy: Shrink the routed width : compress hidden dimension d to latent ℓ, keeping top-k and expert width intact—to cut dominant serving costs without sacrificing accuracy Respect the compression floor : don’t shrink the routed width beyond the task-dependent limit, or quality degrades Reinvest in expert diversity : use the savings to increase the number of experts and top-k—for improved accuracy Results at Scale LatentMoE improves model accuracy over standard MoE baselines at similar serving cost—across both small and large scale (Table 1). Table 1. LatentMoE vs. baseline on a 95BT-8BA Transformer MoE, showing higher accuracy across all tasks at equivalent parameters. LatentMoE also generalizes beyond Transformers to hybrid Mamba-Attention MoEs (Table 2). Table 2. LatentMoE vs. baseline on hybrid Mamba-Attention MoEs, showing higher accuracy at equivalent parameters. LatentMoE has been adopted in the flagship Nemotron-3 Super and Ultra models and scaled to longer token horizons and larger model sizes (see the Nemotron-3 white paper ). Stay tuned for Super and Ultra model releases in the coming months. Projected Serving Impact at Trillion-Parameter Scale To connect architecture decisions to end-to-end serving, we project throughput-per-GPU and latency Pareto frontiers at trillion-parameter scale. The key comparison: if a standard MoE is scaled to match LatentMoE’s accuracy gain, it requires 350B additional parameters in our analysis. At iso-accuracy, LatentMoE is projected to achieve up to 3.5× speedup over standard MoE (see Figure 2). Figure 2. Normalized throughput–latency Pareto frontiers at trillion scale for decode-heavy and prefill-heavy regimes. LatentMoE introduces two shared linear projections around the routed expert path: a down-projection before dispatch and an up-projection after combine. In our analysis, this added compute is modest (~9% relative to native Kimi-K2-1T) and far smaller than the cost of scaling a standard MoE to match accuracy. Sparse compute isn’t automatically cheap at inference. MoE serving often pays in memory bandwidth and routing overhead, not just FLOPs. LatentMoE addresses this directly and pushes the accuracy-efficiency frontier beyond standard MoE baselines. We hope this work opens the door to more principled and scalable MoE designs. For full details, see the paper .
📥 下载地址(文章结尾)
软件神器安装一切软件。