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

marsbitPublicado a 2026-08-24Actualizado a 2026-08-24

Resumen

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

Criptos en tendencia

Preguntas relacionadas

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.

Lecturas Relacionadas

PeaqOS y World ID implementan pruebas ZK en robots autónomos

PeaqOS y World ID han integrado pruebas de conocimiento cero (ZK) en robots autónomos, permitiendo que las máquinas verifiquen que interactúan con personas reales y únicas sin recopilar nombres, fotos u otros datos personales. Disponible a través de robotic.sh, esta actualización permite a los dispositivos conectados solicitar y verificar directamente las pruebas de World ID. El sistema utiliza tecnología de "prueba de conocimiento cero", donde una persona puede confirmar su condición humana manteniendo la privacidad de su identidad. Esto resuelve el desafío de verificar la autenticidad del usuario en interacciones con robots de reparto, máquinas compartidas o sistemas autónomos, sin depender de códigos PIN, contraseñas o documentos de identificación que puedan ser robados o requieran recopilar información personal. World ID proporciona una prueba criptográfica de que el usuario es una persona real. PeaqOS actúa como capa de coordinación, permitiendo a los dispositivos usar World ID a través de identificadores descentralizados y un mercado de dispositivos. Un robot puede solicitar la verificación, recibir una prueba de conocimiento cero y registrar una entrada auditable de la interacción, todo sin revelar datos subyacentes que identifiquen a la persona. El sistema también admite la verificación de unicidad para hacer cumplir normas como "un artículo por persona". Un caso de ejemplo es la entrega autónoma de medicamentos: el paciente se verifica en la World App al hacer el pedido, el farmacéutico verifica antes de cargar el medicamento y el robot verifica al paciente en la entrega antes de desbloquear el compartimento. Robots de muestras promocionales o máquinas compartidas podrían usar el sistema de manera similar para garantizar un artículo por persona o permitir acceso sin crear cuentas. La integración ya está disponible para robots y dispositivos que operan en PeaqOS a través de robotic.sh, permitiendo que los sistemas autónomos confirmen interacciones con personas reales mientras minimizan la información de identidad que reciben o almacenan.

cryptonews.ruHace 26 min(s)

PeaqOS y World ID implementan pruebas ZK en robots autónomos

cryptonews.ruHace 26 min(s)

Trading

Spot

Artículos destacados

Cómo comprar ONE

¡Bienvenido a HTX.com! Hemos hecho que comprar Harmony (ONE) sea simple y conveniente. Sigue nuestra guía paso a paso para iniciar tu viaje de criptos.Paso 1: crea tu cuenta HTXUtiliza tu correo electrónico o número de teléfono para registrarte y obtener una cuenta gratuita en HTX. Experimenta un proceso de registro sin complicaciones y desbloquea todas las funciones.Obtener mi cuentaPaso 2: ve a Comprar cripto y elige tu método de pagoTarjeta de crédito/débito: usa tu Visa o Mastercard para comprar Harmony (ONE) al instante.Saldo: utiliza fondos del saldo de tu cuenta HTX para tradear sin problemas.Terceros: hemos agregado métodos de pago populares como Google Pay y Apple Pay para mejorar la comodidad.P2P: tradear directamente con otros usuarios en HTX.Over-the-Counter (OTC): ofrecemos servicios personalizados y tipos de cambio competitivos para los traders.Paso 3: guarda tu Harmony (ONE)Después de comprar tu Harmony (ONE), guárdalo en tu cuenta HTX. Alternativamente, puedes enviarlo a otro lugar mediante transferencia blockchain o utilizarlo para tradear otras criptomonedas.Paso 4: tradear Harmony (ONE)Tradear fácilmente con Harmony (ONE) en HTX's mercado spot. Simplemente accede a tu cuenta, selecciona tu par de trading, ejecuta tus trades y monitorea en tiempo real. Ofrecemos una experiencia fácil de usar tanto para principiantes como para traders experimentados.

863 Vistas totalesPublicado en 2024.12.12Actualizado en 2026.06.02

Cómo comprar ONE

Discusiones

Bienvenido a la comunidad de HTX. Aquí puedes mantenerte informado sobre los últimos desarrollos de la plataforma y acceder a análisis profesionales del mercado. A continuación se presentan las opiniones de los usuarios sobre el precio de ONE (ONE).

活动图片