跳到主内容
精选85Rohan Paul模型发布/更新多源精选 ×6

DeepSeek 发布 DSpark 推理优化方法,速度提升 60-85%

Fantastic, @deepseek_ai just published their new inference optimization method.

原文
推荐理由

做推理加速的同学必看,DSpark 用选择性验证思路把推测解码的效率拉高了一个台阶,实测 60-85% 的加速很实在,值得跟进复现。

Fantastic, @deepseek_ai just published their new inference optimization method.

Proposes DSpark, a semi-parallel speculative decoding system that gave DeepSeek-V4 about 60% to 85% faster per-user generation at matched throughput.

The biggest idea in DSpark is that faster inference is not just about drafting more tokens, but about deciding which drafted tokens are worth checking.

Speculative decoding already had the basic trick: a smaller draft model guesses several next tokens, then the real model checks them in 1 pass.

The problem is that long draft blocks often waste work, because later guesses are more likely to be wrong, and checking bad guesses still uses GPU capacity.

DSpark’s breakthrough is to make this process selective: it drafts a block, scores how likely each prefix is to survive, then verifies only the part that is likely to pay off.

The mechanism has 2 linked parts: a strong parallel draft model makes many token guesses quickly, then a tiny Markov head adjusts each guess using the token right before it.

That small sequential piece matters because pure parallel drafting are fast, but their later tokens decay because each position guesses without knowing what the earlier sampled token actually was.

i.e. Fully parallel drafters guesses every position too independently, which can create bad token combinations later in the block.

Then the confidence scheduler estimates how many drafted tokens should be checked for each request, based on both acceptance chance and current GPU load.

更进一步:量化金融体系

看懂新闻只是起点——沿量化金融路径,把它变成能交付的工程能力

进入量化体系 →

关联讨论

同一事件的更多信源

相似阅读

另一事件,读法相近