150M-Parameter BDH-CQ Scores 29.2% on ARC-AGI-1 at $0.0007 per Task
In this article
Pathway's BDH-CQ (Dragon Hatchling, Continual Query) architecture, described in an AWS Machine Learning blog post dated 8 September 2026, challenges the transformer's decade-long structural monopoly on sequence modelling. The headline figure is concrete: a 150M-parameter BDH-CQ model achieved 29.2% pass@2 on the ARC-AGI-1 benchmark at a cost of $0.0007 per task — a cost-accuracy position that Pathway asserts changed the Pareto frontier for that benchmark as of August 2026. For engineers tracking where architectural specificity outperforms GPU scaling, this result warrants close scrutiny.
What BDH Changes About the Compute Graph
Standard transformer inference externalises reasoning as sequential token generation: each chain-of-thought step consumes context window budget, adds autoregressive latency, and burns KV-cache memory proportional to sequence length. BDH-CQ eliminates that trace entirely. It performs iterative computation inside a recurrent latent state and decodes only candidate answers — the internal scratchpad never materialises as tokens.
The architectural foundation is a reformulation of sequence modelling as local graph dynamics on a network of neuron particles. Interactions are sparse and local, with only 5% of neurons typically active at a given time. Connections between neuron pairs encode both memory and reasoning functions, directly mapping to synaptic-style state. Attention is implemented through a linear mechanism operating on fixed, high-dimensional states, avoiding the quadratic complexity that makes transformer attention expensive at long contexts. The model scales in a single neuron dimension (n), which Pathway argues simplifies distribution across compute nodes compared to the multi-dimensional sharding transformers require.
BDH-CQ's in-context learning processes arbitrary numbers of demonstrations at fixed memory cost — a direct contrast to transformer KV-cache, which grows linearly with sequence length. The Hebbian learning principle ("neurons that fire together, wire together") drives attention rather than the softmax dot-product mechanism. Because model state maps directly to synaptic connections between neuron pairs, Pathway claims the reasoning process is more interpretable than the closed transformer hidden state.
ARC-AGI-1 Results
ARC-AGI-1 presents an AI system with a small number of before-and-after examples illustrating an unknown visual rule; the system must infer that rule and apply it to a novel grid. The task deliberately resists corpus pattern-matching because the rules are novel by construction. BDH-CQ's 29.2% pass@2 at $0.0007 per task is the headline figure, but the relevant engineering insight is how it gets there: parallel hypothesis exploration via communities of neurons representing different candidate solutions simultaneously within the recurrent latent state. This is qualitatively different from transformer beam search or repeated sampling, each of which requires separate forward passes at full token-generation cost.
The ARC-AGI task class mirrors real-world scenarios requiring adaptive reasoning under shifting constraints — cybersecurity incident investigation, real-time industrial operations, and long-running autonomous agent workflows. Whether this benchmark proxy translates to production utility at deployment scale remains undemonstrated.
Infrastructure: HyperPod Configuration and Observability
Pathway trained BDH-CQ on Amazon SageMaker HyperPod using EC2 p5en.48xlarge instances. Each instance carries up to 3,200 Gbps of network performance and NVIDIA H200 GPUs. All instances were interconnected via Amazon Elastic Fabric Adapter (EFA) and deployed within an EC2 UltraCluster to minimise inter-GPU network distance and latency. EFA integrates natively with NVIDIA CUDA and NCCL, enabling distribution of data, weights, and activations across the cluster.
The observability layer combines Amazon Managed Service for Prometheus for metrics collection with Amazon Managed Grafana dashboards for visualisation, surfacing GPU utilisation, memory patterns, and inter-node communication efficiency. This stack is documented in the awsome-distributed-ai repository.
| Property | Transformer (standard) | BDH / BDH-CQ |
|---|---|---|
| Reasoning mechanism | Chain-of-thought token generation | Recurrent latent-state iteration |
| Active neuron fraction | Dense (all activations) | ~5% sparse activation |
| Context memory cost | KV-cache grows with sequence length | Fixed memory cost per demonstration count |
| Attention complexity at long context | Quadratic | Linear (fixed high-dimensional states) |
| In-context weight updates | No (static weights at inference) | Internal memory updated during inference |
| Interpretability of reasoning state | Opaque hidden state | State mapped to neuron-pair synaptic connections |
| ARC-AGI-1 cost per task | Not cited | $0.0007 (BDH-CQ, 150M parameters) |
Engineering Trade-offs and Open Questions
Sparse activation and linear attention reduce per-step compute, but recurrent latent computation introduces its own depth: inference cost now depends on the number of iterative refinement steps inside the latent state, not just sequence length. Pathway does not disclose how that iteration count is controlled or bounded in practice. The single-neuron-dimension scaling simplification also requires validation under the multi-node sharding that production frontier models demand — 150M parameters is far below the scale at which transformer infrastructure choices were stress-tested.
The interpretability claim — that synaptic connection state makes reasoning visible — is architecturally coherent, but the source material does not cite evaluation against an interpretability benchmark or methodology. For engineers assessing production AI failing on architecture rather than model intelligence, the transparency argument is relevant, particularly in regulated industries where the transformer's opaque hidden state is a deployment blocker.
BDH-CQ's ARC-AGI-1 result at 150M parameters and $0.0007 per task establishes a concrete reference point for post-transformer cost efficiency. Whether the sparse, locally-connected graph formulation maintains its efficiency advantages as parameter counts scale into the billions remains the critical unanswered question for practitioners considering this path.
Related Reading
GLM-5.3-Flash and Qwen3.8-Flash-Next Independently Hit the Same 3:1 Attention Ratio
Two Chinese AI labs independently converged on a 3:1 linear-to-full attention ratio, a 2048-token sparse budget, four gated residual streams, and Muon.
ALTK-Evolve: Agent Memory Gains Depend on Model Tier, Not Just Size
IBM Research tests memory injection across 8 models on AppWorld: weaker models gain +16.1pp at +5% token cost via retrieval; strong models need the full set.
IFM K2 Horizon: Six Apache 2.0 Models, 0.9B to 375B, With Self-Audit
IFM releases six open-weight models from 0.9B to 375B, plus training corpus, code, and a self-published reward-hacking audit that corrects 70.2% to 66.9%.