Daily Tech Briefing
AI 科技速览

每天 5 分钟内学习 AI。获取最新的人工智能新闻,理解其重要性,并学习如何将其应用于您的工作。

AI 快讯
arXiv AI · 2026/7/29 04:00:00

SpecPrefetch: Parameter-Efficient Expert Prefetching for Sparse MoE Foundation Models

AI 中文解读
你的AI助手可能很快就能在手机上和你说个没完,还不怎么占内存。最近一篇来自arXiv的研究提出了一种叫SpecPrefetch的新框架,专门解决当前AI大模型在手机等设备上运行时“卡在加载专家模块”的难题。 通俗来说,这类大模型内部像是一个“专家委员会”,每次只请最对口的几位专家回答你的问题。但问题是,你得先问完问题才能知道该请谁,然后临时去“办公室”把专家请过来,这一来一回就造成了延迟。SpecPrefetch的做法是让一个轻量级“预测员”根据你当前的问题,提前猜出下一步可能需要哪些专家,并悄悄把他们请到前台等着,而真正决定谁上台回答的依然是原来的“总导演”。这样即使猜错了,也只是浪费了一点预加载的功夫,完全不影响最终答案的正确性。 这项技术最直接的影响就是,未来我们在手机、平板甚至智能手表上使用AI助手时的响应速度会大幅提升,同时设备需要为AI预留的内存也更少了。论文在骁龙8 Elite芯片上实现了最高20%的推理加速,这意味着你问完一句话几乎不需要等待就能得到回答,而手机也再不会因为运行大模型而变得又烫又卡。
arXiv:2607.24787v1 Announce Type: new Abstract: Sparse Mixture-of-Experts (MoE) models expand foundation model capacity through conditional expert activation, but their full expert pools remain difficult to deploy under limited accelerator memory. Although expert offloading alleviates memory pressure by moving inactive experts to host memory or storage, it introduces a routing-dependent transfer bottleneck: required experts are known only after native top-\(K\) routing, which serializes routing, expert loading, and expert execution during inference. To address this bottleneck, we propose SpecPrefetch, a parameter-efficient prefetching framework for offloaded MoE inference. SpecPrefetch uses a shared lightweight adapter to predict next-layer expert candidates only for asynchronous transfer, while the frozen native router still determines the final executed experts. By separating transfer prediction from execution routing, SpecPrefetch reduces exposed expert-loading latency without changing pretrained routing semantics, so prediction errors affect transfer efficiency rather than model outputs. In addition, a window-aware scheduler prioritizes feasible transfers under cache and bandwidth constraints. Across Qwen3-VL-30B-A3B and DeepSeek-VL2-Tiny, SpecPrefetch achieves the best average expert recall in 9 out of 10 model-benchmark settings with substantially fewer trainable parameters than learned predictor baselines. On a Snapdragon 8 Elite device, SpecPrefetch further improves decoding throughput by up to \(20\%\) over a compute-optimized offloading runtime, demonstrating practical benefits for storage-constrained MoE deployment. The code and model weights are available at https://github.com/wei390/SpecPrefetch.
分享
阅读原文