Product Launch · XiaoHu Explains

Meituan Releases LongCat-2.0: 1.6-Trillion-Parameter Model Trained Entirely on Domestic Chips, No NVIDIA GPUs

Trained on 50,000+ domestic AI chips and 35 trillion tokens; most benchmark scores come from Meituan's own eval framework, and the weights aren't actually downloadable yet.
30-Second Rundown
  • Meituan's LongCat team released and open-sourced LongCat-2.0 on June 30, 2026 — an MoE model with 1.6 trillion total parameters and about 48 billion activated per token.
  • Both training and large-scale deployment ran entirely on a cluster of 50,000+ domestic AI ASIC chips, covering over 35 trillion tokens — no NVIDIA GPUs used.
  • Building on LongCat-Flash, the architecture adds LongCat Sparse Attention (LSA) and a 135-billion-parameter N-gram Embedding, used to speed up long-context processing and cut inference memory overhead.
  • Meituan's own benchmark scores show it beating Gemini 3.1 Pro and GPT-5.5 on code/agent tasks like SWE-bench Pro and SWE-bench Multilingual, but trailing Claude Opus 4.7 and 4.8; on baseline-capability benchmarks like IFEval and GPQA-diamond, it lags behind the top models.
  • As of this writing, the model weights weren't actually live on HuggingFace yet, and the vast majority of scores come from Meituan's own in-house eval framework — independent third-party reproduction is still pending.
This is vendor content: the technical details come from Meituan's official LongCat blog, and most benchmark scores are Meituan's own in-house eval results — only figures marked with * are externally published values. Meituan hasn't named the specific domestic chip vendor, the model weights weren't actually downloadable as of this writing, and independent third-party reproduction is still pending. Data points below are labeled with their source inline rather than repeating this caveat every time.
1What Happened

What Meituan Actually Did

Meituan's LongCat team released and open-sourced LongCat-2.0 on June 30, 2026 — a massive MoE (Mixture-of-Experts) language model with 1.6 trillion total parameters and roughly 48 billion activated per token.

What's most striking here isn't the parameter count — it's where it ran. The entire training and large-scale deployment process was built on a "superpod" cluster of more than 50,000 domestic AI ASIC chips, covering over 35 trillion tokens, without a single NVIDIA GPU.
🎯Why this matters: The US has enforced AI chip export controls against China since 2022. As far as public reporting goes, this is the first competitive trillion-parameter model claimed to have been trained entirely on domestic hardware. After system-level optimization, training throughput rose more than 35% over a naive implementation, and the entire pretraining run had zero rollbacks and no unrecoverable loss spikes — direct evidence that frontier-scale training is possible on alternative hardware.
1.6T
Total parameters
50,000+
Domestic AI chips
35T+
Training tokens
Trained entirely on domestic compute clusters · NVIDIA GPU × 0

In the team's own words: "LongCat-2.0 has proven that we now have the ability to train large-scale models on domestic compute clusters." The LongCat team was only founded in 2023, and its first model shipped just late last year.

2Capability Demo

What It Can Actually Do

Forget the parameter count and benchmark scores for a second. One official demo — a "codebase migration" — gives a much more concrete feel for what it can actually do: porting an entire plugin to a new SDK, and having it actually work.

1Read the entire context at once: it ingests the whole codebase and the migration docs together, not just fragments.
2Map the existing architecture: figure out how the plugin is currently organized and how its parts call into each other.
3Rewrite it against the new SDK: rebuild the entire plugin against the new interface while keeping every existing feature.
4Catch bugs along the way: find and fix latent issues in the original code during the migration.
5Compiles clean on the first build: not a pile of code a human then has to debug back and forth — it lands right the first time.

The official materials also show demos in code engineering, agents and research, and content generation. What these tasks demand of a model is twofold: swallowing very long inputs while staying consistent across long chains of reasoning — which happens to line up exactly with the two architectural areas it was purpose-built to optimize, covered in the sections below.

3Benchmark Comparison

How Good Are the Scores, Really

The official materials pit LongCat-2.0 against several leading closed-source models within a unified eval framework. Knowing exactly where its strengths and weaknesses lie is more useful than staring at any single number.

Benchmark comparison chart of LongCat-2.0 against leading models
Benchmark comparison of LongCat-2.0 against Gemini 3.1 Pro, GPT-5.5, and the Claude Opus series. Source: LongCat official blog / The Decoder
BenchmarkLongCat-2.0Gemini 3.1 ProGPT-5.5Opus 4.6Opus 4.7Opus 4.8
Code Agent
Terminal-Bench 2.170.870.7*73.8*-71.7*78.9*
SWE-bench Pro59.554.2*58.6*57.3*64.3*69.2*
SWE-bench Multilingual77.376.9*-77.8*80.5*84.8*
General Agent
FORTE †73.270.377.873.277.677.2
BrowseComp79.985.9*84.4*84.0*79.3*84.3*
RWSearch78.876.385.381.379.377.3
Baseline Capability
IFEval90.096.195.092.288.786.0
Writing Bench83.883.784.7-85.385.2
IMO-AnswerBench81.890.079.575.3*81.875.3
GPQA-diamond88.994.3*93.6*91.3*94.2*92.4
Basis: entries marked * are externally published values; the rest are Meituan's own in-house scores within a unified harness. Scores are normalized to 0–100. † FORTE is a general-agent benchmark.
Code / Agent track: who LongCat-2.0 beats and who it trails (SWE-bench Pro)
Opus 4.869.2
Opus 4.764.3
LongCat-2.059.5
GPT-5.558.6
Gemini 3.1 Pro54.2

The read is straightforward: its strength is code and agents — on SWE-bench Pro (59.5) and SWE-bench Multilingual (77.3) it beats Gemini 3.1 Pro and GPT-5.5, but trails Claude Opus 4.7 and 4.8. The baseline-capability gap is real — on IFEval (90.0), IMO-AnswerBench (81.8), and GPQA-diamond (88.9), Gemini and GPT-5.5 pull ahead. This isn't an across-the-board win; it's catching up to — and in places beating — the Western frontrunners on the specific "code + agent" track it deliberately optimized for, while still trailing on pure knowledge and math reasoning. It's also been deeply adapted for mainstream agent frameworks: Claude Code, OpenClaw, and Hermes.

4The Problem

Why Long-Context Processing Gets Stuck

Agent applications increasingly need to ingest very long inputs in one go — an entire codebase, a whole document. But processing long text runs into a cost problem models can't dodge.

The standard approach has every word compare against every other word (attention) — the longer the text, the more comparisons explode, quadratically. Sparse attention's idea: don't compare everything — use an "indexer" to first pick out the small handful of most relevant words to focus the compute on.

In plain terms · Sparse attention indexing

It's like flipping through a thick book to find an answer: you check the table of contents to pick the relevant chapters first, rather than reading every word from page one to the end. The indexer is that "table of contents."

DeepSeek's sparse attention (DSA) tackles this with fine-grained sparsity, but Meituan's own testing found that DSA's "Lightning Indexer" is itself still a bottleneck: its output is non-contiguous (hardware-unfriendly), and the scoring cost is still quadratic. In other words, picking the table of contents isn't fast enough, and flipping through it is still a chore in itself. That's exactly what the next section's core innovation goes after.

5Core Innovation · Part One

How LongCat Speeds Up Long-Context Processing

LongCat Sparse Attention (LSA) applies three orthogonal efficiency upgrades to that bottlenecked indexer. Orthogonal means the three don't interfere with each other and can each be switched on or off independently.

Hero · LSA

The core idea isn't swapping in a different indexer — it's cutting the cost of "flipping through the table of contents" from three separate angles: make memory access orderly, make one index pass serve multiple layers, and score coarse-to-fine. Stack all three, and the indexing cost gets spread thin enough that long-context processing actually runs fast.

SI · Streaming-Aware Indexing

It combines "hardware-aligned contiguous access" with "dynamic random selection," reorganizing scattered memory access into predictable sequential reads — enabling coalesced HBM access and boosting effective bandwidth. For the same batch of tokens, reads go from scattered here and there to one straight line.

Before · Scattered random access
After · Sequential reads
CLI · Cross-Layer Indexing

It exploits an empirical pattern: attention saliency is quite stable across neighboring layers — adjacent layers tend to want to pick roughly the same words. So a single index computation, at inference time, serves several consecutive layers instead of being recomputed at every layer, spreading the indexing cost thinner. This is achieved through cross-layer distillation during training.

HI · Hierarchical Indexing

Coarse-to-fine two-stage scoring: a block-level approximate score does coarse recall first, circling a roughly relevant candidate region, then fine-grained token selection happens within that much smaller candidate set. The candidate space the indexer actually has to process each time shrinks. In LongCat-2.0, HI is used training-free, out of the box, and is only turned on for selected ultra-long-context tasks.

This mechanism also extends to the 3-step MTP (multi-token prediction) module, used to speed up speculative decoding (guessing several words ahead at once — a correct guess saves time). Below is the official LSA design overview.

LongCat Sparse Attention (LSA) design overview
LongCat Sparse Attention (LSA) design overview: the three orthogonal upgrades — Streaming-Aware Indexing, Cross-Layer Indexing, and Hierarchical Indexing. Source: LongCat official blog
6Core Innovation · Part Two

Spending Under 10% More Parameters for Roughly 100x the Vocabulary Space

The second innovation is called N-gram Embedding. The idea in one line: instead of piling new parameters into more experts, move them to specialize in memorizing "common word combinations" instead.

In plain terms · N-gram Embedding

The usual approach has the model memorize individual tokens one at a time. N-gram Embedding instead memorizes common contiguous combinations as a single "card," so the model recognizes a familiar combination at a glance instead of piecing it together from scratch every time. It's like learning English: you don't just memorize the 26 letters — you also memorize common whole words as flashcards, and recognize them on sight.

LongCat-2.0 inherits this design from LongCat-Flash-Lite, setting the n-gram size to 5 and packing in 135 billion N-gram Embedding parameters — expanding the embedding space by roughly 100x via n-gram token combinations, to capture richer local context. Two scaling principles determine exactly where these parameters should go.

Path A · Keep piling into experts

Even excluding N-gram, model sparsity already sits around 97% — past the sweet spot. Piling the same amount of parameters into more MoE experts yields almost nothing.

Payoff ≈ flatlined
Path B · Move into N-gram Embedding

The same amount of parameters, redirected to memorizing common word combinations, delivers far more payoff than a regular expert — and at inference time, it also shifts memory I/O away from the experts.

Vocabulary ×100

But more isn't always better. Experiments found that once N-gram Embedding exceeds 50% of the total parameter budget, its edge over piling into experts starts to shrink. So LongCat-2.0 keeps it strictly under 10%, leaving a healthy safety margin. The direct payoff: shifting parameters from experts to N-gram Embedding at inference time lowers memory I/O for large-batch decoding and speeds up generation.

N-gram Embedding architecture overview
N-gram Embedding architecture overview: scaling parameters along a sparse dimension orthogonal to MoE. Source: LongCat official blog
7Engineering & Systems

Making It Run Reliably on Domestic Chips Is the Real Fight

Beyond the algorithmic innovations, extensive low-level engineering work was needed to get this running — without breaking — on domestic chips with smaller memory. The team itself admits the surrounding software ecosystem still isn't as mature as NVIDIA's.

The primary constraint is memory. Their accelerators have noticeably less per-chip memory than an H800's 80GB, so at scale, memory is the first bottleneck. The response splits into two tracks: make parallelism more fine-grained, and make the communication domain bigger.

6D Parallelism: A Dedicated Parallel Track for N-gram Embedding

TPTensor Parallelism
CPContext Parallelism
EPExpert Parallelism
DPData Parallelism
PPPipeline Parallelism
EMBPNew: a dedicated parallel track that accelerates N-gram EmbeddingNEW

Superpods: Stretching the High-Bandwidth Communication Domain to Hundreds of Devices

RoCE network Superpod A · fully interconnected, high bandwidth Superpod B · up to 48 machines
Superpods are fully interconnected internally at high bandwidth, with RoCE networking between superpods — stretching the high-bandwidth communication domain to hundreds of devices, feeding the bandwidth-hungry TP/CP/EP parallelism.

At the same scale and under the same conditions, the superpod design alone adds roughly another 30% in pretraining throughput. Combined with memory optimizations (ZeRO-1, selective recomputation, OOM-aware offloading, routing padding tokens to a "zero expert") and a Muon optimizer scaled up for large-scale deployment, the overall system optimizations deliver more than a 35% training-throughput gain over a naive implementation.

Reliability: Making Every Run Reproducible — and Catching Hardware Errors

In plain terms · Deterministic operators / bit-flip detection

Deterministic operators mean the same input always produces the exact same output, no matter how the hardware happens to schedule things — no tiny divergences, which makes bugs reproducible. Bit-flip detection automatically catches computation errors where hardware accidentally flips a bit (0 becomes 1), so it can be caught right away.

Expand: the invisible engineering behind production-grade reliability
  • Forced determinism: both communication and compute paths are made strictly deterministic, backed by an in-house suite of deterministic operators covering the Embedding, FA, LSA, and MoE layers, to guarantee reproducibility.
  • Numerical reliability: all reduction operators switch to "binary-tree segmented accumulation" to curb floating-point error buildup; accelerator arithmetic precision is checked against a high-precision baseline under real LLM workloads; bit-flip detection is added inside some compute-heavy operators to catch hardware bit flips.
  • Fault recovery: end-to-end monitoring drives fault detection, traffic switchover, and automatic recovery with no manual intervention needed; isolating a failed link has no perceptible impact on training, and a repaired link only rejoins the pool after passing stress tests.

The team stresses that the entire pretraining run had zero rollbacks and no unrecoverable loss spikes — which they treat as direct proof that frontier-scale training is viable on an alternative hardware platform.

8Deployment & Post-Training

From Trained to Actually Usable: One More Hurdle

At 1.6 trillion parameters, and needing to serve a 1M-token context, training the thing isn't enough — it has to be deployable as an actually usable product, and it needs several capabilities at once.

Native 1M Long-Context Training

To strengthen long-range task performance, LSA is introduced during training, which is run on hundreds of billions of tokens of 1M-context data. The scaling approach uses all-gather-based CP parallelism, scalable past a CP degree of 512, to achieve native 1M-length training; data is reshuffled at the get-batch stage and sharded with a load-balanced CP strategy to keep load even.

Inference Serving: Optimizing "Reading the Question" and "Writing the Answer" Separately

In plain terms · PD-disaggregated deployment (Prefill-Decode split)

The two stages — "understanding your question" (prefill) and "generating the answer word by word" (decode) — are split onto different machines and optimized separately, because the two steps stress different types of hardware resources.

Prefill nodes · optimizing TTFT (time to first token)
Multi-node Chunked Pipeline Parallelism (CPP) shrinks the EP domain, paired with attention Sequence Parallelism (SP), so "reading the question" produces the first token faster.
Decode nodes · optimizing TPOT (time per output token)
KVP shards the KV-cache across devices, paired with a large EP degree (EP128) to cut per-chip weight memory and expert I/O, keeping "writing the answer" steady and stable.

Post-Training: Learning from Three "Teachers," Then Merging Into One Model

Agent Expert

Autonomous task execution in complex real-world scenarios: precise tool calling, reliable parameter parsing across multi-turn API interactions, and self-correction that suppresses infinite loops and repeated calls.

Reasoning Expert

Extends logical reasoning depth, adapts compute to problem difficulty, and is stronger at math, STEM problem-solving, and multi-hop reasoning.

Interaction Expert

Focused on human alignment: fine-grained instruction-following, suppressing factual hallucination, and building bounded safety mechanisms without sacrificing helpfulness.

The strongest capabilities from all three experts are merged into the final model via the MOPD architecture
→ MOPD merge → strong agent execution / deep reasoning / high-quality interaction, all at once
MOPD multi-expert post-training architecture overview
MOPD multi-expert post-training architecture overview. Source: LongCat official blog
Expand: what else got squeezed on the inference side
  • Model layer: attention uses the absorb compute mode; the indexer and MLA prolog are pipelined on concurrent streams to hide indexing latency; KV-cache parallelism (KVP) shards the KV-cache across devices; ScMoE lets the dense branch and the MoE branch run fully in parallel.
  • Accelerator layer: Super Kernel further squeezes launch overhead within kernels; Weight Prefetch uses the larger L2 cache to prefetch weights, hiding I/O latency inside the previous operator's compute time.
  • Load balancing: Expert Parallelism Load Balancing (EPLB) moves statistics collection and placement computation off the forward critical path, running them asynchronously.
9Key Takeaways

The Numbers Worth Remembering

All the scale numbers from this piece, gathered in one place. These are the anchor points for understanding exactly what makes LongCat-2.0 different.

1.6T
Total parameters
48B
Activated parameters per token
50,000+
Domestic AI ASIC chips
35T+
Training tokens
35%+
Training throughput gain (vs. naive implementation)
30%
Extra throughput from superpods
135B
N-gram Embedding parameters
100x
Effective vocabulary expansion
1M tokens
Native long-context length

One last thing worth keeping straight: the official announcement calls this "introducing and open-sourcing" LongCat-2.0, and the blog links to GitHub (github.com/meituan-longcat/LongCat-2.0), HuggingFace, an online demo (longcat.chat), and API docs. But as of this writing, the weights weren't actually downloadable yet, and whether third parties can independently reproduce the scores is still an open question. Most of the numbers above are Meituan's own self-tested values from its in-house eval framework — leave room for that when making head-to-head comparisons.

LongCat-2.0 has proven that we now have the ability to train large-scale models on domestic compute clusters. LongCat official technical blog
Sources: LongCat's official technical blog (longcat.chat/blog/longcat-2.0/) and reporting from The Decoder. Technical details follow the official blog; geopolitical and industry-significance framing, along with the external fact-check perspective, come from The Decoder. Except for values marked *, which are externally published, all benchmark scores are Meituan's own in-house results from a unified eval framework. This piece is an explainer of publicly available information, not an independent benchmark verdict.