Infra & inference
67 stories on this topic, newest first.
Nvidia guarantees its own chips' resale value to unlock $500B in AI debt
Nvidia signed letters of intent with Apollo, BlackRock, Blackstone, Brookfield, Goldman Sachs, and KKR to mobilize over $500 billion in third-party capital for data centers, fabs, and power plants. To make the financing pencil out, Nvidia will backstop up to 25% of the residual value of its own installed GPUs on a per-project basis, effectively absorbing part of the depreciation risk. Jensen Huang argues the hardware lasts far longer than critics claim, citing A100s still earning revenue six years on and H100 rental rates rising from $1.70 to $2.35 per GPU-hour. The move reads as a direct rebuttal to Michael Burry's warning that GPU depreciation is understated by ~$176B through 2028.
Why it matters: The whole AI buildout rests on how long a GPU stays economically useful. Nvidia putting its balance sheet behind that number, rather than just selling chips, is a tell about how circular the financing has become, and how much rides on utilization staying high.
Startups pitch life after the transformer
MIT Technology Review profiles a wave of startups attacking the transformer's dense-attention bottleneck. Subquadratic claims SubQ is the first sparse-attention mechanism to rival dense attention on search and coding; Manifest AI's 'power retention' keeps a rolling context summary, demoed via PowerCoder and Brumby; Liquid AI ships hybrid models that are 20% transformer, 80% liquid neural network and run on a Raspberry Pi; Inception's diffusion LLM Mercury 2 claims GPT-4-class quality at 10x speed; and Pathway's state-space Dragon Hatchling clears most of 250,000 hard sudoku that leading LLMs fail entirely. All the headline claims are self-reported and unverified, and industry skeptics remain.
Why it matters: Dense attention is the main reason LLMs burn so much power and choke on long context. If any of these subquadratic approaches hold up outside a pitch deck, inference economics and context limits both move.
- These startups are chasing the next big thing in LLMs (MIT Technology Review)
A chunked KL loss drops distillation from four nodes to one GPU
Multiverse Computing and Hugging Face detail two systems changes for LLM knowledge distillation. First, cache the teacher's top-100 logits offline so the teacher never sits in memory beside the student. Second, a fused, chunked KL loss that folds the output projection into the loss and never materializes the full vocabulary-by-sequence grid. On a 32K-token GPT-OSS-20B distillation, freed memory let the setup shrink from four GPU nodes to one, with step time falling roughly 5x (57s to 12.2s); an isolated 32K benchmark shows a 15.6x memory cut, and offline top-100 distillation tracks online KL near-losslessly. The chunked-loss implementation is open-sourced.
Why it matters: Distillation is the expensive step in compressing trillion-parameter models. Cutting its VRAM by an order of magnitude makes long-context recovery and large-scale ablations affordable without a GPU farm.
- Making Knowledge Distillation Cheap Enough to Run at Scale (Hugging Face)
Databricks: chase the efficiency frontier, not the intelligence frontier
Databricks, with input from Stripe, Coinbase, Uber and Ramp, details how it cut internal AI coding spend by up to 90% while usage grew: aggressively adopt cheaper models that clear the quality bar, use a meta-harness (its open-sourced Omnigent) and an AI gateway for model flexibility, route work to the cheapest capable model, and cut context bloat — harness and cache tuning alone dropped generated tokens ~50%. Notably, Stripe found Opus 4.7 didn't beat 4.6, and Databricks saw regressions from Opus 5.0 versus 4.8. A leaked Accenture meeting separately fingers PDF-to-markdown conversion as a top token burner.
Why it matters: For teams, the 'best model' is usually the best routing plus harness plus budget policy, not the flagship checkpoint — and non-engineers converting PDFs are a real line item on the bill.
- Managing AI Coding Costs at Scale (Databricks)
- The Tokenpocalypse Is Here: Companies Are Scrambling To Stop Spending So Much on AI (Simon Willison)
One coder's agent habit: 3.2 billion tokens, 170 kWh in eight weeks
Climate scientist Zeke Hausfather logged eight weeks of Claude Code: 1,138 typed prompts triggered over 14,000 model calls and 3.2 billion tokens — 96% of them cache reads, since the agent re-reads its whole context at each step — for an estimated ~170 kWh, or roughly 150 Wh per prompt, about 600x a median chat query. A heavy day topped a third of a US household's daily draw; a year of it rivals running a clothes dryer. He argues clean electricity, not abstinence, is the real lever, and that routing simple tasks to small models (5-7x less energy per token) helps.
Why it matters: 'Per prompt' is a meaningless unit once agents re-read their entire context 14,000 times — a useful corrective to the sub-watt-hour figures Google and OpenAI like to quote.
AMD buys Taalas to etch whole models into silicon
AMD acquired chip startup Taalas, which builds model-specific integrated circuits that hard-wire a model's weights into silicon rather than loading them onto general-purpose GPUs. Early demos claim up to 17,000 tokens per second on these etched-model chips. AMD is framing it as an enterprise inference play, betting the market goes vertical as serving costs dominate.
Why it matters: If per-model ASICs deliver order-of-magnitude throughput, the economics of inference shift away from flexible GPU fleets toward fixed silicon per model, changing how anyone plans a serving stack for the next few years.
- AMD acquires Taalas to boost inference performance by etching models in silicon (The Register)
- [AINews] AMD buys Taalas (Latent Space (swyx))
- AMD Acquires Taalas to Advance Compute Solutions for AI Inference (r/LocalLLaMA)
A community rewrite puts vLLM's serving stack in a 66 MiB C++ binary
An unaffiliated developer ported vLLM's serving stack from scratch to C++20—continuous batching, paged KV, prefix caching, speculative decoding, and an OpenAI-compatible server—producing a 66 MiB binary with no Python or PyTorch at runtime. Every architecture is checked token-for-token against a pinned vLLM oracle, with ~25 architectures passing so far. Benchmarks show it roughly tied with vLLM on a DGX Spark while using far less peak GPU memory, though multi-GPU, LoRA, and ROCm are not yet wired up.
Why it matters: Embedding inference without a 9 GiB Python virtualenv is a real deployment and supply-chain win, and a token-exact oracle gate is a rare, credible correctness claim for a from-scratch engine port.
Cursor open-sources MoK, its NVL72 MoE training megakernel, claiming 41% more tokens/sec
Cursor released Mixture-of-Kittens (MoK), a deterministic NVL72 megakernel that fuses MoE communication and compute into a single kernel, reporting a 41% overall tokens-per-second gain (up to 2.37x over strong public baselines) that it frames as billions in inference savings at scale. The release lands amid a live debate — aired on Latent Space's inference engineering pod — over whether megakernels are a dead end, with practitioners arguing hand-fused forward passes rarely beat well-optimized TensorRT-LLM kernels in production, and that NVIDIA's upcoming Rubin design targets the exact pipeline stalls that justified fusion.
Why it matters: Megakernels are simultaneously being written off as research theater and shipped for real savings — the tension is a useful signal on where inference and training economics are actually headed.
- [AINews] Megakernels are so dead and so back (Latent Space (swyx))
DeepSeek V4-Flash, a frontier reasoner, now runs on commodity home hardware
Over the weekend LocalLLaMA users got the official 284B-total/13B-active V4-Flash-0731 checkpoint (156GB, QAT-native MXFP4) running on used gear: a quad-Xeon DDR4 server plus two RTX 3090s (~$6K all-in) hits 33 tok/s single-stream and up to 68 aggregate, with a spec-decode + Marlin path giving a ~2.6x jump over ik_llama.cpp. Cold prefill is the weakness (a ~9s fixed floor, TTFT stretching to minutes on long fresh prompts), which pins the box to overnight batch work rather than interactive coding. On quality, testers report Q2 quants degrade below Qwen3.6-27B, Q3 is a reliable Qwen3.6-27B replacement, and full precision approaches GLM 5.2.
Why it matters: A quantization-aware, MXFP4-native frontier-class model you can self-host for pennies of electricity changes the build-vs-buy math for teams that need data sovereignty and can tolerate a batch queue.
How the giant MoEs actually get served: Cloudflare and Baseten open the playbook
Cloudflare detailed the tricks it layers on SGLang to serve Kimi and GLM: FP8 KV cache (raising Kimi K2.6 in-memory context from ~686K to ~1.37M tokens for ~30% lower cost/token), INT4 weight compression for GLM 5.2 (705GB to 421GB, per-GPU 88GB to 52GB, no accuracy loss), and per-page KV-cache integrity checks under 1% overhead. Baseten's Inference Engineering episode covers disaggregated prefill/decode, traffic-specific speculators, and grafting a Kimi vision encoder onto GLM 5.2 by training only the projector, plus why identical weights loop into repeated tokens on one cluster but not another.
Why it matters: The gap between 'generated a token' and a reliable production API is where 20-200% speedups and margins live; both writeups are unusually concrete about the quantization and routing that get you there.
- Smaller, faster, safer: running Kimi and GLM at scale (Cloudflare Blog)
- The Inference Engineering Masterclass — Philip Kiely & Ali Taha, Baseten (Latent Space (swyx))
OpenAI cuts GPT-5.6 by up to 80% and credits its own model for the savings
OpenAI dropped GPT-5.6 Luna 80% (now $0.20/$1.20 per million in/out tokens) and Terra 20% ($2/$12), and added a Sol Fast tier running up to 2.5x lower latency at 2x price with no claimed intelligence change. The company attributes the cuts to systems work partly done by GPT-5.6 Sol itself, which it says analyzed production traffic and autonomously rewrote Triton and Gluon serving kernels to cut end-to-end costs ~20%, plus a >15% speculative-decoding gain. Swyx's analysis notes GPT-5.4's full flagship intelligence (AA index 51) now sells at roughly one-thirteenth of March's token price via Luna, and OpenAI is moving Codex and ChatGPT auto-review off GPT-5.4 onto Luna for ~10x lower cost.
Why it matters: Constant-level intelligence is getting an order of magnitude cheaper every few months, and OpenAI now undercuts several open models on cost-per-task. For anyone budgeting agent workloads, re-pricing your stack quarterly is no longer optional.
DeepSeek V4 Flash hits 32 tok/s on a single Ryzen AI MAX+ 395
Lucebox fit DeepSeek V4 Flash (284B parameters) plus a speculative draft into 128GB of unified memory on one AMD Strix Halo APU, using a custom mixed-precision ROCmFPX quant (~2.88 bits/param, 102GB) and a DeepSeek-specific HIP decode path. It reports 25.3 tok/s autoregressive decode, up to 32 tok/s with speculative decoding, and roughly 250 tok/s sparse prefill at 8K context. The code is Apache-2.0, and the run beats prior LocalMaxxing entries for the same hardware.
Why it matters: A 284B MoE running usably on one consumer-class APU is a genuine data point for cheap local inference — though the 8K context cap shows how tight the memory budget still is once you fit the weights.
- DeepSeek V4 Flash, up to 32 tok/s on AMD Ryzen AI MAX+ 395 (r/LocalLLaMA)
Kimi K3's fine print: 'open weights,' not open source, and too big to self-host
Now that Moonshot's 2.8T-parameter K3 is actually on Hugging Face (1.56TB, MXFP4), the details matter. The license isn't MIT/Apache: any Model-as-a-Service business over $20M revenue in a rolling 12 months must sign a separate agreement, and Moonshot pointedly calls it 'open weight,' not open source. Deployment math is brutal—104B active params won't fit on a 512GB Mac Studio, and even 8xH200 needs two nodes; only 8xB300 fits it single-node with KV cache. OpenRouter already lists K3 from seven providers, mostly at Moonshot's own $3/$15 per million tokens.
Why it matters: The best open-weight model in the world ships with commercial carve-outs and server-class hardware requirements, a useful signal for where 'open' frontier models are actually settling: source-available, not OSI-licensed, and not something you run at home.
- moonshotai/Kimi-K3 (Simon Willison)
- Kimi K3 Now Available via Telnyx Inference API (Telnyx)
- Kimi K3 weights drop: deploying on A100s, H200s and B300s, and the A100 math is already rough (r/LocalLLaMA)
- Moonshot AI releases Kimi K3 open weights and infrastructure (The Decoder)
Inside the gray market reselling LLM tokens at a discount
Simon Willison flags Matt Lenhard's investigation into a mostly-Chinese marketplace that resells API tokens below cost by pooling keys — abusing free trials, proxying through unprotected support bots, and sometimes using stolen cards. The plumbing is open source: the one-api proxy and its more active fork new-api load-balance requests across a pool of credentials. Buyers want cheap tokens, geo-bypass, and distillation data.
Why it matters: If you expose an LLM-backed endpoint, there is now an ecosystem hunting for it to monetize your token budget — a hard argument for strict per-key spend caps that vendors still mostly don't offer.
OpenAI's 3,200 MW Georgia data center draws water questions
OpenAI announced Project Camellia, a ~$20B data center near Savannah that will draw 3,200 MW — nearly a full coal plant's output — with a pledge to pay full infrastructure cost, curtail up to 1,000 MW at peak, and cool via a closed-loop system fed by Savannah River surface water. Residents left an open house with unanswered questions about the initial water fill. Separately, the DOE picked Amentum to negotiate a 1-GW data center at Savannah River Site, paired with ~2 GW of onsite gas-to-nuclear generation on federal land.
Why it matters: The compute buildout is now colliding with local grids and water tables; 'data centers pay their own way' pledges remain mostly voluntary and unenforceable.
- OpenAI to build massive data center near Savannah (The Augusta Press)
- Where will OpenAI's Effingham County data center get its water from? (WJCL)
- Savannah River Site AI data center moves closer to construction (The Augusta Chronicle)
Stripe in talks to buy model router OpenRouter for $10B
Stripe is reportedly in talks to acquire OpenRouter, the model-routing marketplace that aggregates access to hundreds of LLMs, for around $10 billion. OpenRouter has been a prime beneficiary of the surge in cheap Chinese open-weight models, alongside inference providers like Baseten and Fireworks.
Why it matters: A payments giant paying eleven figures for a router underlines how much value is accruing to the routing/aggregation layer as model choice explodes and prices fall.
Etched raises $300M at $10.3B to build transformer-inference systems
Etched closed a $300M Series C at a $10.3B valuation led by Sequoia, with a16z, SK Hynix, and Jane Street participating, doubling its December valuation in seven months. The company says it has already booked $1B in orders and is shipping full rack systems, not just chips, with a low-voltage prefill chip and a 'cluster-scale memory' interconnect for the decode phase. It pushes back on the perception that its silicon runs only specific LLMs, claiming support for MoE models and non-transformer designs like Mamba. Etched also opened an 80,000 sq ft, 10 MW facility in Milpitas, framing its pitch as 'run the world's inference.'
Why it matters: Inference-specialized silicon is graduating from thesis to booked revenue, and the more credible these alternatives get, the more pricing pressure Nvidia faces on the serving side.
Alphabet posts its first-ever negative cash flow as AI capex bites
Alphabet burned $5.9B in Q2, its first cash burn on record, despite $119.8B in revenue and Google Cloud growing 23.8% quarter-over-quarter to $24.8B. The company raised its 2026 capex outlook by roughly $15B and expects to spend more next year, with Big Tech capex on track to top $700B in 2026. Shares fell about 6%, and analysts expect Amazon to burn cash too while Meta's free cash flow is projected to shrink 95.7%. Microsoft, Meta, and Amazon all report next week, sharpening scrutiny of whether AI revenue can outrun capex, depreciation, and operating costs.
Why it matters: The infrastructure bill behind every API you call is now large enough to push the most profitable companies into the red, and next week's earnings will show whether the payoff is keeping pace.
- Alphabet's cash burn raises alarm for Big Tech as AI spending climbs (Reuters (Hacker News))
- Google just had its first negative cash flow quarter due to massive AI spending (Ars Technica)
Anthropic commits to 2GW of AMD MI450 GPUs; AMD invests up to $5B
AMD will invest up to $5 billion in Anthropic, which in turn will deploy up to 2 gigawatts of Instinct MI450-series accelerators in Helios rack systems — MI455X GPUs paired with EPYC "Venice" CPUs, Pensando networking and ROCm — with the first gigawatt landing in H1 2027. AMD's stake is milestone-gated on deployment, echoing its 6GW OpenAI and 6GW Meta arrangements. A multi-year engineering program will use Claude to improve AMD's ROCm software, and AMD will run Claude internally across its dev teams.
Why it matters: It's another circular chip-lab financing loop, but it gives Anthropic a real second GPU source alongside Nvidia, Amazon Trainium and Google TPUs — and puts Claude to work hardening the weakest part of AMD's stack, its software.
Cactus ships a confidence probe that tells Gemma 4 when to phone a bigger model
Cactus post-trained Gemma 4 E2B with a 68k-parameter probe that reads one intermediate layer during decoding and returns p(wrong) as structured data, never parsed out of the answer text. Routing only 15-35% of low-confidence queries to Gemini 3.1 Flash-Lite, the on-device model matches Flash-Lite on most benchmarks. The probe averages 0.814 AUROC versus 0.549 for token-entropy heuristics, and scores 0.79-0.88 on audio benchmarks despite zero audio training data — evidence it reads a modality-independent correctness signal. Weights are MIT-licensed with Transformers, MLX and llama.cpp recipes.
Why it matters: Reliable hybrid routing has leaned on flaky self-rating or entropy that's barely better than a coin flip; a cheap hidden-state probe that generalizes across text, vision and audio is a practical primitive for edge-plus-cloud apps.
Google reportedly bakes Gemini's architecture into 'Frozen v2' silicon
Per The Information, Google is building a server chip internally called Frozen v2 that hardcodes parts of Gemini's model architecture (not its weights) directly into hardware, claiming 6-to-10x more tokens per watt than its current TPUs, with deployment targeted for 2028. New weights can still be loaded, so the chip survives model updates; an earlier Jeff Dean design that froze weights themselves was scrapped as too brittle. It is meant for internal inference only, and the report nudged Alphabet stock up about 3% ahead of earnings.
Why it matters: Inference margin is the new competitive front, and specializing silicon to a single architecture is the logical extreme of the efficiency race, at the cost of being locked to that architecture.
543 tok/s out of one RTX 5090, by hand
A developer open-sourced NInfer, a from-scratch C++/CUDA inference engine specialized for two Qwen3.6 checkpoints, sustaining 542 tok/s single-request on a single RTX 5090 across a full 65,536-token decode of Qwen3.6-35B-A3B (~5 bits per weight, MTP draft window of 3). The gains come from custom quantization, weight-layout design, per-op kernel fusion and an optimized LM-head draft path; INT8 KV cache reaches the full 262k context on the card's 32GB. The catch: only two models supported, RTX 5090 only, and no continuous batching.
Why it matters: A concrete reminder of how much single-GPU throughput general-purpose runtimes leave behind when you're willing to specialize the whole pipeline to fixed weights.
Unsloth adds AMD support for fine-tuning and inference
Unsloth now officially runs on AMD hardware, covering Radeon RX 9000/7000, Instinct MI300/MI350, Strix Halo / Ryzen AI Max systems and AMD CPUs, across Windows, Linux and WSL, with ROCm, Triton, bitsandbytes, PyTorch and llama.cpp builds installed automatically. It claims up to 70% less VRAM for fine-tuning and 80% for RL, GGUF/safetensors/LoRA export, and hooks into agent harnesses like Claude Code and Codex.
Why it matters: Fine-tuning tooling that isn't CUDA-only chips away at Nvidia's lock-in for the local and hobbyist crowd, and makes AMD's cheaper VRAM actually usable for training.
- Unsloth now supports AMD! (r/LocalLLaMA)
Kimi K3 freezes new subscriptions 48 hours in as demand outruns GPUs
Moonshot paused new Kimi K3 consumer subscriptions after requests 'pushed close to the limits of our current capacity,' prioritizing existing paid users and splitting plans into a general 'Kimi Membership' and a separate 'Kimi Code Membership' to ration compute. Reuters reports the crunch coincides with a fresh $2B raise at a $30B valuation and preparations for a Hong Kong IPO. Analysts note K3's 2.8T size and agentic, multi-call workloads make it expensive to serve — and impractical for most to self-host despite the open weights.
Why it matters: So much for open weights cutting compute needs: the largest open model to date is capacity-constrained days after launch, a reminder that 'open' doesn't mean 'runnable' at 2.8T and that hosted access, not the download, is where the business lives.
Meta and Anthropic in talks for a $10B compute lease
Anthropic is in early talks to rent Meta data-center capacity in a deal reportedly worth ~$10B over two years, with an early-cancel option Anthropic also negotiated into its SpaceX lease ($1.25B/month for the Colossus supercomputers). The pair are LLM competitors — Meta just shipped Muse Spark 1.1, priced 75% below Claude. Anthropic would most likely take Meta's Nvidia servers rather than its custom MTIA 400 silicon.
Why it matters: Two rivals may become landlord and tenant because chip access, not ideas, is the binding constraint. For API users, more leased capacity has historically translated into higher Claude Code and API rate limits.
- Meta in Talks to Lease Computing Power to Anthropic in Potential $10 Billion Deal (The New York Times)
- Anthropic, Meta reportedly discussing $10B data center leasing deal (SiliconANGLE)
- Anthropic in early talks with Meta to acquire compute power (CNBC)
- Zuckerberg's plan to sell excess AI compute could find its first big customer in Anthropic (The Decoder)
- Meta, Anthropic in talks for potential $10 billion compute lease deal, source says (Reuters)
A 2-bit DeepSeek V4 Flash on one MacBook ties two DGX Sparks
In a community Terminal-Bench 2.1 run, an aggressively quantized ~80GB (2.45 bits/weight) DeepSeek-V4-Flash GGUF on a single 128GB M5 Max scored 54% versus 52% for the native FP8/FP4 checkpoint on 2x DGX Spark — a statistical tie (paired McNemar p=0.82). Separately, users report the model running with a 1M-token context on a 5090 (~650 tok/s prefill, ~17 tok/s decode), and that mainline llama.cpp b10064 now matches the old dsv4 fork, making the fork unnecessary.
Why it matters: The expensive rig mostly buys serving quality — speed, concurrency, longer usable context — not accuracy. For anyone with a big-RAM Mac, heavy quantization is far more capable than its bit count suggests.
First loan backed by inference chips: $400M for SambaNova silicon
AI inference cloud General Compute landed a $400M loan from Upper90, reportedly the first financing to use inference-specific chips as collateral — SambaNova's power-efficient SN50, which the startup claims runs 16x faster than GPU clouds. Upper90 pioneered GPU-backed lending with Crusoe in 2021; it's now betting the next wave is cheap inference for open models, outside Nvidia's ecosystem.
Why it matters: Capital markets are beginning to price non-Nvidia inference silicon as a financeable asset, a small crack in Nvidia's dominance and a signal that serving open models cheaply is becoming its own infrastructure category.
NVIDIA's Nemotron 3 Embed 8B tops the RTEB retrieval leaderboard
NVIDIA released Nemotron 3 Embed, a family of open-weight embedding models with open datasets and training recipes. The flagship 8B (BF16) ranks #1 on the RTEB multilingual leaderboard at 78.5% and 75.5% on MMTEB Retrieval, with 1B BF16 and NVFP4 variants aimed at production; the NVFP4 build claims up to 2x BF16 throughput on Blackwell while retaining 99%+ of retrieval accuracy. All ship day-0 on Hugging Face with a 32k context window, vLLM support, and an optimized NIM microservice, and NVIDIA argues better retrieval cuts downstream agent token costs by returning relevant evidence earlier.
Why it matters: Retrieval quality is the cheapest lever for agent reliability and cost, and an open, fine-tunable embedding model at the top of RTEB gives teams a self-hostable alternative to provider-bundled search.
Pluralis runs an RL post-training fleet on 14 consumer Macs across four countries
Pluralis Research says it ran what it believes is the first RL post-training run whose entire rollout fleet lived on consumer Macs over the open internet: 14 Macs in four countries generated rollouts via int8 MLX inference, while a single B200 on another continent did the bf16 gradient updates, synchronized only through Cloudflare R2. Two tricks kept the off-policy gap manageable — PULSE ships int8 weight deltas (~82MB instead of 9GB full checkpoints, since ~0.5% of values change per version) and a DPPO-style probability gate drops the ~0.3% most-drifted tokens. On the PaperSearchQA task, cover pass@1 rose from 29% to 63%. Code is open.
Why it matters: Rollout generation is ~80% of agentic RL compute, so pushing it onto idle consumer hardware is a credible path to training open models without datacenter interconnects — a hedge as frontier models retreat behind closed APIs.
- RL post-training on 14 Macs across 4 countries (r/LocalLLaMA)
DeepSeek back for cash at $71B weeks after its first round
The FT reports DeepSeek is in early talks for a new round at roughly a $71 billion pre-money valuation, just weeks after closing its first ($52B post) at about $7 billion. The money funds its own data centers, AI chips, and an in-house inference chip to cut Nvidia and Huawei reliance. The permanent rock-bottom pricing on V4-Pro and V4-Flash — the largest open-weights models at up to 1.6T parameters, and about 11x cheaper than GPT-5.5 on input — made DeepSeek one of the fastest-growing vendors among US firms in June, per Ramp.
Why it matters: DeepSeek is proving that near-frontier open weights sold at cost is a real go-to-market — but permanently subsidized inference needs a bottomless balance sheet, and Ramp is already flagging that customers are piping data straight through the platform.
PrismML's Bonsai 27B ternary lands between Q2 and Q4 in practice
PrismML released Bonsai 27B, a 1-bit/ternary conversion of Qwen3.6 27B that shrinks the model from ~54GB to ~3.8GB and runs in about 10GB at 32K context via a llama.cpp fork — plus MLX, and a WebGPU browser demo with custom kernels. It runs on a Jetson Orin Nano 8GB at ~4.3 tok/s under 25W. But the early 'near fp16' framing was walked back: community consensus (and the author's own retests) put it clearly better than a Q2 quant but worse than Q4_K_XL, with more hallucination and tool-calling loops.
Why it matters: A genuinely capable 27B in under 12GB is a real unlock for on-device agents — but the honest verdict is 'best sub-Q4,' not 'fp16-class,' and the walkback is a useful reminder to test ternary models on your own harness before believing the headline.
audio.cpp 0.3: Supertonic 3 hits 200x realtime TTS on a 5090
The GGML/C++ audio.cpp project shipped release 0.3 with five new TTS models: Supertonic 3, MOSS-TTS-Local, MOSS-TTS-Nano, IndexTTS2, and Irodori-TTS. Supertonic 3 reportedly hits 200x+ realtime on an RTX 5090, 6x+ on CPU, and ~47ms TTFT in CUDA streaming — the demo generated ~10 hours of audiobook audio in about 3 minutes. Because the reference implementation was ONNX and offloaded nodes to CPU, the reverse-engineered C++/safetensors path is markedly faster on GPU; IndexTTS2 longform is 5.65x faster than Python. GGUF support is rolling out model by model.
Why it matters: Local TTS at hundreds of times realtime with sub-50ms latency makes fully on-device voice agents and bulk narration practical without an API bill.
Germany's Soofi S is a fully-open 30B-A3B that tops the open-weight benchmarks
A KI Bundesverband consortium released Soofi S 30B-A3B, a Nemotron-3-Nano-style hybrid (Mamba-2 plus attention) activating 3.2B of 31.6B params, trained on 27T German-weighted tokens on Deutsche Telekom's B200 cloud. It claims the top aggregate scores among fully-open models — over OLMo 3 32B and Apertus 70B — with 73.8% HumanEval and roughly 8x more tokens/sec per GPU than dense 14-24B models at 40k context. Weakness: RULER long-context extraction collapses beyond 32k tokens. Weights, checkpoints, code and a full data inventory ship under OSI's Open Source AI Definition 1.0.
Why it matters: A concrete rebuttal to this week's 'why is no Western lab close to the Chinese open models' hand-wringing — and, with a documented reproducible recipe, more genuinely open than most 'open' releases.
SK Hynix's StreamDQ moves weight dequantization into HBM
An SK Hynix paper proposes StreamDQ, a near-memory architecture that performs on-the-fly weight dequantization inside custom HBM for high-throughput, large-batch LLM inference. It reports up to 7.08x speedup and 90.23% lower energy on mixed-precision GEMM.
Why it matters: If dequantization happens in the memory subsystem rather than the GPU, quantized serving stops paying the bandwidth tax on every weight fetch — potentially a big lever for FP4 and mixed-precision inference at scale.
- Near-memory Dequantization Architecture In Custom HBM for LLM inference (SK hynix) (Semiconductor Engineering)
Porting a production agent from Opus to GPT-5.6: the gotchas nobody warns you about
Ploy published a detailed postmortem of moving its website-building agent from Claude Opus 4.8 to GPT-5.6 Sol: 2.2x faster builds, 27% cheaper, but only after fixing four layers. GPT-5.6 emits all 25 tool parameters every call with invented values (offset: 0, fake UUIDs), silently blanking 52-64% of file reads until they rewrote optional fields as nullable-required. Its caching also dropped partial-prefix matching, so a naive port billed the full 29K static prefix uncached until they scoped a per-workspace cache key. Reasoning replay broke mid-conversation until they set store: false.
Why it matters: This is the real cost of 'just swap the model': the SDK abstracts the API, not the model's tool-calling and caching behavior. The empty-file-read and cold-cache traps quietly degrade quality and inflate bills while every request still returns success.
llama.cpp and MLX both patch the KV-cache bug that wrecks long agent runs
Two independent fixes landed for the same class of problem: context checkpoints being poisoned during agentic loops. llama.cpp b9978 fixes a bug where every agent turn created a new checkpoint, bypassing min-step spacing, so a context rewind (common in tool-calling) erased all checkpoints and forced a full reprocess. Separately, a developer forked rapid-mlx into qMLX after finding a unique per-message ID broke byte-exact KV matching and background writers crowded out valid checkpoints; fixing all three dropped prefill on a warm 168K-token context from minutes to ~2.6s.
Why it matters: If you run local coding agents, these were the invisible tax making follow-up turns take minutes despite a 'warm' context. Both fixes target the exact tool-call rewind pattern agents hit constantly.
$80 Tesla P100s ran silently noisy math in llama.cpp for years; a 3-line patch fixes it
A years-old llama.cpp CUDA bug forced the Pascal P100 (sm_60) down an fp16 math path that the GTX 10-series and P40 (sm_61) were long ago exempted from. Measured against fp32-reference logits on Qwen3.6-27B, the fix cut median KL divergence ~2300x (0.0023 to 0.000001) and lifted top-token agreement from 96.5% to 99.9% — with decode ~1.4% faster, since real workloads are GEMM/bandwidth-bound, not fp16-vector-bound. The patch simply extends the sm_61 exemption to sm_60; it's shipped in a turboquant fork because GGML bans AI-assisted contributions, and the bug was isolated by an agent loop running Fable 5.
Why it matters: P100s are ~$80 with 16GB HBM2 at 732 GB/s amid a DRAM crunch; a chunk of their reputation for 'worse' output was this bug, and the fix is measured only on sm_60 — not the all-GPUs panic some will read into it.
Voodoo Quant claims to beat Unsloth Dynamic 2.0 KLD by 95% on small Qwen3.5 models
A new mixed-precision method optimizes every tensor individually (rather than Unsloth's block-level approach) and reports up to 95% lower KL divergence on Qwen3.5 0.8B and 2B, with '2-bit' as its sweet spot. The more interesting claim is generalization: the author shows Unsloth quants score well in llama.cpp but fall apart under PyTorch's more precise graph, arguing UD overfits to llama.cpp, whereas Voodoo stays competitive in both. The caveat: these are tiny research-scale models, and llama.cpp is the domain that actually matters for GGUFs, so the practical payoff waits on Qwen3.6-27B or Deepseek V4-Flash.
Why it matters: Quantization quality is the whole ballgame for local inference, and a per-tensor method that doesn't overfit its target runtime is worth watching — if it holds at useful model sizes.
Mesh LLM pools your idle GPUs into one OpenAI-compatible endpoint over iroh
Mesh LLM (from the iroh team) presents GPUs and memory scattered across machines as a single OpenAI-compatible API at localhost:9337/v1. A request runs locally, routes to a peer that already has the model loaded, or — via a 'Skippy' pipeline mode — splits a model too big for any one box across nodes by layer ranges (e.g. layers 0-15 on one machine, 16-31 on the next). Networking rides iroh's public-key-authenticated, NAT-traversing QUIC with no central server; the ~18MB client ships a catalog of 40+ models up to 235B MoE. Throughput and latency figures for split mode aren't published.
Why it matters: It's a credible peer-to-peer answer to metered cloud inference for teams with GPUs under desks — though the missing latency numbers on cross-machine pipelines are exactly what will decide whether it's usable.
- Mesh LLM: distributed AI computing on iroh (iroh)
- No cloud needed: Mesh LLM pools GPUs for distributed AI computing (The Cryptonomist)
Unsloth's W4A4 NVFP4 quants run Qwen3.6 up to 2.5x faster on Blackwell
Unsloth shipped NVFP4 quants for Qwen3.6 that hit true 4-bit tensor-core matmuls (W4A4) versus Nvidia's W4A16, claiming 2.5x speedup on the 27B and 1.56–1.79x on 35B-A3B with no measured accuracy loss across MMLU-Pro, GPQA and AIME 2025. They ship FP8 KV-cache calibration for 2x longer context and pre-embed MTP. Separate community posts benchmark the new quants across 4x 5060 Ti rigs and the DGX Spark, where the flashinfer backend is required to avoid a 2x slowdown.
Why it matters: Squeezing 4-bit activations onto consumer Blackwell cards without benchmark regression is a concrete throughput win for anyone self-hosting Qwen — the kind of free speedup that changes what fits on a single GPU.
- 2.5x faster Qwen3.6 NVFP4 Unsloth quants (r/LocalLLaMA)
- Benchmark of the new unsloth/Qwen3.6-27B-NVFP4 on 4x 5060 ti's (r/LocalLLaMA)
Ollama raises $65M as local model runner hits 9M monthly developers
Ollama, the open-source tool for running open-weight models locally, raised a $65M Series B led by Theory Ventures, bringing total funding to $88M. Founded by ex-Docker Desktop builders, it now claims nearly 9M monthly developers, 176K GitHub stars and presence in 85% of the Fortune 500, run by just 14 employees. CEO Jeff Morgan pegs the business inflection to January's agentic-coding surge, when larger open models became capable enough for real work, feeding both its free desktop app and its paid neocloud that bills by GPU time rather than tokens.
Why it matters: The open-weights tooling layer is maturing into a fundable business category, reinforcing the enterprise thesis that cheap local and open models will handle the bulk of inference.
753B GLM-5.2 runs on four desktop DGX Sparks at ~87% of full-model score
Local-LLM tinkerers are running the 753B-parameter GLM-5.2 MoE on 4x DGX Spark / GB10 clusters (128GB unified memory each, ~$16K rigs) over 100G RoCE fabric. A 4-bit quant with NVFP4 KV cache hit 70.8% on Terminal-Bench 2.1 versus the official 81.0% for the full model, at ~25 tok/s decode and 100K+ context — after a 72.5-hour run, two engine crashes, and one recipe that hard-wedged all four nodes. Meanwhile, press coverage began framing GLM-5.2's open cybersecurity capabilities as a threat.
Why it matters: An open-weight frontier model retaining ~87% of its score on four consumer boxes is a real capability floor for anyone who wants a no-vendor, run-it-yourself coding agent — and exactly what the emerging 'fearmongering' wants to restrict.
ZML's LLMD promises peak inference across Nvidia, AMD, TPU, Apple and Intel
Paris startup ZML, backed by Yann LeCun, launched LLMD, an inference server that runs open-source LLMs at (claimed) maximum speed across Nvidia, AMD, Google TPU, Apple Metal and Intel Arc silicon. The pitch is breaking vendor lock-in and letting shops mix cheaper or lower-power chips; ZML says it's co-designing silicon with European chipmakers like Axelera, SiPearl and VSORA. LLMD is free but not open source, launched to gather usage data. The 20-person team has raised ~$20M and enters a crowded field against vLLM, SGLang and Baseten.
Why it matters: A genuinely chip-agnostic inference layer would loosen Nvidia's grip and give infra teams real leverage on cost-per-token — if the cross-vendor performance claims survive independent benchmarks.
Hugging Face rebuilds Kernels with signing, trusted publishers and agentic builds
Hugging Face shipped a major overhaul of its Kernels project, adding a first-class 'kernel' repo type on the Hub. Security is the headline: kernels now load only from trusted publishers by default (opt in with trust_remote_code), plus Sigstore/cosign code signing with ephemeral keys and reproducible Nix builds. It also adds Torch Stable ABI support, Apache TVM FFI as the first non-Torch framework, leaner kernels/kernel-builder CLIs, and scaffolding aimed at agents that generate and benchmark kernels.
Why it matters: Custom kernels run native code at your process's privileges — a live supply-chain risk. Trusted publishers plus signing make dropping optimized kernels into an inference stack meaningfully safer.
- 🤗 Kernels: Major Updates (Hugging Face)
One sidecar file makes llama-server actually reuse restored KV caches
A developer traced why llama-server discards a perfectly restored KV cache across a process restart: llama_state_seq_save_file serializes tokens and KV cells but not the checkpoint metadata list, which lived only in process memory. Without a covering checkpoint before the tip, the first query after restore re-prefills from scratch — 720 seconds at 100K context. The fix (a 117-line patch persisting checkpoints to a versioned .ckpt sidecar) cut that to ~1 second in an A/B on identical binaries. The bug also exists in upstream llama.cpp master and remains unfixed there.
Why it matters: Park-and-resume for long-context sessions on budget hardware only works if the cache survives a restart. If you rely on slot save/restore, this is the gotcha — and a ~720x delta on the first query.
The math on when AI spend passes engineer salaries
Investor Tom Tunguz models AI compute spend per engineer against salary. Anthropic reportedly spends ~2.3x its payroll on compute (~$2M/employee/year), while the top 1% of software firms spend ~$89k per engineer per year on AI — about 40% of a loaded senior salary — and the median just $137. He brackets 2029 with bear (token deflation wins), base, and bull (rest of market reaches Anthropic's ratio) scenarios, citing ~10x/year token price drops against Goldman's projected 24x rise in token consumption by 2030.
Why it matters: Agentic workflows burn tokens orders of magnitude faster than chat, so per-seat AI cost is becoming a real line item. Which scenario you're budgeting for changes build-vs-ration decisions now.
- When AI Costs More Than the Engineer (Hacker News)
Long-context benchmark: prefill is 94-99% of your wait, and KV head count beats parameter count
A 13-model sweep at 65K-128K context on an RX 7900 XT found that for agentic workloads with short outputs, prefill (prompt processing) dominates wall-clock time while token-generation speed is nearly irrelevant. The dominant architectural factor for long-context prefill was KV head count, not parameter count: a 9B model with 4 KV heads ran 4.4x faster at 128K than a 15B model with 8 KV heads. Mamba2 hybrids (Granite-4.0-H-Small) held near-flat prefill scaling, and F16 KV cache beat Q8/Q4 quantization by 20-53% on MoE and small dense models due to dequantization overhead.
Why it matters: If you deploy local models for tool use or coding agents, this reframes the metric that matters: benchmark pp65K/pp131K, check n_kv_heads before parameter count, and stop reflexively quantizing your KV cache.
KAIST puts a number on the agent power tax: up to 136x a simple chatbot query
A KAIST study led by Prof. Yoon Min-soo quantified the compute cost of tool-using agents, finding they make on average 9.2x more LLM calls than step-by-step reasoning, push response times up as much as 153.7x, and leave GPUs idle up to 54.5% of execution time waiting on external tools. An agent on a 70B model averaged 348.41 Wh per query. At a hypothetical 13.7B daily agent requests, data-center demand could hit ~198.9 GW, roughly half average US power consumption.
Why it matters: Agent orchestration overhead, not just model size, is becoming the dominant cost driver, and the idle-GPU-during-tool-calls figure is a direct argument for better scheduling and cheaper accelerators.
Meta rents out excess AI compute as Zuckerberg concedes agents lag
Meta's stock jumped ~9% on plans to sell surplus AI capacity via a new 'Meta Compute' cloud business — but the move implies its $125-145B 2026 capex may exceed its needs, and rattled data-center names like CoreWeave (-13.9% in a day) and Nebius (-17%), both Meta customers. At an internal town hall, Zuckerberg admitted the agentic push 'hasn't really accelerated in the way we expected' over the past four months, while AI chief Alexandr Wang claimed an upcoming 'Watermelon' model has caught GPT-5.5.
Why it matters: The first hyperscaler to start subletting compute is a signal worth squinting at: it hints the buildout may be running ahead of demand, with extended chip-depreciation accounting propping up earnings while the party lasts.
- Meta's AI agent push is moving slower than Zuckerberg planned (The Decoder)
- Meta's AI plans just sent the stock market a $145bn message (The Twelfth Magpie)
DeepSeek V4 Flash runs at 1M context on a single RTX 5090 — and beats Sonnet on wall-clock
A llama.cpp contributor wired up the missing DSA lightning-indexer support plus a CUDA kernel, cutting the 256K compute buffer from ~67 GiB (OOM) to 3.2 GiB and enabling full 1M-token context on a 32GB RTX 5090 at ~14 tok/s decode. Separately, an indie benchmark clocked V4 Flash on 2x RTX PRO 6000 finishing real coding tasks in ~2 min versus ~6 min for Sonnet 5 over the API, at roughly Sonnet quality — though Opus and Fable still take the best diffs.
Why it matters: Sparse attention plus community kernel work is making frontier-class local coding genuinely practical on desktop hardware. The gap to hosted frontier models is now speed-competitive, if not quality-competitive.
Debugging speculative decoding: GLM-5.2 hits 24 tok/s at 128K on four DGX Sparks
A detailed writeup traces a 30+ hour bug hunt into why MTP2/MTP3 speculative-decode acceptance collapsed under DCP4 on a 4x DGX Spark cluster. The root cause: vLLM's create_draft_parallel_config() didn't copy decode_context_parallel_size, so the draft layer read a DCP-sharded KV cache as if it were whole — corruption laundered into consensus by the next row-parallel all-reduce. A ~10-line fix lifts a 744B-class model to ~24 tok/s at full 131K context on 120W-per-node hardware.
Why it matters: A rare, fully-documented autopsy of a subtle distributed-inference bug — required reading for anyone running tensor/context-parallel speculative decoding, and a reminder of how quietly parallel-config plumbing can shred output quality.
Open-weight models push into regulated enterprise as Palantir bashes closed labs
AWS added OpenAI's gpt-oss (120B and 20B) and NVIDIA's Nemotron 3 family (Nano through Super 120B) to Amazon Bedrock in GovCloud, running inference inside a FedRAMP High / DoD IL-5 boundary via OpenAI-compatible endpoints with tool calling and adjustable reasoning effort. Meanwhile Palantir's CEO railed against Anthropic and OpenAI as overpriced data-harvesters, days after striking a deal to buy Nvidia chips and run local models for enterprise clients.
Why it matters: The case for closed frontier APIs weakens where data residency and sovereignty are hard constraints. Open weights plus managed or on-prem inference is fast becoming the default answer for government and regulated sectors.
- Run NVIDIA Nemotron and OpenAI GPT OSS models on Amazon Bedrock in AWS GovCloud (US) (AWS Machine Learning)
- Palantir CEO rages against closed models (r/LocalLLaMA)
Cloudflare's Monetization Gateway lets you charge agents per request via x402
Cloudflare announced the Monetization Gateway, letting customers price any asset behind Cloudflare - web pages, APIs, datasets, MCP tool calls - and collect stablecoin micropayments over the open x402 protocol, which finally puts HTTP 402 to use. A caller hits a paywalled resource, receives a 402 with price and payment details, pays, then retries with proof; settlement is peer-to-peer and aimed at sub-second, sub-cent transactions. Rules are set via a dedicated API, dashboard or Terraform. It is currently waitlist-only.
Why it matters: If agents become the dominant consumers of APIs and content, per-request payment rails could reshape how developers both monetize and pay for services - worth tracking even at this early stage.
DeepSeek's DSpark claims 60-85% faster decoding, MIT-licensed
DeepSeek open-sourced DSpark, a speculative-decoding framework, plus DeepSpec, a codebase for training and evaluating draft models, under the MIT license. It pairs semi-autoregressive drafting (a parallel backbone with a lightweight sequential head) with confidence-scheduled verification that trims low-confidence draft tokens under heavy serving load. Reported per-user generation speedups are 60-85% for V4-Flash and 57-78% for V4-Pro over the prior MTP-1 baseline; offline tests show accepted-length gains carry over to Qwen3 and Gemma4 targets. Early community benchmarks of single-stream V4-Flash land near the paper's ~2.3x-over-no-spec figure.
Why it matters: Speculative decoding is established, but DSpark ships production-tested numbers, open checkpoints, and a training pipeline you can point at your own open-weight model — assuming you control the serving stack and can stomach the ~38TB target-cache requirement.
DeepSeek and Peking University open-source DSpark speculative decoding
DeepSeek and Peking University released DSpark, an MIT-licensed speculative-decoding framework (part of the DeepSpec repo), already running in DeepSeek-V4's production systems. It pairs semi-autoregressive generation with Markov heads to fight acceptance-rate decay, plus a confidence-scheduled verifier that scales token checks to server load. Reported gains: 60-85% faster end-to-end generation on V4-Flash and up to 661% aggregate throughput under strict latency SLAs, with released Eagle3/DFlash/DSpark checkpoints for Qwen3 and Gemma4. Separately, DeepSeek V4 support landed in llama.cpp.
Why it matters: This is an engineering layer that bolts onto existing checkpoints rather than a new model, so the throughput wins are directly portable to other open architectures running on your own inference stack.
- Peking University, DeepSeek Open-Source DSpark To Boost LLM Efficiency (Open Source For You)
- DeepSpec - a deepseek-ai Collection (r/LocalLLaMA)
- DeepSeek V4 by am17an · Pull Request #24162 · ggml-org/llama.cpp (r/LocalLLaMA)
DeepSeek open-sources DSpark, claiming 60–85% faster generation
DeepSeek published DSpark, a set of inference optimizations alongside a DeepSeek-V4-Pro-DSpark checkpoint on Hugging Face and a paper in its DeepSpec repo, claiming 60–85% faster generation. The work centers on speculative-decoding-style techniques; full details are in the DSpark paper. The model and code are public.
Why it matters: DeepSeek continues to ship open inference infrastructure that others can actually deploy, keeping pressure on the open stack precisely as proprietary frontier access tightens. Worth benchmarking if you serve your own models.
Everyone wants off Nvidia: OpenAI's Jalapeño joins the custom-silicon rush
OpenAI detailed Jalapeño, a custom inference chip built with Broadcom, joining Google, Apple, and SpaceX in building their way out of single-supplier risk. The framing is hedge, not clean break — more control and hardware tuned to specific workloads, echoing Apple's gains from dropping Intel. The same discussion noted Groq raising $650M after Nvidia poached its top talent.
Why it matters: Custom inference silicon from the largest API providers could reshape pricing and availability downstream. If Jalapeño lands, it's another lever OpenAI gains over the cost curve that determines what you pay per token.
PyTorch's TokenSpeed-kernel makes multi-silicon inference a registry problem
A PyTorch blog details TokenSpeed-kernel, a standalone kernel subsystem that decouples the inference runtime from hardware-specific code via a public API (mha_prefill, moe_apply, etc.) plus a registry-and-selector that dispatches to platform kernels. Using GPT-OSS 120B on AMD MI355X (CDNA4) as the test case, Gluon-backed attention and MoE kernels delivered 1.6–3.6x end-to-end throughput over the portable Triton path, with the AMD kernels published separately as tokenspeed-kernel-amd and already adopted by vLLM. NVIDIA Blackwell paths sit behind the same API via FlashInfer/TensorRT-LLM wrappers.
Why it matters: Backend selection leaking into model code is a real maintenance tax as GPU vendors, quant formats, and architectures multiply. A clean kernel boundary that vLLM can borrow is how AMD stays a first-class inference target rather than a perpetual afterthought.
JetSpec pushes speculative decoding to ~1000 TPS with parallel tree drafting
Hao AI Lab's JetSpec drafts a causality-preserving token tree in a single pass, aiming to get both cheap drafting and high acceptance rates at once. The team reports up to 9.64x end-to-end speedup on MATH-500 and 4.58x on open-ended chat while staying lossless, and with CUDA graph plus kernel optimizations claims around 1000 tokens/sec on a single B200. Code and a blog walkthrough are available.
Why it matters: Speculative decoding gains usually trade drafting cost against draft quality; co-optimizing both is the interesting bit. If the lossless claim holds on independent runs, it's a meaningful latency lever for reasoning-heavy workloads.
OpenAI and Broadcom tape out 'Jalapeño,' a custom LLM inference chip
OpenAI unveiled Jalapeño, its first custom accelerator (an 'Intelligence Processor') built with Broadcom specifically for LLM inference, with OpenAI doing chip design and Broadcom contributing silicon and Tomahawk networking. OpenAI claims design-to-tape-out took nine months — partly accelerated by its own models — and 'substantially better' performance per watt, though these are self-reported numbers with no technical report yet. Engineering samples are already running GPT-5.3-Codex-Spark in the lab; large-scale deployment is planned for late 2026 at gigawatt scale, with Microsoft reportedly committed to buying 40% of the first run. Community reverse-engineering pegs it as TPU-like, roughly 216GB HBM3E and ~10 PFLOPS FP4.
Why it matters: If the perf-per-watt claims hold, OpenAI gains leverage over inference economics and its Nvidia dependence — but until an independent technical report lands, treat the numbers as marketing.
- OpenAI and Broadcom announce chip designed for LLM inference at scale (Ars Technica AI)
- OpenAI and Broadcom unveil "Jalapeño," a custom chip built for LLM inference (The Decoder)
- OpenAI unveils its first custom chip, built by Broadcom (TechCrunch AI)
Qualcomm enters the data center with Dragonfly C1000 and buys Modular for ~$4B
Qualcomm announced the Dragonfly C1000, a data-center processor optimized for AI agents and low power, with Meta planning to deploy it starting 2028. Alongside it, Qualcomm is acquiring Chris Lattner's Modular — maker of the cross-architecture Mojo/inference stack — for roughly $4 billion, with Modular saying Mojo open-sourcing stays on track. Qualcomm nearly doubled its non-smartphone revenue forecast to $40B by 2029 (targeting $15B from data centers); the stock jumped 15% after hours.
Why it matters: The Modular buy gives Qualcomm a serious CUDA-alternative software story to pair with its silicon — another front in the slow erosion of Nvidia's lock-in.
Practitioners report MTP and vLLM quietly degrading output quality
Multiple local-inference users pushed back on the 'free speedup' framing of multi-token-prediction (MTP) speculative decoding. One found non-MTP Qwen 3.6 27B produced markedly better code reviews than the MTP variant (more findings, fewer tokens), with real-world agent runtime only ~20% faster despite 2x decode throughput. Separately, several report that the same model on vLLM feels 'lobotomized' versus llama.cpp — broken tool calls, lost context, blindness to messages — likely a mix of quantization, chat-template, and parser issues rather than a clean apples-to-apples win.
Why it matters: Speculative decoding is supposed to verify every drafted token at zero quality cost, so these reports point to config and serving-stack pitfalls worth benchmarking before you trust a throughput number for agentic work.
- Worse quality with MTP - Qwen 3.6, Gemma 4 (r/LocalLLaMA)
- Qwen3.6 27B more dumb in vLLM compared to llama.cpp (r/LocalLLaMA)
- Has anyone else found vLLM outputs noticeably worse than llama.cpp for the same model? (r/LocalLLaMA)
Seven Chinese vendors are now shipping H100/H200-class accelerators
A widely-shared LocalLLaMA writeup maps at least seven Chinese AI-chip makers shipping today: 'three dragons' (Huawei Ascend, Alibaba T-Head, Baidu Kunlunxin) and 'four snakes' that mostly IPO'd in the last six months (MetaX, Moore Threads, Biren, Iluvatar CoreX). Current parts land around H100, next-gen targets H200, and production is shifting from TSMC to SMIC. The post cites a CHITEX talk for many specifics and flags vendor/analyst figures as unverified. NVIDIA's China GPU share reportedly fell from 95% to 55% in two years. Separately, a Chinese supercomputer reclaimed the world's-fastest spot for the first time since 2017.
Why it matters: Chinese open-weight models (Qwen, DeepSeek, GLM) are increasingly co-designed with domestic silicon, with its own form factor, interconnect, and HBM. If you run open weights, the hardware you target in two years may not be NVIDIA.
SGLang squeezes 5x more throughput out of DeepSeek-V4 on GB300
The SGLang team documented how DeepSeek-V4 serving improved from its April day-0 stack to June: ~11,200 tok/s/GPU at ~50 tok/s/user on the public SemiAnalysis InferenceX GB300 disaggregated lane, versus ~2,200 tok/s/GPU at day-0, a 5x gain at the same interactivity. The wins came from MHC kernel fusion, KV Compression V2, a W4A4 MegaMoE path, better SWA budgeting, breakable CUDA graphs on the prefill side, and a pile of correctness fixes (one one-line FP8 scaling fix bumped speculative acceptance from 0.57 to 0.70). Reproduction scripts and recipes are public.
Why it matters: A concrete, auditable look at how much serving performance is left on the table at launch and how much is recovered through kernel and runtime work rather than new model weights. Useful context for anyone reasoning about inference economics.
Reflection rents $6.3B of GB300s from SpaceX, the third neocloud deal
Open-weight lab Reflection AI will pay SpaceX $150M/month from July 2026 through 2029 for immediate access to Nvidia GB300 chips at the Colossus 2 data center near Memphis — a deal worth up to $6.3B, with a 90-day exit clause. It is smaller than SpaceX's Anthropic ($1.25B/month) and Google ($920M/month) contracts. Tallied together, SpaceX's GPU rentals annualize to roughly $28B/year at implied Blackwell pricing above $10/hour, about twice CoreWeave's current revenue.
Why it matters: SpaceX has quietly become a major 'neocloud,' and GPU brokerage is emerging as a strategic layer between model builders and hardware supply — with Reflection pitching open weights as the hedge against closed-model access being revoked.
- SpaceX inks compute deal with Reflection AI, an open source AI lab (TechCrunch AI)
- [AINews] SpaceX is already a $28B/yr Neocloud (Latent Space (swyx))
Google makes the Interactions API the default for Gemini agents
Google promoted its Interactions API to GA and the default interface for Gemini models, replacing generateContent in AI Studio and docs (the old API still works but new agent features ship only here). It adds Managed Agents with their own isolated Linux sandbox (Antigravity), background async execution, tool chaining with Search and Maps, and media generation. The schema swaps role labels for typed steps, with Flex mode cutting costs 50% and Priority optimizing for speed. Google shipped an installable skill to teach coding agents the new SDK patterns.
Why it matters: Google is reframing its stack as a first-party agent harness, not just a model endpoint — but the migration means rewriting against typed-step semantics before new agent features are available.
AWS admits agents lack context and security, ships services to patch both
At the AWS Summit in New York, Amazon launched AWS Continuum, which detects, validates and fixes code vulnerabilities by replicating attacks in isolated environments before suggesting patches, and AWS Context, which builds an organization-wide knowledge graph so agents stop confidently hallucinating. The DevOps Agent gained Release Readiness Reviews and change-derived test plans that run in production-like environments, and coding agent Kiro got a native iOS control app. Bedrock AgentCore added a managed knowledge base with S3, SharePoint, Confluence and Google Drive connectors plus prompt-injection and data-leak filters.
Why it matters: The new code-review and verification layers are a direct response to AWS's own AI-caused outages, including a 13-hour incident after Kiro deleted and rebuilt an environment. If you're putting agents in production, these are the failure modes vendors are now admitting out loud.