Pith. sign in

REVIEW 4 major objections 5 minor 77 references

DICE: Device-level Integrated Circuits Encoder with Graph Contrastive Pretraining

T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read The paper claims that self-supervised contrastive pretraining on device-level circuit graphs transfers to graph-level prediction in both analog and digital integrated circuits.

desk verdict A useful first device-level circuit representation with clean held-out evidence on digital delay prediction, but the headline analog results are confounded by pretraining overlap. read the letter →

arxiv 2502.08949 v2 pith:ALGI7PMD submitted 2025-02-13 cs.LG

classification cs.LG
keywords graphcontrastivelearningdevice-levelcircuitgraphsanalogpredictiondigitalneuralnetworkpretrainingdataaugmentationgraph-levelintegratedrepresentation
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper aims to establish that device-level integrated circuits—graphs whose nodes are transistors, resistors, capacitors, current sources, and voltage nets—can be pretrained without any simulation labels, and that the resulting encoder transfers to downstream graph-level prediction tasks. It introduces DICE, described as the first self-supervised graph representation learning framework for both analog and digital circuits, built on graph contrastive learning. The central idea is a pair of circuit-aware augmentations: adding an identical device in series or parallel yields a 'positive' variant that preserves graph-level function, while replacing a subgraph with one that inverts its impedance, energy, or switching behavior yields a 'negative' variant that perturbs it. On three benchmark tasks spanning circuit similarity, digital delay prediction, and analog op-amp metrics, the DICE-initialized encoder outperforms unpretrained and supervised-pretrained baselines. If the claim holds, circuit data scarcity becomes less of a bottleneck because useful training signal is generated from topology alone.

What carries the argument

The load-bearing mechanism is the pair of augmentation rules together with a three-way contrastive objective. Positive augmentation picks a random device and adds an identical device in parallel or series; the paper justifies the preservation of graph-level function by the circuit-theoretic fact that series and parallel combinations consolidate into a single equivalent device, so the augmented graph corresponds to a change in effective device parameters rather than a change in topology-level function. Negative augmentation replaces a device subgraph with one whose impedance, energy, or switching behavior is inverted, producing a new topology with distinct graph-level functionality. The pretrained model is a two-layer Graph Isomorphism Network with edge feature updates, pretrained by maximizing cosine similarity only between positive pairs and minimizing it only between non-equal pairs; negative pairs are not pushed apart directly because they remain localized structural variations of the same circuit. After pretraining, the frozen DICE encoder is placed in parallel with a trainable GNN, followed by a series GNN and a decoder that injects device parameters, and this whole encoder-decoder is fine-tuned for each downstream task.

What would settle it

Run a SPICE simulation on a sample of circuits before and after positive augmentation: take a real amplifier or delay line, add an identical transistor, resistor, or capacitor in series or parallel with a randomly chosen device, sweep the original device parameter values over the ranges used in the downstream tasks, and check whether DC operating point, gain, bandwidth, or delay stay within a small tolerance. If a substantial fraction of positive pairs show large functional changes, the contrastive labels are unreliable; if the encoder still improves downstream performance, the pretraining must be benefiting from some weaker signal than the claimed semantic preservation.

Watch

Extended reading notes

Core claim

The central discovery claimed is that self-supervised contrastive pretraining on device-level circuit graphs produces graph-level representations that transfer well to both analog and digital prediction tasks, and that the pretraining signal can be generated simulation-free by exploiting circuit-specific augmentation semantics. The paper reports that the encoder initialized with DICE outperforms all baselines on every downstream task: circuit similarity prediction reaches 93.94% accuracy versus 91.42% for the best baseline; digital delay prediction reaches an R2 of 0.9468 for rise delay and 0.8085 for fall delay; and analog op-amp metric prediction reaches R2 values of 0.9916 for power, 0.9950 for offset, 0.9374 for CMRR, 0.9769 for gain, and 0.8809 for PSRR. The paper also claims that contrastive pretraining outperforms supervised DC-voltage pretraining and that the benefit persists across several GNN architectures, not just the GIN backbone used for DICE.

Load-bearing premise

The load-bearing premise is that adding an identical device in series or parallel really does leave the circuit's graph-level function unchanged, even though device parameters are ignored in pretraining; if that equivalence fails for realistic circuits or parameter values, the positive-pair labels teach the encoder the wrong thing.

Editorial extensions

If this is right

  • A single pretrained encoder can serve multiple circuit topologies within one task, removing the need for a separate trained model per topology.
  • Pretraining requires no simulator or logic-synthesis tool, so the bottleneck of labeled and even unlabeled circuit data is reduced by generating views from topology alone.
  • Because the same device-level representation covers analog and digital circuits, one initialization can be shared across tasks in both domains.
  • The gains are not locked to one GNN architecture: pretraining with the same loss improves GCN, GraphSAGE, GAT, and GIN encoders in the reported ablations.
  • On the strongest analog task, the paper reports an average improvement over ParaGraph of 15.19% and over DeepGenu of 44.24%, suggesting the pretraining signal is particularly valuable where simulation data are scarce.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • A natural extension is to treat logic gates as device-level nodes as well, testing whether a unified device-plus-gate vocabulary improves scalability to large digital blocks; the paper lists this as future work.
  • The series/parallel equivalence underlying positive augmentation is local and parameter-free; in circuits with feedback, cross-coupled pairs, or nonlinear biasing, the equivalence may fail, so a simulation-based guard could be added to filter low-quality positive pairs.
  • The contrastive embeddings could be evaluated as a surrogate for SPICE in sizing or topology search, where the encoder would replace expensive simulation in the optimization loop.
  • If the semantic-preservation assumption is violated, the practical fix would be to weight or re-label positive pairs by measured functional similarity, keeping the framework useful even with noisy augmentation.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper presents DICE, a two-layer GIN pretrained with a graph-contrastive objective on device-level circuit graphs. The pretraining uses two proposed simulation-free augmentations: a 'positive' augmentation that adds an identical device in series or parallel, and a 'negative' augmentation that replaces a device subgraph to change functionality. The pretrained encoder is then frozen and combined with a trainable GNN and decoder for three graph-level downstream tasks: circuit similarity prediction, delay prediction on five delay lines, and prediction of five op-amp performance metrics. The paper reports that DICE outperforms ParaGraph, DeepGenu, and DeepGenp across all three tasks, and includes ablations over pretraining losses, GNN architectures, and encoder depth configurations.

Significance. If the transfer claims hold, DICE would be a useful first step toward self-supervised, device-level representation learning that spans analog and digital circuits, with a multi-topology benchmark and an open-source implementation as auxiliary contributions. The paper is careful to evaluate on separate labeled downstream tasks, so the reported numbers are not circularly fitted. The ablation set is broad, and Task 2 uses delay-line topologies that are not in the pretraining set. However, the empirical case is weakened by the disclosed overlap between Task 3 topologies and the pretraining set, by the absence of uncertainty measures in the headline tables, and by the purely topological justification of the augmentation semantics. These issues can likely be addressed with additional experiments and reporting, so the central idea remains defensible.

major comments (4)
  1. [Section 4.2 and Appendix D.2.3, Tables 2-4] Task 3 is not a held-out-topology transfer test: Appendix D.2.3 explicitly states that the five op-amp topologies used in Task 3 are included in the pretraining dataset, and only the simulation labels are newly generated. Since the frozen DICE encoder has already seen the exact graph structures, the Task 3 margins cited in Section 5 (15.19% average improvement over ParaGraph and 44.24% over DeepGenu) conflate adaptation to seen topologies with transferable analog-circuit representation learning. The overlap is disclosed, but its effect is not quantified and no variant with Task 3 topologies excluded from pretraining is reported; such a held-out analog transfer experiment is needed to support the strongest empirical claim.
  2. [Section 3.2 and Appendix B.1] The semantic validity of the positive augmentation is load-bearing but is supported only by the two-resistor consolidation argument in Appendix B.1. Adding an identical device in series or parallel changes the effective device value and therefore the circuit's electrical behavior, so 'functionally equivalent to altering the parameters' describes an invariance to parameter values rather than preservation of graph-level functionality. The assertion that device parameters do not affect structural circuit properties does not address the fact that all downstream tasks predict parameter-dependent simulation metrics. I request an empirical validation, for example by simulating a sample of original and positively augmented circuits and comparing the predicted Task 2 or Task 3 metrics, and a similar check that negative augmentation reliably perturbs those metrics. Without this, the contrastive labels rest on an unverified semantic assumption.
  3. [Tables 2-4] The head-line results are reported only as averages over three random seeds, with no standard deviations or significance tests. Some of the claimed improvements are small relative to likely seed noise: in Table 3, DICE over LSimSiam is +0.0041 on Rise Delay and +0.0041 on Fall Delay, and the Task 3 metrics differ by about 0.0005 to 0.0009; in Table 2, the difference between DICE and ParaGraph on Rise Delay is +0.0213. Figure 6 shows mu +/- sigma during training, but the final tables omit the corresponding uncertainties. To support the statement that DICE 'consistently outperforms' all baselines, the paper should report standard deviations or confidence intervals for the final metrics.
  4. [Section 4.2 and Appendix D.3] The comparison to DeepGenp is made against a modified version of the pretraining scheme in [40,47]: Appendix D.3 trains a single GNN on seven topologies, whereas the original method trained separate GNNs for each topology. This is a reasonable adaptation for a multi-topology benchmark, but the paper does not state how this change affects the comparison, and the conclusion in Section 5 that DICE outperforms supervised pretraining is presented as a comparison to prior work. Reporting the original per-topology DeepGenp results as an additional baseline, or at least justifying the modification quantitatively, would strengthen the claim.
minor comments (5)
  1. [Section 3.3 and Eq. (3)] The notation around Eq. (3) is inconsistent: the text uses both N^+ and N_+, and the sets X_+(x) and X_neq(x) are not defined with formal set-builder notation. Please unify the notation and define all symbols in one place.
  2. [Section 5] The statement that the results 'follow the conclusion in [34], arguing that similarity minimization is not necessary in contrastive learning' misattributes that conclusion; [34] (SimCLR) uses in-batch negatives, while the no-negative result is from SimSiam [35]. The sentence should be reworded or the citation corrected.
  3. [Table 1] The column header 'DICEGNN' appears to be a formatting artifact, and the row labels 'Pretrained GNN with LSimSiam' and 'Pretrained GNN with LNT-Xent' are ambiguous because every row except the one labeled 'Initial' is produced by a pretrained GNN. Please simplify the labels.
  4. [Appendix D.2.1] The text says the Task 1 training dataset consists of 50 circuits including the 40 pretraining topologies, and the test set contains 5 additional circuits, for a total of 55. Since the pretraining dataset already contains 55 topologies, please clarify whether the remaining 10 pretraining topologies are in the Task 1 training set, are held out, or are unused.
  5. [Appendix C.4] Eq. (9) writes alpha_{u->v} = softmax_{u in N(v)}(h_u . h_v); the softmax is over the neighbor index for a fixed v, but the notation is nonstandard and could be read as a softmax over the whole graph. Please write the normalization explicitly.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: pretraining is unsupervised, downstream labels are newly simulated, and the reported gains are not forced by construction.

full rationale

Walked the derivation chain. The pretraining stage (Sections 3.2-3.3) defines positive, negative, and non-equal relations from augmentation provenance, and the contrastive loss (Eq. 3) is optimized against these self-generated relations; this is a legitimate unsupervised objective, not a disguised prediction. The downstream tasks (Appendix D.2) use separately generated simulation labels, and no pretraining parameter is fitted to those labels. The DICE encoder is frozen during downstream training, so the reported Task 1 accuracy and Task 2/3 R2 values are not forced by the pretraining objective. The self-citations present in the paper ([32], [43], [31]) are benchmark-context and related-work citations; none carries the load of a central claim. The positive-augmentation equivalence argument in Appendix B.1 is an electrical-engineering assumption with independent content; even if debatable, it is not equivalent by construction to downstream simulation outputs. Appendix D.2.3 discloses that Task 3 topologies are included in the pretraining set; this is a benchmark confound and an unquantified overlap that a reader should weigh when interpreting Task 3 margins, but it is not circularity because pretraining did not see the Task 3 simulation labels and the downstream decoder must still fit those labels from the frozen encoder. No step in the paper reduces, by definition, by fitted-input renaming, or by self-citation, to its own inputs. Therefore, no significant circularity is found.

Assumptions & free parameters 3 free parameters · 4 assumptions · 0 invented entities

The pretraining signal and the graph representation rest on domain assumptions about what makes two circuit graphs semantically related. The paper provides heuristic justifications (series/parallel consolidation, impedance inversion) but does not empirically validate that positive augmentations always preserve or negative augmentations always perturb electrical functionality. The temperature coefficients and augmentation counts are chosen hyperparameters with no sensitivity analysis.

free parameters (3)
  • temperature coefficients (tau, tau_p, tau_n) = (0.05, 0.2, 0.05)
    Chosen hyperparameters in the DICE contrastive loss (Eq. 3); no sensitivity analysis reported; results may depend on these values.
  • augmentation counts per topology = 4000 (2000 positive, 2000 negative)
    Pretraining dataset size per topology, chosen by hand; no study of how performance varies with augmentation count.
  • GNN depth configuration (dD, dp, ds) = (2, 0, 2)
    Encoder depth configuration for downstream tasks, selected for the final model; other depths tested in ablation (3) show varying results.
assumptions (4)
  • domain assumption Positive augmentation (adding an identical device in parallel or series) preserves graph-level functionality
    Section 3.2 and Appendix B.1 justify it by series/parallel consolidation of resistors, but this changes device parameter values and only holds if device parameters are ignored in the graph; no simulation check.
  • domain assumption Negative augmentation perturbs graph-level functionality
    Appendix B.2 describes inverting impedance, energy dissipation, or switching behavior; no simulation validation that functionality actually changes as intended.
  • domain assumption Device parameters do not affect structural circuit properties
    Stated in Appendix B.1; central to treating positive augmentations as equivalent, but electrical behavior depends on parameters, so the assumption is only about graph topology.
  • domain assumption The proposed graph construction (9 node types, 5 edge types) captures enough information for downstream tasks
    Section 3.1 defines the mapping; no ablation comparing graph construction variants (acknowledged as future work in Appendix E).

how reviews work

0 comments
Cite this review

Pith. "Pith review of DICE: Device-level Integrated Circuits Encoder with Graph Contrastive Pretraining." pith.science (2026). https://pith.science/paper/ALGI7PMD

@misc{pith2026250208949,
  author       = {Pith},
  title        = {Pith review of: DICE: Device-level Integrated Circuits Encoder with Graph Contrastive Pretraining},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/ALGI7PMD}},
  note         = {Machine review of arXiv:2502.08949}
}
read the original abstract

Pretraining models with unsupervised graph representation learning has led to significant advancements in domains such as social network analysis, molecular design, and electronic design automation (EDA). However, prior work in EDA has mainly focused on pretraining models for digital circuits, overlooking analog and mixed-signal circuits. To bridge this gap, we introduce DICE, a Device-level Integrated Circuits Encoder, which is the first graph neural network (GNN) pretrained via self-supervised learning specifically tailored for graph-level prediction tasks in both analog and digital circuits. DICE adopts a simulation-free pretraining approach based on graph contrastive learning, leveraging two novel graph augmentation techniques. Experimental results demonstrate substantial performance improvements across three downstream tasks, highlighting the effectiveness of DICE for both analog and digital circuits. The code is available at github.com/brianlsy98/DICE.

Figures

Figures reproduced from arXiv: 2502.08949 by the authors.

Figure 1
Figure 1. Key challenges for graph contrastive learning on device-level circuits. (a) Simple graph augmentations, such as randomly adding edges, can break circuit semantics and result in non-equivalent circuits. (b) Existing approaches require training separate models for each circuit topology, limiting the ability to generalize across diverse structures. device level offers a more foundational approach to pretraining models … view at source ↗
Figure 2
Figure 2. Overview of our graph contrastive learning framework for pretraining DICE. We maximize the cosine similarity between circuits that are in positive relation and minimize it between circuits with a non-equal relation. A detailed explanation of these relations is provided in Section 3.3. 3.1 Graph Construction Considering prior work stated in Appendix A.3, we propose a new method converting device-level circuit into gr… view at source ↗
Figure 3
Figure 3. Rules (a) and examples (b) for positive and negative data augmentation. Positive augmentation adds an identical device in parallel or series, preserving the overall circuit function. Negative augmentation replaces a subgraph, resulting in a circuit with different overall functionality. 3.2 Positive and Negative Data Augmentation To address the limitations of including device parameters in the pretraining dataset (se… view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: Encoder (a)–Decoder (b) model architecture used for solving downstream tasks. For Parallel GNN 2 and Series GNN, both node and edge features are updated according to Eqs. (4)–(6). The encoder ( [PITH_FULL_IMAGE:figures/full_fig_p006_4.png]
Figure 5
Figure 5. Figure 5: t-SNE visualization of graph-level features. Each plot represents: (a) initial embeddings, embeddings processed by an (b) untrained GNN, (c) GNN pretrained with LSimSiam, (d) GNN pretrained with LNT-Xent, and (e) GNN pretrained with LDICE (DICE). 4.1 Pretraining Setup.…
Figure 6
Figure 6. Figure 6: Performance curves during downstream task training. Each plot shows the µ ± σ range across 3 different seeds. We compared our method (red), ParaGraph (blue), DeepGenu (green), and DeepGenp (black). Applying DICE leads to stable training, and consistently outperforms al…
Figure 7
Figure 7. Figure 7: Equivalent subgraphs generated through positive data augmentation. Different subgraph [PITH_FULL_IMAGE:figures/full_fig_p016_7.png]
Figure 8
Figure 8. Figure 8: Conversion of characteristics through negative data augmentation. [PITH_FULL_IMAGE:figures/full_fig_p017_8.png]
Figure 9
Figure 9. Figure 9: Masking operation. ⊙ indicates the hadamard product (element-wise multiplication). Masking is our key source of rapid pretraining, with the cost of GPU memory. Algorithm. 1 provides the pseudocode and [PITH_FULL_IMAGE:figures/full_fig_p020_9.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

77 extracted references · 50 canonical work pages

  1. [1]

    Language models are few-shot learners

    Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared D Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. Advances in neural information processing systems, 33:1877–1901, 2020

  2. [2]

    Bert: Pre-training of deep bidirectional transformers for language understanding

    Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. In Proceedings of the 2019 conference of the North American chapter of the association for computational linguistics: human language technologies, volume 1 (long and short papers), pages 4171–4186, 2019

  3. [3]

    Vilbert: Pretraining task-agnostic visiolinguistic representations for vision-and-language tasks

    Jiasen Lu, Dhruv Batra, Devi Parikh, and Stefan Lee. Vilbert: Pretraining task-agnostic visiolinguistic representations for vision-and-language tasks. Advances in neural information processing systems, 32, 2019

  4. [4]

    Learning transferable visual models from natural language supervision

    Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learning transferable visual models from natural language supervision. In International conference on machine learning, pages 8748–8763. PmLR, 2021

  5. [5]

    Large-scale chemical language representations capture molecular structure and properties

    Jerret Ross, Brian Belgodere, Vijil Chenthamarakshan, Inkit Padhi, Youssef Mroueh, and Payel Das. Large-scale chemical language representations capture molecular structure and properties. Nature Machine Intelligence, 4(12):1256–1264, 2022

  6. [6]

    Accurate prediction of molecular properties and drug targets using a self- supervised image representation learning framework

    Xiangxiang Zeng, Hongxin Xiang, Linhui Yu, Jianmin Wang, Kenli Li, Ruth Nussinov, and Feixiong Cheng. Accurate prediction of molecular properties and drug targets using a self- supervised image representation learning framework. Nature Machine Intelligence, 4(11): 1004–1016, 2022

  7. [7]

    Deep graph infomax

    Petar Veliˇckovi´c, William Fedus, William L Hamilton, Pietro Liò, Yoshua Bengio, and R Devon Hjelm. Deep graph infomax. arXiv preprint arXiv:1809.10341, 2018

  8. [8]

    Infograph: Unsupervised and semi-supervised graph-level representation learning via mutual information maximization.arXiv preprint arXiv:1908.01000, 2019

    Fan-Yun Sun, Jordan Hoffmann, Vikas Verma, and Jian Tang. Infograph: Unsupervised and semi-supervised graph-level representation learning via mutual information maximization.arXiv preprint arXiv:1908.01000, 2019

Show all 77 references
  1. [9]

    Mixed pooling multi-view attention autoencoder for representation learning in healthcare.arXiv preprint arXiv:1910.06456, 2019

    Shaika Chowdhury, Chenwei Zhang, Philip S Yu, and Yuan Luo. Mixed pooling multi-view attention autoencoder for representation learning in healthcare.arXiv preprint arXiv:1910.06456, 2019

  2. [10]

    Graph representation learning in biomedicine and healthcare

    Michelle M Li, Kexin Huang, and Marinka Zitnik. Graph representation learning in biomedicine and healthcare. Nature Biomedical Engineering, 6(12):1353–1369, 2022

  3. [11]

    Clinical feature vector generation using unsupervised graph representation learning from heterogeneous medical records

    Tomohisa Seki, Yoshimasa Kawazoe, and Kazuhiko Ohe. Clinical feature vector generation using unsupervised graph representation learning from heterogeneous medical records. In AMIA Annual Symposium Proceedings, volume 2023, page 618, 2024

  4. [12]

    N-gram graph: Simple unsupervised representation for graphs, with applications to molecules

    Shengchao Liu, Mehmet F Demirel, and Yingyu Liang. N-gram graph: Simple unsupervised representation for graphs, with applications to molecules. Advances in neural information processing systems, 32, 2019

  5. [13]

    Molecular contrastive learning of representations via graph neural networks

    Yuyang Wang, Jianren Wang, Zhonglin Cao, and Amir Barati Farimani. Molecular contrastive learning of representations via graph neural networks. Nature Machine Intelligence , 4(3): 279–287, 2022

  6. [14]

    Molecular graph representation learning integrating large language models with domain-specific small models

    Tianyu Zhang, Yuxiang Ren, Chengbin Hou, Hairong Lv, and Xuegong Zhang. Molecular graph representation learning integrating large language models with domain-specific small models. In 2024 IEEE International Conference on Bioinformatics and Biomedicine (BIBM), pages 2928–2935....

  7. [15]

    The dawn of ai-native eda: Opportunities and challenges of large circuit models

    Lei Chen, Yiqi Chen, Zhufei Chu, Wenji Fang, Tsung-Yi Ho, Ru Huang, Yu Huang, Sadaf Khan, Min Li, Xingquan Li, et al. The dawn of ai-native eda: Opportunities and challenges of large circuit models. arXiv preprint arXiv:2403.07257, 2024. 10

  8. [16]

    Functionality matters in netlist representation learning

    Ziyi Wang, Chen Bai, Zhuolun He, Guangliang Zhang, Qiang Xu, Tsung-Yi Ho, Bei Yu, and Yu Huang. Functionality matters in netlist representation learning. In Proceedings of the 59th ACM/IEEE Design Automation Conference, pages 61–66, 2022

  9. [17]

    Fgnn2: A powerful pre-training framework for learning the logic functionality of circuits

    Ziyi Wang, Chen Bai, Zhuolun He, Guangliang Zhang, Qiang Xu, Tsung-Yi Ho, Yu Huang, and Bei Yu. Fgnn2: A powerful pre-training framework for learning the logic functionality of circuits. IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems, 2024

  10. [18]

    Deepgate2: Functionality-aware circuit repre- sentation learning

    Zhengyuan Shi, Hongyang Pan, Sadaf Khan, Min Li, Yi Liu, Junhua Huang, Hui-Ling Zhen, Mingxuan Yuan, Zhufei Chu, and Qiang Xu. Deepgate2: Functionality-aware circuit repre- sentation learning. In 2023 IEEE/ACM International Conference on Computer Aided Design (ICCAD), pages 1–...

  11. [19]

    Deep- gate3: Towards scalable circuit representation learning

    Zhengyuan Shi, Ziyang Zheng, Sadaf Khan, Jianyuan Zhong, Min Li, and Qiang Xu. Deep- gate3: Towards scalable circuit representation learning. In Proceedings of the 43rd IEEE/ACM International Conference on Computer-Aided Design, pages 1–9, 2024

  12. [20]

    Deepgate4: Efficient and effective representation learning for circuit design at scale

    Ziyang Zheng, Shan Huang, Jianyuan Zhong, Zhengyuan Shi, Guohao Dai, Ningyi Xu, and Qiang Xu. Deepgate4: Efficient and effective representation learning for circuit design at scale. arXiv preprint arXiv:2502.01681, 2025

  13. [21]

    An empirical study of graph contrastive learning

    Yanqiao Zhu, Yichen Xu, Qiang Liu, and Shu Wu. An empirical study of graph contrastive learning. arXiv preprint arXiv:2109.01116, 2021

  14. [22]

    Towards graph contrastive learning: A survey and beyond

    Wei Ju, Yifan Wang, Yifang Qin, Zhengyang Mao, Zhiping Xiao, Junyu Luo, Junwei Yang, Yiyang Gu, Dongjie Wang, Qingqing Long, et al. Towards graph contrastive learning: A survey and beyond. arXiv preprint arXiv:2405.11868, 2024

  15. [23]

    Graph contrastive learning with augmentations

    Yuning You, Tianlong Chen, Yongduo Sui, Ting Chen, Zhangyang Wang, and Yang Shen. Graph contrastive learning with augmentations. Advances in neural information processing systems, 33:5812–5823, 2020

  16. [24]

    Infogcl: Information-aware graph contrastive learning

    Dongkuan Xu, Wei Cheng, Dongsheng Luo, Haifeng Chen, and Xiang Zhang. Infogcl: Information-aware graph contrastive learning. Advances in Neural Information Processing Systems, 34:30414–30425, 2021

  17. [25]

    Graph contrastive learning with adaptive augmentation

    Yanqiao Zhu, Yichen Xu, Feng Yu, Qiang Liu, Shu Wu, and Liang Wang. Graph contrastive learning with adaptive augmentation. In Proceedings of the web conference 2021 , pages 2069–2080, 2021

  18. [26]

    Yosys-a free verilog synthesis suite

    Clifford Wolf, Johann Glaser, and Johannes Kepler. Yosys-a free verilog synthesis suite. In Proceedings of the 21st Austrian Workshop on Microelectronics (Austrochip), volume 97, 2013

  19. [27]

    Abc: An academic industrial-strength verification tool

    Robert Brayton and Alan Mishchenko. Abc: An academic industrial-strength verification tool. In Computer Aided Verification: 22nd International Conference, CAV 2010, Edinburgh, UK, July 15-19, 2010. Proceedings 22, pages 24–40. Springer, 2010

  20. [28]

    Deepgate: Learning neural representations of logic gates

    Min Li, Sadaf Khan, Zhengyuan Shi, Naixing Wang, Huang Yu, and Qiang Xu. Deepgate: Learning neural representations of logic gates. In Proceedings of the 59th ACM/IEEE Design Automation Conference, pages 667–672, 2022

  21. [29]

    Gcn-rl circuit designer: Transferable transistor sizing with graph neural networks and reinforcement learning

    Hanrui Wang, Kuan Wang, Jiacheng Yang, Linxiao Shen, Nan Sun, Hae-Seung Lee, and Song Han. Gcn-rl circuit designer: Transferable transistor sizing with graph neural networks and reinforcement learning. In 2020 57th ACM/IEEE Design Automation Conference (DAC), pages 1–6. IEEE, 2020

  22. [30]

    Autockt: Deep reinforcement learning of analog circuit designs

    Keertana Settaluri, Ameer Haj-Ali, Qijing Huang, Kourosh Hakhamaneshi, and Borivoje Nikolic. Autockt: Deep reinforcement learning of analog circuit designs. In 2020 Design, Automation & Test in Europe Conference & Exhibition (DATE), pages 490–495. IEEE, 2020

  23. [31]

    Dnn-opt: An rl inspired optimization for analog circuit sizing using deep neural networks

    Ahmet F Budak, Prateek Bhansali, Bo Liu, Nan Sun, David Z Pan, and Chandramouli V Kashyap. Dnn-opt: An rl inspired optimization for analog circuit sizing using deep neural networks. In 2021 58th ACM/IEEE Design Automation Conference (DAC), pages 1219–1224. IEEE, 2021. 11

  24. [32]

    Insight: Universal neural simulator for analog circuits harnessing autoregressive transformers

    Souradip Poddar, Youngmin Oh, Yao Lai, Hanqing Zhu, Bosun Hwang, and David Z Pan. Insight: Universal neural simulator for analog circuits harnessing autoregressive transformers. arXiv preprint arXiv:2407.07346, 2024

  25. [33]

    Learn-by-compare: Analog performance prediction using contrastive regression with design knowledge

    Zihu Wang, Karthik NS Somayaji, and Peng Li. Learn-by-compare: Analog performance prediction using contrastive regression with design knowledge. In Proceedings of the 61st ACM/IEEE Design Automation Conference, pages 1–6, 2024

  26. [34]

    A simple framework for contrastive learning of visual representations

    Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. A simple framework for contrastive learning of visual representations. In International conference on machine learning, pages 1597–1607. PMLR, 2020

  27. [35]

    Exploring simple siamese representation learning

    Xinlei Chen and Kaiming He. Exploring simple siamese representation learning. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 15750–15758, 2021

  28. [36]

    Dag-aware aig rewriting a fresh look at combinational logic synthesis

    Alan Mishchenko, Satrajit Chatterjee, and Robert Brayton. Dag-aware aig rewriting a fresh look at combinational logic synthesis. In Proceedings of the 43rd annual Design Automation Conference, pages 532–535, 2006

  29. [37]

    Data is all you need: Finetuning llms for chip design via an automated design-data augmentation framework

    Kaiyan Chang, Kun Wang, Nan Yang, Ying Wang, Dantong Jin, Wenlong Zhu, Zhirong Chen, Cangyuan Li, Hao Yan, Yunhao Zhou, et al. Data is all you need: Finetuning llms for chip design via an automated design-data augmentation framework. In Proceedings of the 61st ACM/IEEE Design ...

  30. [38]

    Verilogeval: Evaluating large language models for verilog code generation

    Mingjie Liu, Nathaniel Pinckney, Brucek Khailany, and Haoxing Ren. Verilogeval: Evaluating large language models for verilog code generation. In2023 IEEE/ACM International Conference on Computer Aided Design (ICCAD), pages 1–8. IEEE, 2023

  31. [39]

    Circuitfusion: multimodal circuit represen- tation learning for agile chip design

    Wenji Fang, Shang Liu, Jing Wang, and Zhiyao Xie. Circuitfusion: multimodal circuit represen- tation learning for agile chip design. arXiv preprint arXiv:2505.02168, 2025

  32. [40]

    Pretraining graph neural networks for few-shot analog circuit modeling and design

    Kourosh Hakhamaneshi, Marcel Nassar, Mariano Phielipp, Pieter Abbeel, and Vladimir Sto- janovic. Pretraining graph neural networks for few-shot analog circuit modeling and design. IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems , 42(7): 2163–2173, 2022

  33. [41]

    A robust automated analog circuits classification involving a graph neural network and a novel data augmentation strategy

    Ali Deeb, Abdalrahman Ibrahim, Mohamed Salem, Joachim Pichler, Sergii Tkachov, Anjeza Karaj, Fadi Al Machot, and Kyamakya Kyandoghere. A robust automated analog circuits classification involving a graph neural network and a novel data augmentation strategy. Sensors, 23(6):2989, 2023

  34. [42]

    A graph attention network based system for robust analog circuits’ structure recognition involving a novel data augmentation technique

    Ali Deeb, Mohamed Salem, Abdalrahman Ibrahim, Joachim Pichler, Sergii Tkachov, Karaj Anjeza, Fadi Al Machot, and Kyandoghere Kyamakya. A graph attention network based system for robust analog circuits’ structure recognition involving a novel data augmentation technique. IEEE A...

  35. [43]

    Analogcoder: Analog circuit design via training-free code generation

    Yao Lai, Sungyoung Lee, Guojin Chen, Souradip Poddar, Mengkang Hu, David Z Pan, and Ping Luo. Analogcoder: Analog circuit design via training-free code generation. arXiv preprint arXiv:2405.14918, 2024

  36. [44]

    Spicepilot: Navigating spice code generation and simulation with ai guidance

    Deepak Vungarala, Sakila Alam, Arnob Ghosh, and Shaahin Angizi. Spicepilot: Navigating spice code generation and simulation with ai guidance. arXiv preprint arXiv:2410.20553, 2024

  37. [45]

    Auto-spice: Leveraging llms for dataset creation via automated spice netlist extraction from analog circuit diagrams

    Jitendra Bhandari, Vineet Bhat, Yuheng He, Siddharth Garg, Hamed Rahmani, and Ramesh Karri. Auto-spice: Leveraging llms for dataset creation via automated spice netlist extraction from analog circuit diagrams. arXiv preprint arXiv:2411.14299, 2024

  38. [46]

    Paragraph: Layout parasitics and device parameter prediction using graph neural networks

    Haoxing Ren, George F Kokai, Walker J Turner, and Ting-Sheng Ku. Paragraph: Layout parasitics and device parameter prediction using graph neural networks. In2020 57th ACM/IEEE Design Automation Conference (DAC), pages 1–6. IEEE, 2020. 12

  39. [47]

    Pretraining graph neural networks for few-shot analog circuit modeling and design

    Kourosh Hakhamaneshi, Marcel Nassar, Mariano Phielipp, Pieter Abbeel, and Vladimir Sto- janovic. Pretraining graph neural networks for few-shot analog circuit modeling and design. IEEE Trans. CAD of Integrated Circuits and Systems (TCAD), 2023

  40. [48]

    Semi-supervised classification with graph convolutional networks

    Thomas N Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. arXiv preprint arXiv:1609.02907, 2016

  41. [49]

    Inductive representation learning on large graphs

    Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs. Advances in neural information processing systems, 30, 2017

  42. [50]

    Graph attention networks

    Petar Velickovic, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Lio, Yoshua Bengio, et al. Graph attention networks. stat, 1050(20):10–48550, 2017

  43. [51]

    How powerful are graph neural networks? arXiv preprint arXiv:1810.00826, 2018

    Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural networks? arXiv preprint arXiv:1810.00826, 2018

  44. [52]

    Noception: A fast ppa prediction framework for network-on-chips using graph neural network

    Fuping Li, Ying Wang, Cheng Liu, Huawei Li, and Xiaowei Li. Noception: A fast ppa prediction framework for network-on-chips using graph neural network. In Design, Automation & Test in Europe (DATE), 2022

  45. [53]

    Masterrtl: A pre-synthesis ppa estimation framework for any rtl design

    Wenji Fang, Yao Lu, Shang Liu, Qijun Zhang, Ceyu Xu, Lisa Wu Wills, Hongce Zhang, and Zhiyao Xie. Masterrtl: A pre-synthesis ppa estimation framework for any rtl design. arXiv preprint arXiv:2311.08441, 2023

  46. [54]

    PowPrediCT: Cross-stage power prediction with circuit-transformation-aware learning

    Yufan Du, Zizheng Guo, Xun Jiang, Zhuomin Chai, Yuxiang Zhao, Yibo Lin, Runsheng Wang, and Ru Huang. PowPrediCT: Cross-stage power prediction with circuit-transformation-aware learning. In Proceedings of the 61st Design Automation Conference (DAC), 2024

  47. [55]

    Pan, and Yibo Lin

    Zizheng Guo, Mingjie Liu, Jiaqi Gu, Shuhan Zhang, David Z. Pan, and Yibo Lin. A timing engine inspired graph neural network model for pre-routing slack prediction. In Proceedings of the 59th Design Automation Conference (DAC), 2022

  48. [56]

    CircuitSeer: RTL post-pnr delay prediction via coupling functional and structural representation

    Sanjay Gandham, Joe Walston, Sourav Samanta, Lingxiang Yin, Hao Zheng, Mingjie Lin, and Stelios Diamantidis. CircuitSeer: RTL post-pnr delay prediction via coupling functional and structural representation. In Proceedings of the IEEE/ACM International Conference on Computer-Ai...

  49. [57]

    LHNN: Lattice hypergraph neural network for vlsi congestion prediction

    Bowen Wang, Guibao Shen, Dong Li, Jianye Hao, Wulong Liu, Yu Huang, Hongzhong Wu, Yibo Lin, Guangyong Chen, and Pheng-Ann Heng. LHNN: Lattice hypergraph neural network for vlsi congestion prediction. In Proceedings of the 59th Design Automation Conference (DAC), 2022

  50. [58]

    PDNNet: PDN-aware gnn-cnn heterogeneous network for dynamic ir drop prediction

    Yuxiang Zhao, Zhuomin Chai, Xun Jiang, Yibo Lin, Runsheng Wang, and Ru Huang. PDNNet: PDN-aware gnn-cnn heterogeneous network for dynamic ir drop prediction. arXiv preprint arXiv:2403.18569, 2024

  51. [59]

    GNN-RE: Graph neural networks for reverse engineering of gate-level netlists

    Lilas Alrahis, Abhrajit Sengupta, Johann Knechtel, Satwik Patnaik, Hani Saleh, Baker Mo- hammad, Mahmoud Al-Qutayri, and Ozgur Sinanoglu. GNN-RE: Graph neural networks for reverse engineering of gate-level netlists. IEEE Trans. on Computer-Aided Design of Integrated Circuits a...

  52. [60]

    Appgnn: Approximation-aware functional reverse engineering using graph neural networks

    Tim Bücher, Lilas Alrahis, Guilherme Paim, Sergio Bampi, Ozgur Sinanoglu, and Hussam Amrouch. Appgnn: Approximation-aware functional reverse engineering using graph neural networks. In Proceedings of the 41st IEEE/ACM International Conference on Computer-Aided Design, pages 1–9, 2022

  53. [61]

    Graph of circuits with gnn for exploring the optimal design space

    Aditya Hemant Shahane, Swapna Manjiri, Ankesh Jain, and Sandeep Kumar. Graph of circuits with gnn for exploring the optimal design space. In NeurIPS, 2023

  54. [62]

    Circuit-gnn: A graph neural network for transistor-level modeling of analog circuit hierarchies

    Zhengfeng Wu and Ioannis Savidis. Circuit-gnn: A graph neural network for transistor-level modeling of analog circuit hierarchies. In Proc. IEEE International Symposium on Circuits and Systems (ISCAS), 2023. 13

  55. [63]

    Khamis and Mohammed Agamy

    Ahmed K. Khamis and Mohammed Agamy. Circuit topology aware gnn-based multi-variable model for dc-dc converters dynamics prediction in ccm and dcm. Neural Computing and Applications, 36:20807–20822, 2024

  56. [64]

    Turner, George F

    Mingjie Liu, Walker J. Turner, George F. Kokai, Brucek Khailany, David Z. Pan, and Haoxing Ren. Parasitic-aware analog circuit sizing with graph neural networks and bayesian optimization. In Proc. Design Automation and Test in Europe (DATE), 2021

  57. [65]

    Hao Chen, Keren Zhu, Mingjie Liu, Xiyuan Tang, Nan Sun, and David Z. Pan. Universal symmetry constraint extraction for analog and mixed-signal circuits with graph neural networks. In Proc. ACM/IEEE Design Automation Conference (DAC), 2021

  58. [66]

    Pulserf: Physics augmented ml mod- eling and synthesis for high-frequency rfic design

    Hyunsu Chae, Hao Yu, Sensen Li, and David Z Pan. Pulserf: Physics augmented ml mod- eling and synthesis for high-frequency rfic design. In Proceedings of the 43rd IEEE/ACM International Conference on Computer-Aided Design, pages 1–9, 2024

  59. [67]

    Gnn-based hierarchi- cal annotation for analog circuits

    Kishor Kunal, Tonmoy Dhar, Meghna Madhusudan, Jitesh Poojary, Arvind K Sharma, Wenbin Xu, Steven M Burns, Jiang Hu, Ramesh Harjani, and Sachin S Sapatnekar. Gnn-based hierarchi- cal annotation for analog circuits. IEEE Transactions on Computer-Aided Design of Integrated Circui...

  60. [68]

    Graph attention-based symmetry constraint extraction for analog circuits

    Qi Xu, Lijie Wang, Jing Wang, Lin Cheng, Song Chen, and Yi Kang. Graph attention-based symmetry constraint extraction for analog circuits. IEEE Transactions on Circuits and Systems I: Regular Papers, 2024

  61. [69]

    Cktgnn: Circuit graph neural network for electronic design automation.arXiv preprint arXiv:2308.16406, 2023

    Zehao Dong, Weidong Cao, Muhan Zhang, Dacheng Tao, Yixin Chen, and Xuan Zhang. Cktgnn: Circuit graph neural network for electronic design automation.arXiv preprint arXiv:2308.16406, 2023

  62. [70]

    Analoggym: An open and practical testing suite for analog circuit synthesis

    Jintao Li, Haochang Zhi, Ruiyu Lyu, Wangzhen Li, Zhaori Bi, Keren Zhu, Yanhan Zeng, Weiwei Shan, Changhao Yan, Fan Yang, et al. Analoggym: An open and practical testing suite for analog circuit synthesis. In Proceedings of the 43rd IEEE/ACM International Conference on Computer...

  63. [71]

    Aicircuit: A multi-level dataset and benchmark for ai-driven analog integrated circuit design

    Asal Mehradfar, Xuzhe Zhao, Yue Niu, Sara Babakniya, Mahdi Alesheikh, Hamidreza Aghasi, and Salman Avestimehr. Aicircuit: A multi-level dataset and benchmark for ai-driven analog integrated circuit design. arXiv preprint arXiv:2407.18272, 2024

  64. [72]

    Deepergcn: All you need to train deeper gcns

    Guohao Li, Chenxin Xiong, Ali Thabet, and Bernard Ghanem. Deepergcn: All you need to train deeper gcns. arXiv preprint arXiv:2006.07739, 2020

  65. [73]

    Analoggenie: A generative engine for automatic discovery of analog circuit topologies

    Jian Gao, Weidong Cao, Junyi Yang, and Xuan Zhang. Analoggenie: A generative engine for automatic discovery of analog circuit topologies. arXiv preprint arXiv:2503.00205, 2025

  66. [74]

    Baker, Yuan-En Sun, Qi Tang, and Bao Wang

    Shih-Hsin Wang, Yuhao Huang, Justin M. Baker, Yuan-En Sun, Qi Tang, and Bao Wang. A theoretically-principled sparse, connected, and rigid graph representation of molecules. In The Thirteenth International Conference on Learning Representations , 2025. URL https: //openreview.n...

  67. [75]

    Domain knowledge-infused deep learning for automated analog/radio-frequency circuit parameter optimization

    Weidong Cao, Mouhacine Benosman, Xuan Zhang, and Rui Ma. Domain knowledge-infused deep learning for automated analog/radio-frequency circuit parameter optimization. In Proceed- ings of the 59th ACM/IEEE Design Automation Conference, pages 1015–1020, 2022

  68. [76]

    Rose: Robust analog circuit parameter optimization with sampling-efficient reinforcement learning

    Jian Gao, Weidong Cao, and Xuan Zhang. Rose: Robust analog circuit parameter optimization with sampling-efficient reinforcement learning. In 2023 60th ACM/IEEE Design Automation Conference (DAC), pages 1–6. IEEE, 2023

  69. [77]

    Rose-opt: Robust and efficient analog circuit parameter optimization with knowledge-infused reinforce- ment learning

    Weidong Cao, Jian Gao, Tianrui Ma, Rui Ma, Mouhacine Benosman, and Xuan Zhang. Rose-opt: Robust and efficient analog circuit parameter optimization with knowledge-infused reinforce- ment learning. IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems, 2...

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.