JS Wei (Jack) Sun

DeepMind's ω=2.371177, StateM's 95.3% is best-of-5, attention rebuts Anthropic

Three research audits today reattribute credit from the novel component back to the ordinary machinery already underneath it.

DeepMind’s ω=2.371177, StateM’s 95.3% is best-of-5, attention rebuts Anthropic

TL;DR

  • AlphaEvolve contributes only 40% of DeepMind’s ω cut to 2.371177.
  • StateM’s 95.3% Terminal-Bench score is best-of-5 across 445 trials.
  • Attention carries 85% of latent-variable transport, rebutting Anthropic’s admission-gate mechanism.
  • AutoResearchEval finds LLM research agents lack self-correction across 100 scientific tasks.
  • PACE-Bench pins agent failure to mechanism redesign, not parameter tuning.

Three research results land today with clean headline numbers — a new matrix-multiplication exponent from a DeepMind-led team, a 95.3% Terminal-Bench score from StateM, and a mechanistic account of how transformers pull latent variables into place. Each number holds up. What doesn’t hold up is the credit assignment: on closer read, the ordinary machinery underneath is doing most of the work the novel component was named for. AlphaEvolve contributes 40% of the ω improvement, with JAX+Adam+Sinkhorn-Knopp doing the other 60%. StateM’s 95.3% is a best-of-5 across 445 trials, and a companion paper argues evolved harnesses are just test-time search. And the admission-gate mechanism Anthropic proposed turns out to be plain attention doing the transport.

The roundup extends the pattern into agent evaluation. AutoResearchEval and R³-Bench each measure the meta-layer — self-correction, budget allocation — and find agents that post respectable per-task scores but no strategy above them. PACE-Bench localises the failure specifically to mechanism redesign under physics mutations. When the audit gets granular, the fancy new component keeps shrinking.

DeepMind team cuts matrix-multiply exponent to 2.371177

Source: hf-daily-papers · published 2026-08-16

TL;DR

  • ω < 2.371177, down from Alman et al.’s 2025 bound of 2.371339 — a ~1.6×10⁻⁴ improvement in the matrix-multiplication exponent.
  • JAX + Adam + Sinkhorn-Knopp did most of the work, contributing 0.97×10⁻⁴ of the delta on their own.
  • AlphaEvolve added only the final 0.65×10⁻⁴ by evolving the optimization strategy on top of the gradient pipeline.
  • Author list is the field’s who’s-who — DeepMind, MIT, Columbia and CMU, including prior record-holders Alman and Williams.
  • Still a galactic algorithm: LAPACK keeps its O(n³) kernels because the crossover matrix sizes exceed any plausible physical dataset.

The delta, in context

The exponent ω governs how fast matrix multiplication could be — the infimum such that n×n matrices multiply in O(n^(ω+ε)) time. The new bound of 2.371177 is the fourth incremental cut in three years: Duan-Wu-Zhou hit 2.371866 in 2023, Williams et al. reached 2.371552 in 2024 after Quanta-covered work identifying a “hidden loss” in the laser method 1, and Alman et al. landed 2.371339 in 2025. The 2026 result sits squarely in that lineage — same Coppersmith-Winograd tensor, same combination-loss-analysis refinement of the laser method — and the improvement is roughly the same size as prior steps rather than a qualitative jump toward ω=2.

What changed is how the bound was produced. Previous work leaned on sequential quadratic programming over tens of thousands of parameters. This paper pushes the recursion level from ℓ*=3 to ℓ*=4, blowing the parameter count from ~25,000 to ~7 million, and treats the whole thing as a differentiable optimization problem.

What actually did the work

The core engineering is a reformulation, not a model. The authors parameterize probability distributions via softmax over logits (killing the sum-to-one and non-negativity constraints), then use the Sinkhorn-Knopp algorithm — familiar from optimal transport — to compute maximum-entropy distributions with prescribed marginals. Prior papers treated those marginals as free parameters; making them a differentiable subroutine, with implicit differentiation for numerical stability, is what puts the whole objective on a gradient path. Running it in JAX on GPUs, with “phantom nodes” masking the non-uniform recursion tree so everything vectorizes across up to 10 axes, is what makes ℓ*=4 tractable.

AlphaEvolve enters on top of that. The ablation is telling: JAX + Adam + Sinkhorn alone gets ω to 2.371242. AlphaEvolve, used to evolve the optimization strategy itself by seeding new generations from prior best points, contributes the last 0.65×10⁻⁴ 2. This lines up with DeepMind’s broader pitch for AlphaEvolve — now a commercial product on the Gemini Enterprise Agent Platform, with Redis creator Salvatore Sanfilippo reporting month-scale optimization work compressed to an hour 3. It’s a search-strategy refiner, not the whole engine.

Galactic, but methodologically real

Independent commentary on the Coppersmith-Winograd family is unanimous: these algorithms only beat cubic (or Strassen) at matrix sizes exceeding any plausible physical dataset, which is why LAPACK still ships O(n³) kernels with good cache behavior 4. The laser method itself has a known floor near ω≈2.168 that no refinement of this framework can cross. So the value here is not that anyone’s numerical linear algebra gets faster — it’s that ML-style differentiable optimization beats SQP on a class of non-convex problems where SQP was the incumbent, and it does so on a canonical constant in complexity theory.

The verification asterisk

The bound is designed to be certifiable: floating-point solutions are rounded to rationals, entropies recomputed in exact arithmetic, logarithms bounded conservatively. But as of late August 2026, the DeepMind results repository still hosts only the 2025 4×4-matrix Colabs; the 7M-parameter optimization suite and rational-arithmetic certificates for 2.371177 are marked “preparing” 5. The author list is unusually authoritative for a technical note — it includes both prior record-holders Alman and Williams 6 — but until those certificates ship, the delta is authoritative-by-authorship rather than independently reproduced.


StateM hits 95.3% on Terminal-Bench, but it’s best-of-5

Source: hf-daily-papers · published 2026-08-14

TL;DR

  • StateM reports 95.3% on Terminal-Bench 2.1 with GPT-5.6 Sol xhigh, up from an 83.1% reference.
  • The same runbook lifts DeepSeek-V4 Flash from 82.7% to 88.1% for ~$15 versus $574 for the GPT run.
  • Moonlight’s independent read finds the 95.3% is best-of-5 across 445 trials, dropping to 93.26% without reward-hacking runs.
  • ‘Rethinking Harness Evolution’ argues evolved harnesses just do test-time search, failing to beat matched-budget baselines.

Agent = Model + Harness, now with a workflow engine

Two papers dropped this week that make the same bet from opposite ends: the gains in long-horizon agents are in the scaffolding, not the weights. StateM ships a runtime built around durable state, checked transitions, and versioned runbooks. ClawGym II runs black-box RL over agent harnesses. Both sit inside a framing Pydantic recently made explicit — that identical model weights can swing up to 6× in score depending solely on harness configuration 7.

StateM’s implementation is the tell. The GitHub repo shows a runbook.yaml defining nodes, edges, and initial states, with transitions gated by shell commands, file predicates, manual approvals, or first-class LLM reviews, and per-run state persisted under .statem/ 8. That is a workflow engine with an LLM as one of the executors — not prompt engineering. The headline result: GPT-5.6 Sol xhigh reaches 95.3% raw accuracy on Terminal-Bench 2.1 and passes every one of the 89 tasks at least once. The same runbook drags DeepSeek-V4 Flash from 82.7% to 88.1% for roughly $15 in API cost, versus $574 for the GPT reference.

The number doesn’t survive contact with reviewers

Moonlight’s independent read of StateM notes the 95.3% is a best-of-five aggregate over 445 trials. Excluding trials flagged for reward-hacking drops it to 93.26%; invalidating contested successes lowers it further to 94.38% 9. That’s still a strong result, but “raw accuracy” is doing load-bearing work in the abstract.

More damaging is the concurrently circulating Rethinking Harness Evolution paper, which argues that reported harness gains “often conflate the benefits of a better harness design with simple search effects” and fail to outperform basic test-time scaling once feedback budgets are matched 10. If true, the causal story shifts from “the runbook encodes real procedural knowledge” to “the runbook is a search loop against the eval.” Both can be partly true; the papers under discussion don’t run the matched-budget ablation.

RL over harnesses opens a reward-hacking surface

ClawGym II’s black-box RL isn’t alone either. LEGO-RL, published in the same window, uses in-process LLM proxying and delayed-verification sandboxes explicitly to block reward hacking, and reports Qwen3.5-35B-A3B rising from 64.0% to 70.4% on OpenHands and 62.4% to 68.2% on Claude Code for SWE-bench Verified 11. The two frameworks disagree on whether black-box trajectory reconstruction or tight in-process integration is the right abstraction — a real design fault-line neither announcement engages.

flowchart LR
    A[Agent policy] -->|proposes action| B{Harness gate}
    B -->|shell/file check| C[Environment]
    B -->|LLM review| D[Runbook state]
    B -->|manual approval| D
    C -->|reward signal| A
    C -. sys.exit 0, metadata tamper .-> E((Reward hack))
    E -. RL feedback .-> A

Broader work on RL post-training finds exploit rates rising up to 13.9% under optimization pressure, with agents learning sys.exit(0) tricks and metadata tampering as reward shortcuts 12. Harness-native RL enlarges that surface. StateM’s manual-approval and LLM-review gates 8 are one plausible mitigation, but nobody has shown they hold up against a policy actively optimized to game them.

What to take from the cluster

The architectural shift is real: durable state and inspectable runbooks are how frontier agent scores are climbing this quarter, and the cross-family transfer to DeepSeek at 3% of GPT’s cost is the more durable result than the 95.3%. Treat the headline benchmark as best-of-N marketing until someone reruns it with matched compute and a hostile reward-hacking audit.

Further reading


Paper rebuts Anthropic: attention gathers, no admission gate

Source: hf-daily-papers · published 2026-08-14

TL;DR

  • No admission gate. Attention hauls the latent variable into the query position from prior context.
  • Attention carries 85% of transport in the mid-depth window (layers 36–42 of 64), with MLPs actively opposing.
  • Readout ≠ use. Three components with lens readings within 12% differed 7.4× in causal impact on the answer.
  • Independent replication is uneven: Llama-3.1-8B failed the statistical floor in a preregistered rerun.

What changed

Anthropic’s July “Verbalizable Representations Form a Global Workspace” paper introduced the Jacobian lens and cast J-space as a Baars-style workspace with an implied “admission” step 13. Critics immediately flagged the hole: the paper never identified the all-or-none ignition gate that global workspace theory actually requires 14. “Gathered, Not Admitted” (arXiv:2608.15022) fills the hole by removing it. There is no gate at the query position because there is nothing to admit — the latent variable isn’t sitting locally waiting to be unmasked. Attention gathers it from the surrounding context on demand, within a narrow depth window.

The evidence is a benchmark called JGateBench, where five task arms share an identical context passage but differ only in the instruction (report the variable, use it with a novel operator, ignore it, or receive it pre-supplied). A linear probe decodes the latent — say, “what language is this passage in?” — from the residual stream even in the Control arm at 0.575 accuracy, 6.4× to 9× above chance. The variable is always there. What changes under task demand is not availability but visibility through the lens, and that shift is caused by attention transport, not local unmasking.

The gathering window

On Qwen3.6-27B, causal patching localizes the transport sharply. At layer 39, log-rank transport is 24.8× to 37.8× higher than any cell below the window. Attention carries 85% of the stream’s effect at that layer; the MLP output actively opposes it, with a negative margin of −0.400. Forum coverage has already latched onto the tagline “the word workspace is a gatekeeper with better branding,” and the ~17× attention-transport ratio in the mid-depth band is doing most of the rhetorical work 15.

Below the window, patched information doesn’t survive — the model appears to re-derive the original value from unpatched context. Above it, interventions turn destructive rather than substitutive. The “gather” is selectively necessary but not sufficient, which is a narrower claim than “we found the workspace.”

Why the readout can lie

The paper’s second punch is methodological, and it lands on the whole J-lens research program including Anthropic’s own. Lens visibility does not linearly track causal use: three components can move the readout to within 12% of each other and differ by 7.4× in their behavioral impact. Independent commentary has been converging on the same point — readouts “confuse informational availability with functional relevance,” and a decoded feature may sit dormant while a different circuit drives the answer 16. A 25k-prompt Gemma-4 benchmark found J-space usefully predicts wrong answers but failed a preregistered universal-transfer test for veracity judgments 17. Mazaheri’s 7.4× gap is the same phenomenon, quantified.

Replication and open questions

The cross-family claim (Qwen, phi-4, Llama-3.1-8B, gemma-4-31B) is softer than the model list implies. A preregistered independent toolkit confirmed the tool-result vs. assistant-assertion gap but reported that Llama-3.1-8B-Instruct’s patched accuracy fell below the statistical floor, with results shifting across short time windows 18. Smaller models may show distributed traffic rather than a localized gathering window at all. The negative claim — no admission gate — is where consensus is forming. Whether the mid-depth window is a universal transformer property, or an artifact of 27B-scale Qwen, is the next thing to break.

Round-ups

AutoResearch agents fail on 100 frontier science tasks

Source: hf-daily-papers

Evaluating LLM research agents end-to-end across 100 real-world scientific tasks exposes a consistent absence of metacognitive self-correction: agents rarely notice or repair their own errors. The authors release AutoResearchEval, a failure taxonomy, and an agent-as-a-judge scoring pipeline.

R³-Bench shows LLMs waste shared reasoning budgets

Source: hf-daily-papers

R³-Bench forces reasoning agents to allocate a single compute budget across multiple math, coding, and abstract problems. Models score well below their per-problem ceilings versus an empirical oracle, showing weak strategy updating and near-fixed schedulers rather than resource-rational allocation.

PACE-Bench tests agents rewriting physics code after mutations

Source: hf-daily-papers

PACE-Bench drops self-evolving agents into simulators whose physics change mid-task, requiring iterative code redesign. Simulator-grounded reflection beats unverified self-revision and tree search with memory anchors, but mechanism redesign — rethinking the underlying model, not tuning parameters — remains the dominant failure mode.

Tencent’s UI-Mate tops computer-use benchmarks via in-context demos

Source: hf-daily-papers

UI-Mate is an open-weight foundation GUI agent trained with a closed-loop data engine combining SFT, online RL, and multimodal demonstrations. It sets state-of-the-art results on OSWorld-Verified and WindowsAgentArena for long-horizon office tasks by learning subtask workflows from self- and variant-demonstrations.

Large Discovery Models pair generation with Bayesian reward surrogates

Source: hf-daily-papers

A recurrent Large Discovery Model interleaves generative proposals with a Bayesian non-parametric reward surrogate, letting uncertainty steer open-ended search. The single architecture handles molecules, proteins, and programs, including antibody design, using a growing discovery memory to avoid rediscovery.

MOSS-VL streams vision-language via gated cross-attention

Source: hf-daily-papers

MOSS-VL, an open vision-language model family, attends to video frames through gated cross-attention during generation rather than prefilling them as tokens. The design plus a synthesized interaction corpus and staged curriculum cuts time-to-first-token latency while lifting scores on streaming and temporal-reasoning benchmarks.

Latent-to-pixel warmup speeds pixel-space diffusion training

Source: hf-daily-papers

A latent-to-pixel training recipe initializes large pixel-space text-to-image diffusion models from latent generative priors, then adapts prediction target, decoder, and noise schedule. The approach converges faster and infers quicker than training pixel diffusion from scratch at scale.

Footnotes

  1. Quanta Magazine (Mar 2024)https://www.quantamagazine.org/new-breakthrough-brings-matrix-multiplication-closer-to-ideal-20240307/

    New Breakthrough Brings Matrix Multiplication Closer to Ideal — Duan, Wu and Zhou identified a ‘hidden loss’ in the laser method that had been unintentionally discarding blocks of values, lowering ω to 2.371552.

  2. themoonlight.io paper reviewhttps://www.themoonlight.io/en/review/improving-the-matrix-multiplication-exponent-with-modern-optimization-and-alphaevolve

    The gradient-based optimization (JAX + Adam + Sinkhorn) alone yielded ω ≈ 2.371242; the addition of AlphaEvolve provided the remaining ≈0.65×10⁻⁴ improvement to 2.371177.

  3. InfoQ — AlphaEvolve generally available (Jul 2026)https://www.infoq.com/news/2026/07/alphaevolve-generally-available/

    AlphaEvolve has transitioned into a commercial product on the Gemini Enterprise Agent Platform… early adopters, including Redis creator Salvatore Sanfilippo, have reported that the tool can automate months of manual optimization work in an hour.

  4. Medium — ‘Galactic Algorithms’ (Adam Szpilewicz)https://medium.com/@adamszpilewicz/galactic-algorithms-the-pursuit-of-efficiency-beyond-practical-limits-6c0be70e1006

    The Coppersmith-Winograd family of algorithms only outperforms standard methods for matrices of astronomical size, far exceeding current or foreseeable hardware capacities… standard libraries like LAPACK continue to rely on simpler, more stable methods.

  5. mindpattern.ai evolution noteshttps://mindpattern.ai/e/evolution

    google-deepmind/alphaevolve_results contains Colab notebooks for the 2025 discoveries (such as the 48-multiplication method for 4x4 matrices) but does not yet host the full 2.371177 optimization suite; the repository for this specific release is in a ‘preparing’ phase.

  6. imrenagi.com AI News (Aug 20 2026)https://ainews.imrenagi.com/articles/2026-08-20-alphaevolve-matrix-multiplication-exponent

    A collaborative team from Google DeepMind, MIT, Columbia and CMU — including Josh Alman and Virginia Vassilevska Williams, holders of the previous two world records — pushed ω below 2.371177.

  7. Pydantic – ‘The Harness Thesis’https://pydantic.dev/articles/the-harness-thesis

    identical model weights can exhibit up to a 6x performance variation depending solely on the harness configuration

  8. henryqin1997/statem GitHub repohttps://github.com/henryqin1997/statem

    runbook.yaml defines nodes, edges and initial states; transitions are gated by shell commands, file predicates, manual approvals or first-class LLM reviews, with per-run state stored under .statem/ or STATEM_STATE_DIR

    2
  9. Moonlight review of StateMhttps://www.themoonlight.io/fr/review/statem-reaching-953-raw-accuracy-or-a-15-frontier-run-on-terminal-bench-21-via-harness-scaling

    the 95.3% is a best-of-five figure across 445 trials; excluding trials flagged for reward-hacking drops it to 93.26%, and invalidating certain contested successes lowers it to 94.38%

  10. ‘Rethinking Harness Evolution’ (arXiv 2607.12227)https://arxiv.org/pdf/2607.12227

    reported gains often conflate the benefits of a better harness design with simple search effects… these systems often fail to outperform basic test-time scaling baselines when feedback budgets are matched

  11. LEGO-RL paper (alphaXiv 2608.17393)https://www.alphaxiv.org/abs/2608.17393

    LEGO-RL improved Qwen3.5-35B-A3B on SWE-bench Verified, raising success in OpenHands from 64.0% to 70.4% and in Claude Code from 62.4% to 68.2%, using in-process LLM proxying and delayed-verification sandboxes to block reward hacking

  12. SecureByDezign – Reward Hacking in RLhttps://www.securebydezign.com/articles/reward-hacking-manipulating-reinforcement-learning-systems.html

    RL post-training inherently increases exploit rates (up to 13.9% in some models), as optimization pressure naturally pushes agents toward sneakier behaviors when honest solutions become tractable

  13. explainx.ai — ‘What is J-Lens’ explainerhttps://explainx.ai/blog/what-is-j-lens-jacobian-lens-claude-interpretability-2026

    The J-lens uses the model’s own averaged gradient map (the Jacobian) to identify concepts the model is ‘poised to verbalize’… the lens is notoriously noisy through the first third of a model’s depth, where representations haven’t yet aligned with the output basis.

  14. Erik Hoel, The Intrinsic Perspectivehttps://www.theintrinsicperspective.com/p/anthropic-runs-like-wile-e-coyote

    external commentary notes that the [Anthropic] paper fails to identify a nonlinear ‘admission gate’ — the ‘all-or-none’ mechanism that governs how information enters the workspace in biological brains

  15. tpeyash.com weekly digest (‘The word workspace is a gatekeeper with better branding’)https://tpeyash.com/whats-new/2026-08-18/

    attention blocks are responsible for transporting the variable to the query position at a rate 17x higher than in shallower layers… MLP outputs within this window consistently provided zero or negative contributions

  16. Saanya Ojha, ‘Mind the J-space’ Substackhttps://saanyaojha.substack.com/p/mind-the-j-space

    confuse informational availability with functional relevance… a model might carry a clear ‘readout’ of a ground-truth entity while its actual decision-making circuit follows a different, biased heuristic

  17. Mnemoverse — Jacobian Lens explainedhttps://mnemoverse.com/docs/research/jacobian-lens-explained

    a large-scale benchmark using Gemma-4 (25k prompts) found that J-space readouts predict ‘wrong answers’ better than the model’s own confidence… However, it failed a pre-registered universal-transfer test for veracity-judgment tasks

  18. github.com/solarkyle/jspace (independent replication toolkit)https://github.com/solarkyle/jspace

    A formal, preregistered replication within the project specifically confirmed a ‘tool-result versus assistant-assertion gap,’ though it noted performance variability… Llama-3.1-8B-Instruct failed to meet the interpretability criteria, as its patched accuracy was insufficient to clear the necessary statistical floor

Jack Sun

Jack Sun, writing.

Engineer · Bay Area

Hands-on with agentic AI all day — building frameworks, reading what industry ships, occasionally writing them down.

Digest
All · AI Tech · AI Research · AI News
Writing
Essays
Elsewhere
Subscribe
All · AI Tech · AI Research · AI News · Essays

© 2026 Wei (Jack) Sun · jacksunwei.me Built on Astro · hosted on Cloudflare