MIT Frontier Models + AMD at Half-Price: Self-Hosting Just Became the Default
The Convergence That Changes Your Architecture
Meituan put out LongCat-2.0 this week, and the self-hosting calculus moved from interesting hedge to economically obvious default. It is a 1.6-trillion-parameter sparse MoE, 48B active per token, under MIT license, and it edges GPT-5.5 on SWE-bench Pro at 59.5 to 58.6. Z.ai shipped GLM-5.2 the same week: a 744B MoE, 40B active, a real 1M-token context window, 28.5T training tokens, MIT weights. And Wafer showed AMD MI355X serving at 2626 tok/s/node, roughly 2x cheaper than NVIDIA Blackwell, using framework configuration rather than custom kernels.
The forcing function landed the same week. Alibaba banned Claude Code overnight, ordering all Claude models off work machines. Anthropic's Fable 5 was down 19 days on export-control issues. These stopped being hypotheticals.
The Practical Recipe
The AMD result is worth trusting because it is configuration, not engineering:
- MXFP4 quantization via Quark
- sglang as serving framework, which beat vLLM and ATOM in their testing
- FP8 KV cache for memory efficiency
- ROCm speculative-decoding fixes
- MoE kernel tuning for fp4 shapes
To benchmark before you touch hardware, Vercel's AI Gateway now exposes GLM 5.2 Fast as an endpoint.
The MoE Memory Trap
Capacity planning is where the sparse MoE numbers mislead. LongCat-2.0 activates 48B params per token, so inference compute tracks a 50B model. The thing that number doesn't tell you is that you still have to hold all 1.6T weights in memory. Your tok/s bill reads mid-size and your VRAM and storage bill reads enormous. Size the full parameter set before committing.
Cross-Source Validation
The SWE-bench Pro gap of 59.5 to 58.6 is sub-one-point and vendor self-reported, with no confidence intervals. That is a leaderboard result, not a production verdict. Do not put 'beats GPT-5.5' in a design doc without re-running on your own harness. The delta is noise. What is not noise is that an MIT-licensed model now sits in the same performance band as a proprietary frontier model, and that is what makes self-hosting a real option.
Local models now answer 71.3% of ChatGPT-style queries correctly, up from 23.2% in 2023 per Stanford, and Qwen 3.6 27B runs at 32 tok/s on an M5 MacBook. Frontier capability for the hard tasks via self-hosted MoE, viable local inference for the routine majority.
The default architecture of piping everything to a frontier cloud API is now leaving 50-60% of cost on the table, plus geopolitical risk you don't control.
What to do
Run Wafer's AMD recipe (MXFP4 + sglang + FP8 KV cache) on your serving stack or benchmark via Vercel AI Gateway's GLM 5.2 Fast endpoint this week
Pull LongCat-2.0 weights from Hugging Face and benchmark against your internal code-gen eval harness by end of sprint
Implement a provider-abstraction layer with evaluated fallback model by end of quarter
Size LongCat-2.0's full 1.6T parameter footprint into GPU memory planning before any deployment commitment