As of June 2026, the AI industry stands at a historic turning point. Hyperscaler capital expenditure (CapEx) runs at roughly $725 billion a year, 75% of it directed at AI-specific infrastructure — concentrated investment on the scale of Switzerland's national GDP. But several technical breakthroughs and geopolitical shocks have struck at once, and the premise of this "cloud-concentrated paradigm" is collapsing.
1. The Fable 5 Export Ban — Cloud Dependence's Fragility, Proven
The sequence of events
On June 9, 2026, Anthropic released Claude Fable 5 — the company's highest-performing Mythos-class model. A one-million-token context window, capable of autonomous agent work over several days. Offered at a premium price of $10/M input, $50/M output.
Three days later, on June 12, the US Commerce Department (Bureau of Industry and Security), invoking national security, ordered access cut off for all foreign nationals — those outside the US, those working inside it, and Anthropic's own non-citizen employees alike. The government cited a "jailbreak" technique it had identified in Fable 5; Anthropic reviewed it and pushed back that it amounted to "minor, already-known vulnerabilities." Because there is no way to verify nationality in real time over an API, Anthropic disabled both models for every customer worldwide (other models were unaffected). It was the first instance of export controls applied to an AI model itself.
The Commerce Department grounded this in an expansive reading of the FDPR (Foreign Direct Product Rule). The FDPR was originally a rule applied to foreign-made hardware manufactured using US technology — as in the 2020 sanctions on Huawei. This was the first time it was applied to an AI model's weights and API access.
The Economist called the decision "capricious and chaotic."
Not even allied nationals were exempt. Ahead of the move, Defense Secretary Pete Hegseth had designated Anthropic a "supply chain risk" — the first time that label, historically reserved for foreign adversaries like Huawei and ZTE, was applied to an American company. Allies watched their own critical capability stop on a single US order.
Vulnerabilities found in classified systems
On June 11, Senate Intelligence Committee Vice Chair Mark Warner relayed what NSA Director and Cyber Command head General Joshua Rudd had told him directly: in an authorized red-team exercise, Mythos had broken into "almost all of our classified systems, not in weeks, but in hours" (reported by The Economist on June 14).
This has to be stated precisely. What was reported is that the model found vulnerabilities in hours — not that it fully exploited them in hours (AP/CNBC). The Economist writer who published the quote later cautioned it "should not be read literally," as it depended on other tools and specific conditions, and Anthropic describes the episode as "analyzing a codebase and fixing flagged issues, not an autonomous offensive intrusion." No government agency has officially confirmed it.
Even so, the structural meaning is large. It shows AI now carries national-security-grade capability — and the administration's response was to cut off access to that capability. But the vulnerability it really exposed lies less in the model than in a structure that depends on a single company under a single jurisdiction.
Lay out the facts.
- What was regulated is access to the model, not the underlying dependence
- Open-weight models such as DeepSeek V3 and Qwen3 have comparable reasoning ability and run locally — only a model placed under US jurisdiction can be stopped for the whole world by one order
- What the administration did was ban the export of Fable 5, not dissolve the dependence
- With the same capability already in OSS and running locally, cutting off access changes little; what remains is that the world that depended on it has seen how fragile that dependence is
What The Economist missed
The Economist analyzed that "middle powers will be caught in the middle" — it is "hard to imagine the Trump administration, having denied access to Fable 5, allowing the purchase of cutting-edge chips to train a clone."
This analysis misreads the reality of the semiconductor supply chain. The company mass-producing the most advanced chips is Taiwan's TSMC, not a US firm. Excessive US export controls have, over the past few years, cost US suppliers $130 billion in market value and 8.6% in revenue.
If a demand coalition of the EU27, the UK, Japan, South Korea, India, and ASEAN built a framework to order directly from TSMC, the need to route through the US would fade. TSMC is a for-profit company; it sells to its largest customers.
2. The Rise of Sovereign AI — Cohere and Aleph Alpha
In April 2026, Canada's Cohere and Germany's Aleph Alpha announced a strategic merger. Combined valuation roughly $20 billion. The Schwarz Group (parent of Lidl) provided a $600 million strategic investment. The Schwarz Group made it a condition that the AI systems run on "STACKIT," the sovereign cloud operated by its own IT division — embodying "de-US-dependence" at the infrastructure level.
Command A+
Released May 2026. A 218B-parameter sparse MoE, 25B active. Apache 2.0 license. 48 languages including all official EU languages. Fits on two NVIDIA H100s with W4A4 quantization.
Only the MoE experts are quantized to 4-bit; the attention path keeps full precision. Quantization-Aware Distillation (QAD) closes the quality gap. Benchmark quality is nearly identical across the BF16 / FP8 / W4A4 variants.
The North platform
An enterprise foundation integrating the Command generative model, Compass retrieval (RAG), and custom AI agents. Runs on-premises, in a VPC, and in air-gapped environments. Minimum hardware requirement: 2 GPUs. GDPR / SOC-2 / ISO 27001 compliant.
Cohere's business model is "hand over the model and the platform, and have customers run it on their own hardware." Because customers run it themselves, no GPU infrastructure cost lands on Cohere. Gross margin around 70%, ARR $240 million.
The exact opposite of Microsoft 365 Copilot's structure, where "every employee pays a cloud API fee every month, forever."
3. The Algorithm Revolution — SSA and TurboQuant
SSA (Subquadratic Sparse Attention)
Transformer attention grows in computation in proportion to the square of context length (O(n²)). Double the context, quadruple the computation. Processing one million tokens takes roughly a trillion operations.
In May 2026, Subquadratic released SSA. Unlike Dense Attention, which compares all token pairs, it dynamically selects, for each query token, only the semantically relevant key tokens to compute. Computation drops from O(n²) to near-linear O(n·k) (where k is the number of selected tokens).
Independent verification by Appen (May 2026):
| Context length | Dense FLOPs (FA2) | Sparse FLOPs (SSA) | Reduction |
|---|---|---|---|
| 128K | 142.1 TFLOP | 18.1 TFLOP | 7.9× |
| 256K | 568.4 TFLOP | 36.1 TFLOP | 15.7× |
| 512K | 2,273.8 TFLOP | 72.3 TFLOP | 31.5× |
| 1M | 9,095.2 TFLOP | 144.9 TFLOP | 62.8× |
The cost of evaluating a 128K context fell from about $2,600 on Claude Opus to about $8 on SubQ.
TurboQuant
Announced by Google Research at ICLR 2026 (March 2026). A compression technique for the KV cache, the other bottleneck at inference time.
- PolarQuant: applies a random orthogonal rotation (Hadamard transform) to the data vectors, uniformizing the distribution. Each dimension becomes nearly independent, allowing optimal scalar quantization (Lloyd-Max).
- QJL: a 1-bit Quantized Johnson-Lindenstrauss transform corrects the bias in inner-product computation.
No model retraining, no calibration, applicable to any Transformer. Compresses the KV cache from FP16 to 3–4 bits. Memory cut by 6×; Attention Logit computation on the H100 sped up by up to 8×.
After the paper, without waiting for Google's official implementation, the community completed independent implementations for PyTorch, MLX, and Triton in just two weeks and merged them into mainstream vLLM. Independent verification further found that "the 1-bit QJL correction amplifies variance in the Softmax function, actually lowering accuracy in the 3-bit range," and the community adopted "PolarQuant (4bit_nc, etc.)" with QJL disabled as the practical default — achieving a productionization that surpasses the original paper.
The speed of academic publication → community implementation → OSS mainstream merge is overwhelming; monopolizing efficiency-improvement techniques is no longer possible.
4. The Democratization of Hardware — Strix Halo
AMD Strix Halo (Ryzen AI Max+ 395). A consumer APU integrating a 16-core Zen 5 CPU, a 40-CU RDNA 3.5 iGPU, and an NPU (XDNA 2) on a single piece of silicon. Up to 128GB of unified LPDDR5X-8000 memory, with about 256GB/s of memory bandwidth directly usable by the iGPU.
| Spec | Strix Halo | Mac Studio M4 Max | RTX 4090 |
|---|---|---|---|
| Price | ~$2,000 | ~$4,000 | ~$1,600 |
| Memory / bandwidth | 128GB / 256GB/s | 128GB / 410GB/s | 24GB / 1,008GB/s |
| Llama 3.1 70B Q4_K_M | 32 tok/s | 28 tok/s | Won't run (OOM) |
| Power (heavy load) | 90W | 80W | 450W |
A consumer product, outside the scope of the Commerce Department's GPU export controls.
Under ROCm 6.4.4, pipelining the CPU, iGPU, and NPU measured 1,132 tok/s on Qwen3 8B BF16. A Bonsai 1-bit quantized model (8B) reached 122 tok/s on just 1GB of memory.
Cohere's North Mini Code (30B MoE, 3B active) is about 17GB at Q4_K_M. Command R+ (104B dense) is about 60GB at Q4_K_M. Both can be loaded on a single Strix Halo at once and operate together — 77GB total, leaving 51GB for context.
Via cloud API, billing grows in proportion to inference volume. Local inference on Strix Halo has zero marginal cost after the hardware purchase. Have an agent run tens of thousands of loops (code generation, verification, debugging) and the only added cost is a few dozen watts of electricity.
5. A Structural Threat to the $725B CapEx
Resemblance to the fiber-optic bubble
The $725 billion in investment presumes that "O(n²) computation costs continue" and that "cloud inference demand grows exponentially."
If SSA and TurboQuant improve inference efficiency at the root, the number of GPUs needed for the same task drops by an order of magnitude. If local inference is offloaded to edge devices like Strix Halo, the growth of cloud inference demand plateaus.
In the 2000s telecom bubble, vast fiber-optic networks were laid in anticipation of internet demand. The demand itself existed, but efficiency gains in transmission technology like DWDM made a single fiber's capacity leap, leaving most of it "dark fiber" and collapsing the market.
As of 2026, the risk grows that the H100s and B200s stacked in data centers turn into "dark GPUs."
Microsoft's "overbuild" — the biggest bettor slows itself down
This risk is no longer an outside forecast. It has become the words of the biggest bettor itself.
The company that bet most heavily on centralized-cloud AI is Microsoft — a massive investment in OpenAI, Azure exclusivity, over $80 billion a year in capital spending. Yet in 2026, that same Microsoft began canceling data-center leases — about 200MW per a TD Cowen report, and it halted construction of a Wisconsin site believed to serve OpenAI. Nadella himself has conceded that "there will be an overbuild."
The trigger is the defection of the very partner it had locked in. OpenAI is building Stargate (about 7GW, over $400 billion across three years) with Oracle and SoftBank, outside Azure, lowering its dependence on Microsoft. The exclusivity was loosened into a non-binding arrangement, and Microsoft now finds itself picking up the Texas data-center project OpenAI didn't want (Fortune, March 2026).
Two structures are visible at once here.
- The CapEx bubble recognizes itself — "dark GPUs" are no longer an outside prediction but a fact, with the very party that stacked them now slowing down. The premise of centralization (exponentially growing cloud inference demand) is cracking from within.
- The master–slave reversal — the top bettor (the master), having locked in its partner (OpenAI), is left independent-ed by it and reduced to picking up castoffs. The side that did the labor of building the models gains power, and the side that hoarded it is left stranded — the classic reversal itself.
The enormous bet on centralization is the most eloquent proof of centralization's limits.
Private credit — the AI debt is wired to your pension
What makes the overbuild more than mere "over-investment" is that the investment is tilting away from equity and toward debt.
In 2025 alone, data-center credit deals reached about $178.5 billion — much of it junk-rated. Hyperscaler bond issuance hit roughly $121 billion, four times the five-year average. The question is where that money comes from. Private credit (Blackstone, Blue Owl, Apollo, Pimco, BlackRock, and others) holds most of it, and life insurers alone have nearly $1 trillion sunk there. The originated loans are securitized, sliced into tranches, and sold on to pension funds and asset managers. As CNBC put it — "the AI data-center debt might be in your 401(k)."
The sharpest read of the structure came from Ed Zitron, the AI-skeptic journalist:
Your customers are unprofitable AI startups. Your revenue source for paying off the debt is another company that cannot pay its bills.
The data-center lenders are betting on the ability of loss-making AI firms to pay — and behind them sit pensions and insurance. The money is also circular: Nvidia committed up to $100 billion to OpenAI and holds a stake in CoreWeave, and that money flows back to Nvidia through GPU purchases. Bloomberg diagrammed it as "Microsoft, OpenAI and Nvidia paying each other in a circle" — the same shape as the dot-com era's "vendor financing," when Nortel and Lucent lent to their own customers to manufacture the illusion of revenue.
The timing is bad, too. The first maturities of GPU-backed debt (originated 2023–25) arrive in 2026–27. A GPU's life is about seven years — far shorter than a data center's decades. Peak depreciation coincides with the repayment deadline. US senators have warned that this debt could cause "destabilizing losses" at financial institutions and trigger a broader financial crisis.
The technology is real; the bubble is in the use cases
Zitron's reasoning is structurally correct. But it misses one thing — AI is not worthless.
As this series has laid out, AI has real, definite value in exactly four things: app development (the one domain where AI can be the maker — software), drafting, research, and verification. Even the MIT study (95% of enterprise generative-AI pilots fail to deliver measurable ROI) concluded that the problem is not the model (the technology) but deployment and integration.
So we can say it plainly. The technology is real. What is a bubble is the use cases — and the scale of investment that does not match them. The market the four real uses generate is large. But not large enough to justify $700-billion-class CapEx. What fills the gap is the fantasy that "AGI will replace all white-collar work" — kayfabe, the scripted performance of pro wrestling. A divergence between the story in the language layer (AGI) and the reality in the physical layer (four uses, plus zero marginal cost as it goes local).
And that divergence meshes doubly with this article's thesis. If the uses are "four," and they head toward zero marginal cost via efficiency (SSA, TurboQuant) and local inference, then the demand premise of centralized data centers cracks from two directions at once — fewer GPUs needed, and a real use-market that never reaches the CapEx. When the bubble bursts, it reaches the pensions. Autonomy and distribution are not only an idea; they are standing outside that chain.
The numbers proved it — the technology is real; the bubble is in the uses. The debt of centralization is wired to your pension. Distribution stands outside the chain.
Distributed resolution of the power problem
AI data-center power consumption is projected to demand 156GW by 2030. A shortage of skilled workers needed to build data centers is also surfacing (600,000 job openings against 150,000 new apprentices a year).
The shift to local inference structurally eases this power problem. Inference workloads once centralized in data centers are distributed to Strix Halo units (TDP 55–120W) on desks around the world. Each device's power draw is incomparably smaller than a data center's GPU cluster, and being spread thinly and widely across the existing consumer power grid, it does not cause localized grid strain or cooling-water shortages.
Distributing computation is also distributing power demand.
Conclusion
Lay out the facts and the structure appears.
Algorithmic breakthroughs (SSA, TurboQuant) shattered the mathematical and physical bottlenecks of inference. Their fruits flowed into OSS, were implemented in vLLM and the like, and made monopolizing technical advantage meaningless. Edge devices like Strix Halo made local inference practical and delivered a zero-marginal-cost inference environment. The Fable 5 export ban and the NSA testimony proved the risk of cloud dependence at every layer.
From small businesses to national agencies, the reasons to migrate toward a distributed structure that runs AI models on one's own infrastructure are now all in place.
Autonomy, distribution, and diversity are not an ideal. They are a technical and economic consequence.
References
- How AI Data Centers Are Reshaping Electronic Component Supply in 2026 - Accuris https://accuristech.com/blog/ai-data-center-electronic-component-supply/
- AI Capex Cycle 2026: $725B Hyperscaler Buildout https://alcapitaladvisory.com/research/intelligence/ai-infrastructure.html
- Introducing Claude Fable 5 and Claude Mythos 5 - Anthropic https://platform.claude.com/docs/en/about-claude/models/introducing-claude-fable-5-and-claude-mythos-5
- Donald Trump's blocking of Anthropic is capricious and chaotic - The Economist https://www.economist.com/briefing/2026/06/14/donald-trumps-blocking-of-anthropic-is-capricious-and-chaotic
- Statement on the US government directive - Anthropic https://www.anthropic.com/news/fable-mythos-access
- The White House's New Anthropic Restrictions, Explained https://thedispatch.com/article/anthropic-fable-mythos-claude-export-controls-explained/
- Sovereign AI: Cohere and Aleph Alpha https://www.businesswire.com/news/home/20260424174908/en/
- Cohere Command A+ https://docs.cohere.com/docs/command-a-plus
- North: The AI Platform Where Work Flows https://cohere.com/north
- SubQ LLM - AI革命 https://ai-revolution.co.jp/media/what-is-subq-llm/
- Benchmarking Subquadratic's SSA Kernel - Appen https://www.appen.com/whitepapers/benchmarking-subquadratics-latest-model-ssa-kernel
- SubQ AI Explained - DataCamp https://www.datacamp.com/blog/subq-ai-explained
- TurboQuant: Redefining AI efficiency - Google Research https://research.google/blog/turboquant-redefining-ai-efficiency-with-extreme-compression/
- AMD Strix Halo for Local AI 2026 https://localaimaster.com/blog/strix-halo-ai-max-395-guide
- AMD ROCm Local LLM Setup https://localaimaster.com/blog/amd-rocm-local-llm-setup
- North Mini Code - OpenRouter https://openrouter.ai/cohere/north-mini-code:free
- North Mini Code - Cohere Documentation https://docs.cohere.com/docs/north-mini-code-1.0
- The MATCH Act - R Street Institute https://www.rstreet.org/commentary/the-match-act-is-industrial-policy-dressed-as-national-security/
- The GPU Black Market - American Compute https://www.amcompute.com/blog/gpu-black-market-washington-cant-shut-down