Papers for

chip design engineers

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Coding agents show limited success in closing chip timing issues

TicTacBench: Benchmarking Timing Closure Capabilities of Coding Agents

Abstract: Recent advances in large language models (LLMs) have led to the emergence of coding agents capable of performing complex engineering tasks, including register-transfer level (RTL) design and optimization. Existing RTL benchmarks mainly evaluate functional correctness and performance, power, and area (PPA) of the generated RTL designs, leaving agents' ability for \emph{timing closure} under-evaluated. We propose TicTacBench, a benchmark specifically designed to evaluate coding agents' capabilities for RTL-level timing closure under post-place-and-route (post-PnR) evaluation. TicTacBench contains 30 diverse tasks, each provided with a suboptimal RTL design, realistic timing constraints, functional equivalence verification, and timing reports. With over 300 runs of coding agents driven by 8 frontier LLMs, we find that even the best agent can only close 53.3\% of tasks with 7.18\% area-delay product (ADP) degradation and 8.83\% energy-delay-squared product (EDDP) improvement on average. We identify common failure categories that explain why agents fail to close timing. Then we propose TicTacSkill, a new method that guides agents to follow standard timing-closure procedures and improves the Timing Closure Rate by 9\%. These results suggest that while coding agents have made significant progress in RTL design, their timing-closure capability still has substantial room for improvement.

Sun 20 SeptArtificial Intelligence
The gist
Making computer chips work fast enough is a tough job that involves fixing timing problems in detailed electrical designs. The authors created TicTacBench, a test to see how well coding agents—software powered by advanced language models—can fix these timing problems in chip designs. They found that even the best agents could only fix a bit more than half of the timing issues, with some trade-offs in other design qualities. The authors also developed a method to guide agents step by step, improving their success rate but showing there is still lots of room for progress.
Open 2609.23363v1

Agentic chip design improves speed with higher-level abstractions

Can Agents Design Better Chips with a Higher Level Abstraction?

Abstract: Large Language Model (LLM) agents are increasingly being explored for chip design, but most existing approaches operate directly at RTL. We ask whether agents can design better chips by leveraging higher-level abstractions. We compare Direct RTL Design, Agent-based HLS Design, Post-Compiler HLS Refinement, and Post-HLS RTL Refinement, and combine Agent-based HLS Design with Post-HLS RTL Refinement as Agent-based HLS with RTL Refinement (AHRR). We use FPGAs as a practical, easy-to-deploy platform for end-to-end evaluation, but note that the design-flow tradeoffs we study are largely independent of the target technology. Across a diverse 11-tasks benchmark suite, AHRR achieves a 2.6$\times$ geometric-mean speedup over Direct RTL Design across our benchmark suite. Case studies show that HLS distills design knowledge into abstractions that agents can leverage, while RTL refinement recovers lower-level optimization opportunities. Together, these results make AHRR a promising workflow for agentic chip design. The code and evaluation artifacts are available at https://github.com/ZijD/AHRR.

Thu 17 SeptArtificial IntelligenceHardware Architecture
The gist
Designing computer chips is complicated, and new AI tools called agents are being used to help. Most agents try to design chips at a very detailed level, but this paper finds they can do better when working with higher-level designs first. The authors show that a combined approach, starting with a high-level design and then refining it at a lower level, runs chips faster. They tested this on many tasks and saw big improvements over traditional methods.
Open 2609.21157v1

Resynthesis domain learning improves circuit graph neural network adaptation

ReDIL-GNN: Resynthesis Domain Incremental Learning for Circuit Graph Neural Networks

Abstract: Logic resynthesis preserves circuit functionality while changing gate vocabulary, topology, and structural statistics, creating domain shift for circuit graph neural networks (GNNs) without changing task labels. To study this setting, we introduce ReDIL-GNN, a resynthesis domain-incremental learning framework that adapts a fixed prediction or representation head as new synthesis styles arrive and evaluates retention on all previously observed domains. Because not every shift should be adapted blindly, ReDIL-GNN further introduces the Resynthesis Adaptability Index (RAI), a pre-adaptation score that combines adaptation need, source-equivalence recoverability, structural coverage, and update compatibility. We evaluate supervised hardware-security tasks and representation-learning models using task-native metrics for classifiers and source-equivalence retrieval metrics for embedding models, comparing naive fine-tuning with LwF, Online EWC, MAS, ER, A-GEM, DER++, ER+LwF, and equivalence-guided replay. Across the studied pipelines, RAI separates unsupported shifts from promising updates, ranging from 0.001 for a structurally uncovered GNN-RE ABC-rewrite shift to 0.824 for the best original-only GNN-RE adaptation case. In practice, ReDIL-GNN turns resynthesis-aware circuit learning into a deployment control loop: RAI screens each new synthesis flow before update, guiding whether to reuse the current model, apply retention-aware adaptation, or defer adaptation until the shift is better supported.

Wed 16 SeptMachine LearningNeural and Evolutionary Computing
The gist
Changes in how computer circuits are built can confuse models that analyze them since the circuit’s structure changes but its function stays the same. The authors created a method called ReDIL-GNN that helps models adapt to these changes by deciding when and how to update themselves. They also designed a score, the Resynthesis Adaptability Index, to predict if adapting to a new circuit style will help or hurt the model. Their approach helps keep models accurate over time by smartly choosing when to learn from new circuit designs.
Open 2609.18595v1