BlogOpen Source Models

DeepSeek's DSpark Just Made AI 85% Faster — With Software, Not Silicon

DeepSeek published a paper showing 60-85% inference speedups on live production traffic using speculative decoding. No new chips required. The code is open source.

Chethan·June 28, 2026

DeepSeek just did something that should make every AI company sweating over GPU bills sit up and pay attention.

They made large language models up to 85% faster. Not with a new chip. Not with a billion-dollar data center. With a software technique they published a paper about, open-sourced the code for, and are already running in production on live user traffic.

It's called DSpark. And it's the most important AI infrastructure paper of the year.

The Problem With LLMs Nobody Talks About

Here's something that doesn't get enough attention: language models are slow. Not "my Netflix is buffering" slow. Architecturally slow.

LLMs generate text one token at a time. Each new token requires a full forward pass through the entire model. So a 500-token response means 500 sequential passes through a neural network with tens of billions of parameters. The GPU is basically sitting there, waiting, doing one tiny computation at a time, like a chef preparing a hundred-course meal one bite at a time.

This is called the autoregressive bottleneck, and it's the single biggest reason AI is expensive. Every millisecond of generation is GPU time you're paying for. When you run an AI agent that makes dozens of model calls per task — each one generating hundreds of tokens — those milliseconds compound into dollars fast.

The fix that everyone's been chasing is called speculative decoding. The idea is elegant: instead of asking the big model to generate one token at a time, you use a tiny "draft" model to guess several tokens ahead. Then the big model checks all those guesses in a single pass. If the draft model guessed right, you just got multiple tokens for the price of one verification pass. If it guessed wrong, you take the first correct prefix and try again.

No quality loss. The output is mathematically identical to what the big model would have produced on its own. You're just getting there faster.

The problem? Draft models that are fast enough to be useful tend to be wrong a lot. And the ones that are accurate tend to be slow. It's a classic trade-off, and nobody had cracked it — until now.

What DSpark Actually Does

DeepSeek's paper, published this week, introduces two innovations that work together. Let me explain them without the academic jargon.

Innovation 1: Semi-autoregressive generation.

Existing draft models come in two flavors. Autoregressive drafters generate tokens one by one, each looking at the previous one. They're accurate but slow — the exact problem you're trying to solve. Parallel drafters spit out all their guesses at once in a single pass. They're blazing fast but have a fatal flaw: since each position is predicted independently, later tokens in the block don't know what the earlier tokens chose.

Here's why that matters. Say the draft model is trying to continue the phrase "I want to make sure." Position 1 might predict "of" (as in "make sure of"). Position 2, predicting independently, might guess "to" (as in "make sure to"). Both are reasonable individually. But "make sure of to" is nonsense. The target model rejects everything after the first mismatch, and you've wasted a verification pass.

DSpark's solution is a hybrid. It keeps the fast parallel backbone but adds a lightweight sequential module — specifically a Markov head and an RNN head — that runs after the parallel pass. These lightweight heads look at what the previous positions actually chose and adjust the predictions for later positions. It's like the parallel model throws a bunch of ideas on the table, and the sequential head quickly cleans up the inconsistencies.

The result: draft quality goes up dramatically without sacrificing speed.

Innovation 2: Confidence-scheduled verification.

This is the part that's genuinely novel and has production people excited.

Here's the thing about speculative decoding that most papers ignore: verifying draft tokens isn't free. Each token you verify takes up batch capacity on the GPU. Under light load, who cares — you have capacity to spare. But in production, serving hundreds of concurrent users, every wasted verification slot is a request from another user that has to wait.

DSpark adds a confidence head that estimates, for each draft token, the probability it'll survive verification. Then a hardware-aware scheduler uses those estimates — combined with real-time GPU throughput data — to decide how many tokens to actually verify for each request. If the model is 95% confident about a token and the system has capacity, verify it. If the model is 30% confident and the system is under heavy load, skip it.

This is the kind of optimization that doesn't show up in academic benchmarks but matters enormously in production. And DeepSeek is one of the few companies that actually runs at the scale where this distinction is the difference between profit and loss.

The Numbers

Let's talk results, because the paper delivers.

On offline benchmarks across Qwen3-4B, 8B, and 14B models, DSpark improves accepted length (the number of draft tokens the target model accepts per cycle) over Eagle3 — the previous best autoregressive drafter — by 30.9%, 26.7%, and 30.0% respectively. Over DFlash, the best parallel drafter, improvements were 16.3%, 18.4%, and 18.3%.

Those are solid gains. But the real story is in production.

DeepSeek deployed DSpark within their DeepSeek-V4 serving system — on live user traffic, not a synthetic benchmark. The results:

  • DeepSeek-V4-Flash: 60%–85% faster per-user generation speeds at matched throughput
  • DeepSeek-V4-Pro: 57%–78% faster per-user generation speeds at matched throughput
  • Under strict interactivity requirements (120 TPS for Flash, 50 TPS for Pro), DSpark prevented the throughput cliff that the previous baseline hit, enabling performance tiers that were literally unattainable before

That last point deserves emphasis. This isn't just "things got faster." DSpark shifted the Pareto frontier of what their serving system could do. It unlocked service levels that were physically impossible with the previous approach.

And yes, you read that right — DeepSeek-V4. The paper casually confirms the existence of a new model generation. They released DSpark checkpoints for both V4-Flash and V4-Pro preview models.

The Bigger Picture: Software vs. Silicon

If you've been following the AI infrastructure space, DSpark lands at an interesting moment.

OpenAI just announced Jalapeño, their custom inference chip built with Broadcom. Google has TPUs. Amazon has Trainium and Inferentia. Meta has MTIA. Microsoft has Maia. Everyone's betting billions that custom silicon is the path to cheaper AI.

And maybe it is. Chips matter. Hardware-level optimization will always have a floor that software can't reach.

But here's what DeepSeek just proved: a well-engineered software technique delivered 60–85% speedups on existing hardware. Not projected speedups. Not synthetic benchmark speedups. Real, measured speedups on live production traffic with real users. And they published exactly how they did it, gave you the code, and open-sourced the model checkpoints under an MIT license.

While American labs are spending nine figures on chip design and treating their inference optimizations as proprietary secrets, DeepSeek is publishing papers that anyone can implement. The HN thread on this story hit 746 points and over 300 comments, and the top observation was simple: Chinese labs are doing the most interesting AI research right now, and they're sharing it.

There's a cynical reading of this, and a few HN commenters made it: DeepSeek comes from a quantitative hedge fund, and their papers tend to land right after American labs make big announcements. The implication being that publishing open-source AI breakthroughs is a market manipulation strategy — tanking the "moat" narrative that justifies trillion-dollar valuations.

Maybe. But here's the thing: even if the motivation is strategic, the outcome is the same. The open-source community gets a state-of-the-art speculative decoding framework. The code is on GitHub. The checkpoints are downloadable. You can train your own draft models with their DeepSpec repository, which includes not just DSpark but also the Eagle3 and DFlash algorithms for comparison.

That's the commoditization spiral in action. Models are becoming infrastructure. The companies that treat them as such — publish the techniques, share the code, let the ecosystem build on top — are the ones shaping the future of this industry. The ones hoarding optimizations behind API paywalls are optimizing for the next funding round, not the next decade.

What This Means For You

If you're running AI infrastructure, three takeaways:

1. Speculative decoding is production-ready. DSpark isn't a lab experiment. It's running on live traffic at one of the world's largest AI serving operations. If you're not exploring speculative decoding for your inference pipeline, you're leaving 60-85% of your latency budget on the table.

2. The draft model matters more than the hardware. Before you buy another H200, check if your software stack is optimized. DeepSeek's results show that algorithmic improvements can rival or exceed what you'd get from a hardware upgrade — at a fraction of the cost.

3. Open models are closing the gap faster than closed ones can widen it. Every time DeepSeek publishes, the entire open-source ecosystem takes a step forward. The techniques in DSpark will be implemented in vLLM, SGLang, llama.cpp, and every other major inference engine within months. If you're building on open models, you're going to benefit from this automatically.

DeepSeek didn't just publish a paper. They drew a line in the sand. The future of efficient AI isn't locked behind a proprietary API or etched into a custom chip. It's open, it's reproducible, and it's available right now.

If you want to run AI models on your own machine — with the kind of optimizations that DSpark enables — CopperRiver makes it straightforward. Desktop AI assistant, local model support, and no per-token pricing. Worth a look.


Related Reading

#DeepSeek#Speculative Decoding#LLM Inference#Open Source AI#DeepSpec

Try CopperRiver yourself

A desktop AI assistant that browses, codes, and automates. Plans from $9/mo.

Read next