AlphaChip
Deep reinforcement learning method
AlphaChip is an automated method for macro placement, a crucial step in chip floorplanning. It is based on reinforcement learning (RL), a machine learning method in which a system iteratively improves its decisions by optimizing performance-based reward signals.. AlphaChip was developed at Google Brain, where it was used in the design of their Tensor Processing Units. It was then made open-source and published in a Nature paper in 2021. The ideas behind AlphaChip, and the core developers, form the basis of the spin-out Ricursive.
The claims of the 2021 paper have engendered considerable controversy, primarily over whether the algorithm represents an advance over existing algorithms, and academic integrity.
01Background
Chip design for modern integrated circuits is a complex, expert-driven process that relies on electronic design automation (EDA). It determines the cost and performance of the final chip, and typically takes weeks or months to complete. Advances that produce better designs, or complete the process faster, are commercially and academically significant.
AlphaChip performs macro placement, which determines where large circuit components (macros) will be laid out on the chip. The number of macros per circuit typically ranges from several to thousands.. Like almost all steps in chip design, placement started as a manual process. Since manual placement can be time consuming, many attempts to automate this process have been pursued since the 1970s, using a variety of techniques. AlphaChip is the first to attack the problem using reinforcement learning.
A full evaluation of the quality of a proposed placement is slow. Wiring must be performed after placement, and strongly influences the power, performance, and area (PPA) of the completed chip. A full wiring calculation is too slow to use when investigating changes in placement, so placement tools typically use a proxy cost, a simplified objective function used to guide the placement algorithm during training and evaluation. The faithfulness of the chosen proxy cost to the final objective cost is a critical aspect of placer performance.

022021 Nature paper
In 2021, Nature published a paper under the title “A graph‑placement methodology for fast chip design” co‑authored by 21 Google-affiliated researchers. The paper reported that an RL agent could generate macro placements for integrated circuits "in under six hours" and achieve improvements over human-designed layouts in power, timing performance, and area (PPA), standard chip-quality metrics referring respectively to energy consumption, chip operating speed, and silicon footprint (evaluated after wire routing). It introduced a sequential macro placement algorithm in which macros are placed one at a time instead of optimizing their locations concurrently. At each step, the algorithm selects a location for a single macro on a discretized chip canvas, conditioning its decision on the placements of previously placed macros. This sequential formulation converts macro placement into a long-horizon decision process in which early placement choices constrain later ones. After macro placement, force-directed placement is applied to place standard cells connected to the macros. Deep reinforcement learning is used to train a policy network to place macros by maximizing a reward that reflects final placement quality (for example, wirelength and congestion). Policy learning occurs during self‑play for one or multiple circuit designs. Further placement optimizations refine the overall layout by balancing wirelength, density, and overlap constraints, while treating the macro locations produced by the RL policy as fixed obstacles. The approach relies on pre-training, in which the RL model is first trained on a corpus of prior designs (twenty in the Nature paper) to learn general placement patterns before being fine-tuned on a specific chip.
Circuit examples used in the study were parts of proprietary Google TPU designs, called blocks (or floorplan partitions). The paper reported results on five blocks and described the approach as generalizable across chip designs.
03Controversy
The AlphaChip controversy refers to a series of public, scholarly, and legal disputes surrounding the 2021 Nature paper.
The primary technical question is whether the new techniques have been adequately proven to be better than existing techniques. Few direct and publicly verifiable comparisons are available, and both internal Google studies and external attempts to replicate the algorithm have failed to show the claimed benefits. As of 2026, neither Google nor Ricursive has released any results from running its algorithm on modern public benchmarks. This lack of public and explicit comparisons has resulted in considerable skepticism over the paper's claims. In addition, the inability of others (both inside and outside of Google) to replicate the claimed results have sparked concerns about the paper’s methodology, reproducibility, and scientific integrity.
Internal dispute at Google
In 2022, Satrajit Chatterjee, a Google engineer involved in reviewing the AlphaChip work, raised concerns internally and drafted an alternative analysis, Stronger Baselines. A leaked copy of this unpublished manuscript argues that established methods outperform the RL approach in a fair comparison. In March 2022, Google declined to publish this analysis and terminated Chatterjee's employment.
Chatterjee filed a wrongful dismissal lawsuit, alleging that representations related to the AlphaChip research involved fraud and scientific misconduct. According to court documents, Chatterjee's study was conducted "in the context of a large potential Google Cloud deal". He noted that it "would have been unethical to imply that we had revolutionary technology when our tests showed otherwise" and claimed Google was deliberately withholding material information. Furthermore, the committee that reviewed his paper and disapproved its publication was allegedly chaired by subordinates of Jeff Dean, a senior co-author of the Nature paper. Google’s subsequent motion to dismiss was denied, holding that Chatterjee had plausibly alleged retaliation for refusing to engage in conduct he believed would violate state or federal law.
External critism
Evaluation and replication
The Nature paper described the reduction in design-process time as going from "days or weeks" to "hours", but did not provide per-design time breakdowns or specify the number of engineers, their level of expertise, or the baseline tools and workflow against which this comparison was made. It was also unclear whether the "days or weeks" baseline included time spent on other tasks such as functional design changes. The paper also evaluated the method on fewer benchmarks (five) than is common in the field, and showed mixed results across different evaluation goals
While the approach was described as improving circuit area, critics argue the RL optimization did not alter the overall circuit area, as it adjusted only the locations of fixed-shape non-overlapping circuit components within a fixed rectangular layout boundary.
Because macro placement is largely geometric and its fundamental algorithms are not tied to a specific process node, competing approaches can be evaluated on public benchmarks (tests) across technologies, rather than primarily on proprietary internal designs. This is standard procedure when comparing academic placers. In contrast, Google initially reported results on internal proprietary designs, and has since compared directly to only one external placer (DreamPlace),, out of many competing placers, and only on older examples. As of 2026 neither Google nor Ricursive has offered direct comparisons with prior methods on more realistic and modern benchmarks.
Researchers at the University of California, San Diego (UC San Diego), led by professors Chung-Kuan Cheng and Andrew B. Kahng, have re-implemented the AlphaChip algorithm, working from the description in the paper and the released source code. In 2023, they placed a wide variety of public domain designs using five different placers: their AlphaChip replicate, classic simulated annealing (as described in Stronger Baselines), a leading academic placer (RePlace), a commercial placer (CMP from Cadence), and human placement. In these results, the AlphaChip algorithm did not outperform existing techniques. AlphaChip raised numerous objections to this comparison, and Kahng et al. in turn replied. After taking the objections into account, they re-did the placements, fully routed them (to avoid any reliance on proxy objectives), and measured the resulting wire length. A portion of their extensive comparisons is shown here; in no cases did the AlphaChip replicate give a shorter wire length than the existing commercial placer.
Routed wire length as determined by results from different placement algorithms Benchmark AlphaChip (replicate) Annealing Academic Commercial Human Ariane 465 398 513 405 468 Black Parrot 332 289 269 231 259 Mempool 112 115 113 103 108
They conclude that the reinforcement-learning approach described in the Nature publication did not consistently outperform established placement methods and typically required significantly greater computational effort.
Additional criticism noted the claimed six-hour runtime bound per circuit example did not account for pre-training. In the described experiments, RL policies were trained on twenty circuit blocks and then evaluated on five additional blocks, but the reported runtime reflected only the evaluation phase. The evaluation reported in the paper relied on computing resources that were larger than those used by other tools.
Starting in 2022, multiple researchers and commentators called for results on publicly available benchmarks to settle the dispute through independent verification and comparison. No positive independent replications of the Nature results have been reported in peer-reviewed literature three and four years since publication.
As of 2026, none of the commercial companies with competing products have adopted AlphaChip's approach. A 2026 statement by Thomas Andersen, vice president for AI & Machine Learning at Synopsys, states: "In core EDA algorithms, there have been attempts with reinforcement learning to come up with better solutions, but that hasn’t really panned out."
Research integrity concerns
In October 2024, sixteen methodological concerns were grouped into categories and itemized as "initial doubts" in a detailed critique by chip design researcher and former University of Michigan professor Igor L. Markov in Communications of the ACM, from an arXiv preprint in 2023. The critique described multiple questionable research practices in the evaluation of AlphaChip, particularly around selective reporting of benchmarks and outcomes (cherry-picking), selective use of metrics, and selective choice of baselines. As of 2026, this paper was prefaced with an ACM "EXPRESSION OF CONCERN: An investigation is underway regarding the content and transparency of disclosure for this article."
04Nature editorial actions
In April 2022, the peer review file for the Nature article was included as a supplementary information file.
In September 2023, Nature added an editor's note to "A graph placement methodology for fast chip design" stating that the paper's performance claims had been called into question and that the editors were investigating the concerns. On 21 September 2023, Andrew B. Kahng's accompanying News & Views article was retracted; the retraction notice said that new information about the methods used in the Google paper had become available after publication and had changed the author’s assessment, and it also said that Nature was conducting an independent investigation of the paper’s performance claims. By late September 2024, the editor's note was removed without explanation, but Nature published an addendum to the original paper (dated 26 September 2024). The addendum introduced the name AlphaChip for the proposed RL technique and described methodological details that critics had previously identified as missing, including the use of initial locations. The addendum addressed some methodological details but still lacked the full training and evaluation inputs needed for independent replication.
Sources and credits
This article is adapted from the Wikipedia article “AlphaChip”, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.
Images, from Wikimedia Commons:
- VIA Isaiah Architecture die plot.jpg by VIA Gallery from Hsintien, Taiwan, CC BY 2.0
Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.