NVIDIA's AI Sweeps ARC-AGI-3, Chinese-Led Team Aces All 183 Levels in One Go

marsbitPubblicato 2026-08-24Pubblicato ultima volta 2026-08-24

Introduzione

NVIDIA's general-purpose coding agent AVO has achieved a perfect 100.00 RHAE score on the ARC-AGI-3 benchmark. It solved all 183 levels across 25 game environments in just 6,624 steps. ARC-AGI-3 is a notoriously difficult test where agents are placed into unfamiliar games with no instructions, forcing them to deduce rules and goals through trial and observation. Top models like Claude Opus 5 typically score only around 30% when acting alone. AVO's breakthrough comes not from improving the underlying AI model (Claude Opus 5), but from adding an intelligent external framework or "harness" around it. This framework addresses three key failure modes: misunderstanding global rules, misapplying familiar mechanics, and failing to learn correctly from success. Two core mechanisms drive AVO's performance: 1. **Persistent Memory:** It stores past attempts, compiler outputs, and reasoning across tasks, preventing the model from resetting and re-exploring dead ends when its context window fills. 2. **Supervisor Agent:** A separate module monitors the main agent's progress, intervening to redirect strategy when it gets stuck or repeats unproductive actions. Notably, AVO processed the visual game environments using a pure 64x64 text grid representation, without any image tokens. Originally developed for GPU kernel optimization, AVO autonomously evolved CUDA code for 7 days, producing attention kernels that outperformed NVIDIA's own cuDNN and the leading open-source implementation, F...

Just moments ago, NVIDIA's general-purpose coding agent AVO achieved a perfect score on ARC-AGI-3!

It cleared all 183 levels across 25 game environments, using only 6624 steps in total, achieving an RHAE score of 100.00.

It's important to note that ARC-AGI-3 is notoriously unforgiving. It drops the agent directly into an unfamiliar game, providing no rules or objectives, forcing it to press, observe, and guess on its own.

Some environments allow movement up, down, left, or right, navigating through corridors; hitting a dark blue block rotates the entire screen 90 degrees. Others don't even allow movement, only clicking, relying on clicks to cycle tile colors into the target pattern.

Each environment has at least six levels, getting progressively harder; a level solvable in five steps at the beginning might require fifty steps by the sixth level.

The agent only has access to a 64×64 grid and a few buttons.

Cutting-edge models trying to brute-force their way through simply cannot handle it.

The model used by AVO this time was Claude Opus 5. However, when tested alone, its score was only 30.16%, which still made it the official top-ranking model on the leaderboard.

The ARC Prize team analyzed replays from the previous generation and summarized three typical types of errors.

  • First, understanding locally but not globally.
  • Second, forcing unfamiliar mechanics to fit familiar game patterns.
  • Third, passing a level without actually learning.

The third type is the most critical. Opus once cleared the first level of ka59 in just 37 steps, but its understanding of the click mechanism was fundamentally wrong from the start. When it reached the second level, it stubbornly clung to that incorrect theory and eventually got stuck.

NVIDIA's approach was to leave the model untouched and only add an outer layer.

Thus, the same Claude Opus 5's score jumped directly from 30 points to a perfect score.

This immediately caused an uproar on X. Posts like "ARC-AGI-3 has fallen" and "Time to find a new leaderboard to climb" flooded the feed, while others praised NVIDIA's move as absolutely brilliant.

Given this momentum, the next model-level leap might not come from waiting for a new model, but from an update to the harness.

The 100-Point Leap, Deconstructed into Just Two Components

So what exactly did NVIDIA put around the model to fill these three pitfalls at once?

Similar to the recently trending DeepSeek Harness and Codex Harness, AVO also manages the surrounding layer outside the model.

This includes what context to provide, what tools to give, how to store state, how to handle feedback, what to do when stuck, and how to proceed after the context window is full, among other things.

Specifically regarding mechanisms, there are two key components that truly make a difference.

The first is persistent memory.

The biggest challenge in long-horizon tasks is that the context window fills up.

Once full, the model's memory is wiped clean. Everything tried before, which paths were dead ends, what the profiler outputted—all gone.

When the next round begins, it starts from scratch, retracing the same mistakes.

AVO saves all of this: past implementation versions, results from each evaluation, outputs from compilers and analyzers, accumulated reasoning processes—everything is stored.

After a context reset, the agent continues from the current state rather than reconstructing the entire search from zero.

The second is a supervisor.

The main agent focuses on getting the work done, deciding what to look at, what to change, what to test, and what to submit.

The supervisor doesn't do the work; it only monitors the entire search trajectory from the sidelines. Once it detects stalled progress or the agent stuck in loops of unproductive actions, it intervenes to steer the main agent towards different strategies.

There's another detail.

AVO ran the entire ARC-AGI-3 challenge using pure text modality. Each frame observation fed to the model was a precise 64×64 text grid—no images at all, not a single visual token sent.

In other words, in a game filled with pixels, the model never actually "saw" the screen from start to finish.

This mechanism is what yielded the report card of clearing 183 levels in 6624 steps with a perfect RHAE score.

NVIDIA's conclusion from this is that long-horizon capability has never been something a model possesses alone; it's something the entire system assembles.

Memory determines what carries over to the next round, tools determine what actions the agent can perform, and feedback lets it know if it's going astray.

And the ability to get back on track when a hypothesis is disproven determines whether the job can continue.

It's First Revolutionizing NVIDIA's Own Domain

The interesting part is that AVO wasn't built for gaming at all. Its main battleground is GPU kernel optimization.

On March 25th this year, NVIDIA uploaded a paper to arXiv titled "AVO: Agent-based Variational Operators for Autonomous Evolutionary Search."

Paper address: https://arxiv.org/abs/2603.24517

Two words in the title are key: evolutionary search and variational operators.

Evolutionary search itself isn't complicated. You hold a batch of candidate code, modify it, run it, keep the fastest version, then continue modifying, pushing forward generation by generation.

The component responsible for the "modify" step is called a variational operator in evolutionary algorithms. In the past, it was hard-coded, with modifications predetermined by humans; later, using LLMs to modify was just generating a piece of code per call.

AVO's approach is to replace the entire variational operator with an autonomous agent.

This way, it can not only consult CUDA programming guides and PTX architecture documentation, run tests, read profiler outputs, but also self-diagnose correctness failures, and then decide where to modify next.

The team deployed it on B200, tasked with optimizing an attention kernel—the most heavily squeezed operator in Transformers. Then they stepped back.

AVO autonomously ran continuously for 7 days, exploring over 500 optimization directions, ultimately submitting 40 valid kernel versions.

The resulting multi-head attention kernel was up to 3.5% faster than NVIDIA's own closed-source cuDNN and up to 10.5% faster than the state-of-the-art open-source implementation FlashAttention-4.

Subsequently, it applied the same optimization to GQA, the mainstream architecture for current large models. This time, after autonomous runs of about 30 minutes, the new kernel was 7.0% faster than cuDNN and 9.3% faster than FlashAttention-4.

Handwriting CUDA kernels has always been one of the highest barriers in this ecosystem, and AVO is the first to surpass it.

And the 25 games in ARC-AGI-3 run on this same system.

Tuning kernels and playing games sound like completely unrelated tasks. But in NVIDIA's view, the same underlying loop powers both.

The agent first forms a hypothesis from incomplete evidence, acts to test it, observes results, stores useful state, and refines its understanding of the problem. If the hypothesis is wrong, it falls back and rethinks, then rolls forward iteration after iteration.

In NVIDIA's own words, what transfers isn't domain knowledge, but the mechanism that sustains long-horizon autonomous advancement.

It Was Built by a Team of Chinese Origin

Looking at the author list of the AVO paper reveals a string of very familiar names.

With 23 authors, it almost assembles key figures from the open-source deep learning infrastructure of the past decade.

One of the co-first authors, Bing Xu, is a Distinguished Engineer at NVIDIA and the creator of MXNet. Earlier, he was also the fourth author of the original 2014 GAN paper, co-authored with Yoshua Bengio under the University of Montreal.

Tianqi Chen, creator of TVM and XGBoost, is also on the list. The TVM connection leads to Luis Ceze; the two co-founded OctoAI, which NVIDIA acquired in September 2024, with Ceze subsequently joining NVIDIA to continue work on machine learning compilers.

Further down are Ye Zihao, creator of FlashInfer, and CUDA compiler veteran Vinod Grover.

Overseeing the project is Humphrey Shi, NVIDIA's VP of High-Performance AI and also a professor at Georgia Tech. Another co-first author, Zhifan Ye, is a Ph.D. student at Georgia Tech.

The blog post announcing this result bears five names, four of which are of Chinese origin: besides Humphrey Shi, there are Terry Chen, Zhifan Ye, and Yeyin Zhu. The remaining author is Jean-Francois Puget, a two-time Kaggle Grandmaster at NVIDIA.

The most interesting anecdote comes from Bing Xu's earlier self-description on X.

A year and a half ago, when he and Terry Chen first started working on agent programming at NVIDIA, neither of them knew GPU programming.

Precisely because they didn't know, they aimed from day one to build a fully automatic system requiring no human intervention, coining the term "blind programming" for this approach.

A year and a half later, this system, operating without human direction, outperformed kernels that human experts had optimized for months.

The Bill Ultimately Lands on Jensen's GPUs

Why would a company that sells graphics cards spend a year and a half building an agent that requires no human input?

Because this shell layer can work with anyone's model.

AVO has been tested across models. On the same levels, pairing with GPT-5.6 Sol took less time, while pairing with Opus 5 was more step-efficient.

NVIDIA doesn't make money selling models, but it can dominate this layer. This aligns with its overall strategy in recent years.

On the model side, it pursues open source. The Nemotron 4 project, advancing this August, targets trillion-parameter scale, with training expected to finish in the fall. The models will be given away for free, with revenue coming from subsequent GPU and software stack sales.

On the compute side, long-horizon agents are precisely the kind of workload it wants most. Jensen Huang's judgment at GTC this year was that the inference inflection point has arrived. Compute demand has grown about 10,000-fold in the past two years, while usage has only grown about 100-fold—the difference is being consumed by inference.

So whose model is used isn't important. As long as agents take on longer, heavier tasks, the bill will ultimately land on their graphics cards.

As for the term "100 points," it is indeed depreciating rapidly at the moment.

In March, no one could score even 1 point. Tycho was the first to achieve a perfect score at the end of July, VISTA achieved it again on August 5th, and AVO's result is already the third perfect score in six weeks—all three exclusively powered by Claude Opus 5.

But what AVO accomplished won't shrink in value because of this.

An architecture born to squeeze out the last few percentage points of performance from FlashAttention on B200 was almost directly transplanted to a pixel game—and it worked.

The only things changed were the task interface and evaluation method; the core loop remained untouched line by line.

As NVIDIA wrote at the end of its blog post, models are important, but they are not the entirety of an agent.

References:

https://developer.nvidia.com/blog/nvidia-avo-reaches-100-on-arc-agi-3-demonstrating-a-frontier-level-general-purpose-architecture-for-long-horizon-autonomous-agents/

This article is from the WeChat public account "New Zhiyuan," author: ASI Apocalypse, editor: Moses

Crypto di tendenza

Domande pertinenti

QWhat is the key achievement of NVIDIA's AVO agent mentioned in the article?

ANVIDIA's AVO agent achieved a perfect score of 100.00 RHAE on the ARC-AGI-3 benchmark, successfully completing all 183 levels across 25 game environments in just 6,624 steps.

QAccording to the article, what were the two main mechanisms in AVO's external 'harness' that contributed to its success?

AThe two key mechanisms were Persistent Memory, which stores past attempts and data across context resets, and a Supervisor, which monitors the main agent's progress and redirects it when it gets stuck or loops.

QWhat was AVO's original purpose, as stated in the article?

AAVO was originally developed for GPU operator optimization, specifically to autonomously search for and generate highly optimized CUDA kernels, such as for attention mechanisms in Transformers.

QHow does the article connect AVO's performance to NVIDIA's business strategy?

AThe article states that NVIDIA's strategy involves focusing on the 'harness' layer (which can work with any AI model) and providing long-horizon workloads for its GPUs. As agents take on longer, more complex tasks, the computational demand ultimately translates to increased sales of NVIDIA's GPUs.

QWhat is a significant point made about the underlying model (Claude Opus 5) used by AVO?

AThe article highlights that while Claude Opus 5 alone scored only about 30% on the ARC-AGI-3 benchmark, when integrated into AVO's system (the 'harness'), its performance jumped to a perfect 100%, demonstrating that the system architecture is crucial for long-horizon agent capabilities.

Letture associate

PeaqOS and World ID Integrate ZK Proofs into Autonomous Robots

The integration of PeaqOS and World ID now allows autonomous machines to verify they are interacting with real, unique individuals without collecting names, photos, or other personal data. This update, available via robotic.sh, enables connected devices to directly request and verify World ID proofs. The system leverages zero-knowledge technology, letting a person prove they are human while maintaining the privacy of their identity. This addresses a key challenge for operators of delivery robots, shared machines, and autonomous systems: how to authenticate a user as genuine without relying on insecure PINs, pickup codes, or traditional identity checks that require personal data collection. Instead of obtaining identifying information, a device receives a cryptographic proof that the user is a real person. PeaqOS acts as a coordination layer, allowing devices to utilize World ID via decentralized identifiers and a device marketplace. A robot can request verification, receive a zero-knowledge proof, and register an auditable record of the interaction—all without exposing underlying personal data. The system also supports uniqueness verification, enabling machines to enforce rules like "one item per person" without maintaining user identity databases. A demonstrated use case involves autonomous medicine delivery: a patient verifies via the World App when placing an order, a pharmacist verifies before loading the medication, and the patient verifies again upon delivery so the robot can confirm the recipient is linked to the order before unlocking the compartment. Similarly, promotional robots could ensure one item per person, and shared vending machines could grant access to verified individuals without requiring accounts or personal data. This integration for PeaqOS-powered robots and devices minimizes the identity information collected or stored while allowing autonomous systems to confirm they are interacting with real humans.

cryptonews.ru27 min fa

PeaqOS and World ID Integrate ZK Proofs into Autonomous Robots

cryptonews.ru27 min fa

Trading

Spot

Articoli Popolari

Come comprare ONE

Benvenuto in HTX.com! Abbiamo reso l'acquisto di Harmony (ONE) semplice e conveniente. Segui la nostra guida passo passo per intraprendere il tuo viaggio nel mondo delle criptovalute.Step 1: Crea il tuo Account HTXUsa la tua email o numero di telefono per registrarti il tuo account gratuito su HTX. Vivi un'esperienza facile e sblocca tutte le funzionalità,Crea il mio accountStep 2: Vai in Acquista crypto e seleziona il tuo metodo di pagamentoCarta di credito/debito: utilizza la tua Visa o Mastercard per acquistare immediatamente HarmonyONE.Bilancio: Usa i fondi dal bilancio del tuo account HTX per fare trading senza problemi.Terze parti: abbiamo aggiunto metodi di pagamento molto utilizzati come Google Pay e Apple Pay per maggiore comodità.P2P: Fai trading direttamente con altri utenti HTX.Over-the-Counter (OTC): Offriamo servizi su misura e tassi di cambio competitivi per i trader.Step 3: Conserva Harmony (ONE)Dopo aver acquistato Harmony (ONE), conserva nel tuo account HTX. In alternativa, puoi inviare tramite trasferimento blockchain o scambiare per altre criptovalute.Step 4: Scambia Harmony (ONE)Scambia facilmente Harmony (ONE) nel mercato spot di HTX. Accedi al tuo account, seleziona la tua coppia di trading, esegui le tue operazioni e monitora in tempo reale. Offriamo un'esperienza user-friendly sia per chi ha appena iniziato che per i trader più esperti.

653 Totale visualizzazioniPubblicato il 2024.12.12Aggiornato il 2026.06.02

Come comprare ONE

Discussioni

Benvenuto nella Community HTX. Qui puoi rimanere informato sugli ultimi sviluppi della piattaforma e accedere ad approfondimenti esperti sul mercato. Le opinioni degli utenti sul prezzo di ONE ONE sono presentate come di seguito.

活动图片