NVIDIA HORIZON: A Hands-Free Agent that Evolves Git Worktrees and Hits 100% RTL Benchmark Completion

NVIDIA Research has released HORIZON, a hands-free agent framework designed specifically for hardware design. It treats the creation of hardware as a…

By AI Maestro July 4, 2026 4 min read
NVIDIA HORIZON: A Hands-Free Agent that Evolves Git Worktrees and Hits 100% RTL Benchmark Completion

NVIDIA Research has released HORIZON, a hands-free agent framework designed specifically for hardware design. It treats the creation of hardware as a process of evolving code within a repository. The system manages register-transfer level (RTL) instantiation by converting a structured Markdown harness into a project pack. A self-contained agent loop then operates on an isolated git worktree, committing a new version only after an executable acceptance gate is passed.

The team reports 100% completion across every evaluated RTL benchmark suite. They also state plainly that agentic hardware design is not yet solved.

What is HORIZON?

Single-turn code generation hits a ceiling on executable design tasks. Plausible Verilog is insufficient for real hardware. Correctness depends on cycle-level behaviour, reset conventions, bit widths, and simulator feedback.

HORIZON hosts each design problem as a version-controlled repository rather than a one-shot prompt. The only required input is a structured Markdown harness. That harness carries four components: a goal, domain-knowledge directions, an evaluator specification, and an acceptance predicate.

A bootstrap agent compiles the harness into a project pack. The research team writes this as p = (πagent, Ep, Ap, Γp, Ωp). Those terms cover the agent policy, the executable evaluator, and the acceptance predicate. They also cover the version-control policy and the domain skills.

For RTL, the evaluator Ep may include compilation, simulation, coverage extraction, and assertion or testbench checks. In other domains, that same slot could hold unit tests, theorem provers, profilers, or synthesis tools. Problems are therefore defined over git worktrees, not over a fixed repository type.

How the Repository-Level Loop Works

After bootstrap, the loop runs without further human input. Each cycle plans a target, edits the worktree, invokes tools, and runs the evaluator. The acceptance predicate then decides one thing: commit the new version, or log the failure.

Git is the substrate here, not incidental bookkeeping. Diffs expose proposed state changes. Commits define accepted checkpoints. Notes attach evaluator evidence. The log recovers the full trajectory.

The loop leans on native git commands to keep tracing cheap. Staged edits are inspected with git diff –cached. Each accepted attempt becomes a git commit whose notes carry the verdict and reward. Successful commits become positive repair examples. Rejected attempts are logged as negative examples. The repository history is the experience buffer, not a separate datastore.

The research team borrow semi-Markov decision process vocabulary for one narrow purpose. It names the recorded objects, nothing more. A ‘state’ is a versioned snapshot of the repository. An ‘option’ is one episode between two checkpoints. HORIZON does not train or update an RL policy in this work. The agent backbone stays fixed throughout a campaign.

Session reuse keeps cost down. HORIZON holds a persistent model session across iterations. The harness, project pack, and stable sources are served from the provider’s prompt cache. Newly billed tokens are then dominated by the current diff and the latest evaluator output.

Where HORIZON Sits Among Self-Evolving Systems

HORIZON extends a lineage of repository-scale self-evolution. Earlier systems evolved the software that engineers run. HORIZON instead evolves the hardware artifacts that engineers create.

SystemObject evolvedDomainEvaluation signal
AlphaEvolve (2025)Algorithmic kernelsScientific and algorithmic discoveryAutomated evaluators
SATLUTION (2025)Full SAT-solver repositoriesSAT solvingDistributed correctness and runtime
ABCEvo (2026)ABC logic-synthesis systemEDA softwareCorrectness and QoR
HORIZON (this work)RTL sources, testbenches, verification artifactsHardware designCompile, simulate, coverage, assertion checks

All four share one principle. A candidate change is admitted only when executable evidence supports it.

Benchmark Results

The backbone is GPT-5.3, fixed for all experiments. Every result uses single-agent, hands-free mode. Campaigns ran on an AMD EPYC 9334 32-core host with 512 GB of RAM.

The evaluation spans ChipBench, RTLLM-2.0, and Verilog-Eval. It adds nine CVDP code- and verification-generation categories, CID 002 to 016. CVDP contains 783 human-authored problems across 13 task categories (Pinckney et al., 2025).

An iteration is one automated outer step. The agent edits the worktree, runs the evaluator, then commits a pass or logs a rejection. HORIZON reaches a 100% pass rate on every suite. The one residual miss is a ChipBench specification-harness defect, not an agent failure.

The aggregate first-iteration pass rate is 47.8%. Iteration-0 is not a standalone Pass@1 measurement. It is the repository state after the first agent iteration. The agent may defer debugging and repair to later iterations by design.

Suite / categoryFocusIter. 0Conv. iter.HORIZON
ChipBenchMixed RTL generation20.05100.0
RTLLM-2.0NL spec to RTL78.02100.0
Verilog-Eval-v2HDLBits-style Verilog86.22100.0
CVDP CID 002RTL code completion3.282100.0
CVDP CID 003NL spec to RTL19.224100.0
CVDP CID 004RTL code modification10.936100.0
CVDP CID 005Spec-to-RTL module reuse9.114100.0
CVDP CID 007Linting / QoR improvement0.024100.0
CVDP CID 012Test-plan to stimulus generation47.832100.0
CVDP CID 013Test-plan to checker generation3.819100.0
CVDP CID 014Test-plan to assertion generation79.11100.0
CVDP CID 016Debugging and bug fixing25.713100.0

Convergence difficulty varies widely across categories. RTLLM-2.0 and Verilog-Eval reach 100% within two iterations. Checker generation (CID 013) starts at just 3.8%. Yet it climbs steadily to 100% by iteration 19, with almost no plateau. Code completion (CID 002) needs 82 iterations. Its long tail is the single largest token cost.

Where the Tokens Go

Token consumption is the more informative signal once correctness saturates. The three legacy suites together use 6.0M tokens. The nine CVDP categories use 203.9M tokens, or 97.1% of the total. CID 002 alone uses 56.0M tokens.

About 91% of all tokens are cached input, which significantly lowered the API cost. The research team therefore treat token efficiency, not final pass rate, as the metric most in need of improvement.

Use Cases With Examples

The evaluated categories map directly to daily RTL work:

  • RTL code completion (CID 002): convert many failing completions into passing designs.
  • Natural-language spec to RTL (RTLLM-2.0, CID 003): implement a module from a written spec.
  • Modification and module reuse (CID 004, CID 005): edit or adapt existing RTL under test.
  • Linting and QoR improvement (CID 007): clean up code the harness flags.
  • Verification generation (CID 012 to 014): produce testbench stimulus, checkers, and assertions.
  • Debugging (CID 016): localise and fix functional bugs against simulator feedback.

Checker generation is a concrete example. Single-shot models struggle with it, as the low 3.8% start shows

Scroll to Top