AI's Velocity Surge: Mercury's Quiet Upheaval

July 9, 2025

Months ago, a major change in language model operation appeared, mostly unnoticed. Inception Labs announced Mercury Coder one morning, claiming their AI could write code at over 1,000 tokens per second (10x faster than ChatGPT). The demos looked impossible: entire Python functions appearing in under a second, complex algorithms taking shape faster than you could track.

Then developers started testing it themselves. The truth hit hard: this wasn't hype. A foundational shift had just happened in how AI works, and most people missed it. The breakthrough? Diffusion language models. If these early results are right, everything we thought about AI progress just became outdated.

Normal language models generate text one word after another, left to right, like typing. Each word depends on all the words before it. This autoregressive model has been standard since GPT-3 came out.

Diffusion models flip that completely. They start with pure noise and slowly refine it into clear text, like how Stable Diffusion makes images. Instead of building sentences word by word, the full text appears all at once from static.

The speed difference is staggering. I ran tests against other small language models, getting the same quality output at nearly 10x the speed. This is true for almost every coding test I tried. Mercury comes from Inception Labs, whose founders include many top people in this field (the minds behind Flash Attention, Decision Transformers, and Direct Preference Optimization). This isn't some random YC startup saying they "democratized AI" by repackaging ChatGPT, but some of the best engineers and researchers around.

What makes this claim so surprising is what it says about the current AI world. I recently wrote about Meta's panicked $100 million offers to hire OpenAI engineers. The idea was that only huge companies with unlimited computing power could compete, needing hundreds of millions for training and special H100 cluster access. The moat seemed impossible to cross.

Mercury breaks that story. Inception Labs raised a tiny fraction of what OpenAI has, without a giant computing cluster or army of engineers. But they're delivering models that match or beat the giants in quality while going way faster.

This didn't come from nowhere. In February, ML-GSAI researchers published a paper on LLaDA: Large Language Diffusion with mAsking. They showed an 8-billion parameter diffusion model matching LLaMA 3 while solving problems that have dogged language models for years.

Think about the reversal problem. Current LLMs know "Tom Cruise's mother is Mary Lee Pfeiffer" but get stuck when asked "Who is Mary Lee Pfeiffer's son?" They memorized facts in one direction, like knowing 2+2=4 but not what adds up to 4 (an embarrassing flaw for a system supposedly headed for "superintelligence").

Diffusion models avoid this issue. They don't generate text in a direction, so they can reason about relationships from any angle. The math underneath is pretty elegant. Autoregressive models maximize P(next token | previous tokens), while diffusion models maximize P(all tokens | noise + context). With modern parallel hardware, the second approach beats the first by a lot in efficiency.

The proof lies in Google's response. At I/O in May, they showed off Gemini Diffusion, an admission from the company that invented transformers that they've been thinking about language models wrong for years. Google usually lags a bit behind the trend, but when they commit to an area it tends to go mainstream. They put out a rushed reasoning model after o1 came out and beat everyone, and they seem to be doing the same thing here.

Their technical blog tried to play it down, but the point was clear. Diffusion models can "iterate on a solution very quickly and error correct during the generation process." Current models commit to each token as they generate; once they go wrong, they're stuck. Diffusion models can see mid-generation that they're getting it wrong and fix the whole output before showing it.

The benchmarks tell the story. Gemini Diffusion matches much larger models while being "significantly faster than even our fastest model so far." When Google admits another approach is better, you know a big change is happening.

The uncomfortable truth for those who went all-in on scaling laws: for two years, the equation was simple. More compute means better models. Jensen Huang built a trillion-dollar company on this idea. Every major lab's plan assumed bigger was better.

What if that's not just wrong, but totally, disastrously wrong? What if we've been throwing money at the problem instead of rethinking it?

The business implications are immense. Why pay $20/month for ChatGPT when free options are faster? How can you justify a $100 billion valuation when a startup can match your product with 1% of your budget? What happens to all those GPU orders when efficiency beats scale?

The open-source explosion started immediately. Within 48 hours of Mercury's announcement, GitHub had three different implementations. The LLaDA code has been forked hundreds of times. Every grad student with a 4090 suddenly thinks they can make the next breakthrough. Some of them might be right.