The Inference Speed War Has a Hidden Variable — And You Need to Benchmark It Yourself
Two Strategies, Zero Published Quality Metrics
Three independent sources this week confirm that Anthropic and OpenAI have diverged sharply on how to make LLM inference faster — and the tradeoffs are fundamentally different in ways that matter for your production systems.
| Dimension | Anthropic Fast Mode | OpenAI Fast Mode | Dropbox (MXFP4) |
|---|---|---|---|
| Speed Gain | Up to 2.5x | Up to 15x (1,000+ tok/s) | Not disclosed |
| Model | Full Opus 4.6 | GPT-5.3-Codex-Spark (smaller) | Multimodal (Dash) |
| Mechanism | Low-batch-size scheduling | Cerebras chips + model distillation | MXFP4 quantization + custom kernels |
| Quality Impact | Claims full capability | "Less capable" (unquantified) | Not disclosed |
| Hardware | Standard GPU | Cerebras specialized chips | Standard GPU with custom kernels |
The critical gap across all three: nobody has published quality degradation metrics. OpenAI's 15x claim conflates two optimizations — hardware specialization and model shrinkage — without ablating their individual contributions. Anthropic's 2.5x doesn't specify baseline latency or whether quality holds across task types. Dropbox achieved "cost savings" with MXFP4 but disclosed no A/B test results or quality tradeoff curves.
The 15x vs. 2.5x headline comparison is meaningless — one is serving a weaker model faster, the other is serving the same model with less throughput. These are different products solving different problems.
The Dropbox Signal You Shouldn't Ignore
While the Anthropic/OpenAI comparison dominates headlines, Dropbox's MXFP4 production deployment is the most actionable signal. They chose between weight-only and activation quantization strategies per workload, wrote custom kernels for latency SLAs, and applied post-training calibration specifically for MXFP4. This workload-specific approach — not uniform INT8 everywhere — is the key methodological takeaway.
GPT-5's Tokenizer Change Compounds the Problem
Reverse-engineering of GPT-5's tokenizer reveals expansion to ~200,000 tokens (roughly double GPT-4). This directly affects cost estimation, context window management, and multilingual performance. If you're building token-aware systems, your cost projections for GPT-5 need recalculation.
What to do
Run a quality-latency Pareto analysis comparing Anthropic fast mode vs. OpenAI Codex-Spark on your top 5 production task types by end of this sprint
Benchmark MXFP4 weight-only vs. activation quantization on your largest serving model within 2 weeks, measuring p99 latency, throughput, and eval set quality
Re-estimate GPT-5 API costs by running production prompts through the updated tiktoken library this week