REVIEW 4 major objections 5 minor 55 references
Aligning Netlist to Source Code using SynAlign
T0 review · 4 major / 5 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read SynAlign automatically maps annotated post-optimized netlists to original source code without source locators.
desk verdict First credible graph-alignment approach for netlist-to-source mapping, but the headline accuracy numbers are measured on renamed netlists and dont_touch-preserved nets, so the strong claims outrun the evaluation. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the directed net graph with Resolved Points (RPs): nets in both the reference graph (G_ref) and the synthesized graph (G_synth) that have been confidently aligned. Start Resolved Points (SRPs) and End Resolved Points (ERPs) are computed for each net through topological traversal from anchor points; a net in G_synth whose SRPs and ERPs are identical to a net in G_ref is a full match, while half matching accepts a match on only one side, and partial matching scores candidates by shared resolved neighbors. Surrounding matching uses the observation that if all directly connected nodes share one source line, the unresolved node is likely at that line too. The algorithm deliberately aligns the sequential subgraph first (typically about 14% of the netlist), then the combinational logic, keeping the overall complexity below quadratic.
What would settle it
Take a moderately sized design, synthesize it with aggressive retiming and with every internal net renamed to a fresh temporary name (keeping only top-level ports), then run SynAlign on a random sample of annotated cells; if accuracy does not fall well below the reported 50–93% range, the anchor-dependence premise is contradicted, and if it does drop, the noise-tolerance claim is bounded by anchor survival.
Extended reading notes
Core claim
The paper's central claim is that alignment between a post-synthesis netlist and source code is possible from structure alone: if the synthesis tool preserves a small fraction of net names (typically 5–20%) plus the top-level I/O, those anchors supply start and end points, and iterative full, half, partial, and surrounding matching over the directed net graphs walks the remaining nets back to source-code lines. Across all examined benchmarks, SynAlign correctly identifies the source code location 50–93% of the time, with full and surrounding matches reported as perfectly accurate and half/partial matches carrying the error. The NL2NL experiments show tolerance to approximately 60% random net renames without accuracy loss, and even 100% combinational-name noise when sequential names are preserved. The authors present this as the first automated correlation between netlists and source code separated by multiple tools, including for fully flattened and optimized designs.
Load-bearing premise
The method assumes that synthesis leaves enough stable reference points—top-level inputs/outputs plus the few preserved net names—and enough of the surrounding connection structure intact for matches to propagate; if a flow renames or optimizes away almost every anchor and breaks the local topology, the alignment has no reliable starting point and accuracy degrades.
Editorial extensions
If this is right
- Frontend designers can receive early timing and power feedback tied to specific source lines before the backend handoff.
- Design teams can enable flattening and retiming without giving up the ability to trace critical-path cells back to RTL.
- Backend-to-frontend timing reviews can shift from manual, multi-day netlist tracing to a lookup that returns a source line in seconds.
- The same structural approach works across synthesis tools and HDLs, provided the HDL can emit Verilog with line-of-code information.
- SynAlign can produce useful mappings even when a large fraction of net names are changed during synthesis, as long as enough sequential anchors survive.
Reading between the lines
- Because the paper ties accuracy to the survival of anchor links, a natural extension is to predict per-design confidence from the measured fraction of preserved net names, turning the 50–93% range into a flow-specific estimate.
- The anchor-plus-topology recipe might transfer to tracing other transformed representations, such as optimized compiler IR back to source, though the paper only demonstrates the synthesis setting and synthesis noise is unusually high.
- A product extension the paper leaves implicit is a GUI that lets a user click a critical-path cell and jump directly to the corresponding RTL line, with full and surrounding matches flagged as high-confidence and half/partial matches flagged as uncertain.
- Since full and surrounding matches are reported as always accurate while half and partial matches carry the error, a practical deployment could surface only high-confidence matches by default and hide lower-confidence ones.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper presents SynAlign, a tool that aims to automatically map annotated post-synthesis netlists back to the original HDL source code without relying on source locators. The method builds a reference graph (Gre_f) from HDL with line-of-code information and a synthesized graph (Gsynth) from the netlist, then aligns them using anchor points (preserved names and top-level I/O), full+half matching, partial matching, and surrounding matching. The evaluation uses two approaches: an automated netlist-to-netlist (NL2NL) test where a fraction of net names are randomly renamed, and a manual accuracy evaluation where selected variables are preserved with dontTouch/keep directives before synthesis. The paper reports 50-93% manual accuracy across designs and claims tolerance to up to 61% design net changes.
Significance. If the claimed results hold, SynAlign would give chip designers a practical way to trace critical-path cells to RTL lines across multiple synthesis tools, which is a real pain point in iterative design. The manuscript provides a clearly specified algorithm at pseudocode level and a reproducible NL2NL evaluation methodology, which are strengths. However, the evaluation does not currently exercise the central use case: aligning arbitrary post-optimized cells that were not explicitly preserved through synthesis. The reported accuracy figures apply to specially protected nets, and the noise-tolerance claim is based on renaming, not structural transformations. The core idea is promising and the algorithmic description is a useful starting point, but the evidence presented is not yet sufficient to support the paper's headline claims.
major comments (4)
- [Abstract; Section 3.1, Listing 4, Figure 5] The claim that SynAlign 'can tolerate up to 61% design net changes without impacting alignment accuracy' is not supported by the NL2NL evaluation. Listing 4 shows that Vsynth is generated by appending '_changed' to a randomly selected subset of net names in Vref; no synthesis transformations such as flattening, retiming, resource sharing, or logic restructuring are applied. The graph topology therefore remains identical, and the experiment measures robustness to name loss, not structural change. The abstract should clearly state that this is name-noise tolerance, or the experiment must be redesigned to include actual synthesis-induced modifications.
- [Section 3.2, steps 1-3; Section 4] The Manual Accuracy Evaluation only tests nets that were explicitly preserved through synthesis. Step 1 marks the left-hand side of selected assignment lines as 'dontTouch', Step 3 requires 'keep' or 'set_dont_touch' plus punching through the design in DC, and then the annotated net name is manually changed. The resulting 50-93% accuracy is therefore an accuracy for deliberately preserved nets, not for arbitrary post-optimized netlist cells. Designers tracing critical-path cells would typically annotate ordinary combinational gates or muxes that are not protected. Section 4 concedes that 'This work relies on the availability of Anchor links,' but the experiments never measure behavior when anchors are scarce or when the target net is not preserved. An evaluation on non-preserved, optimization-heavy nets, or a clearly scoped claim that the method only applies to preserved nets, is needed.
- [Section 2.3; Table 2; Figure 8] The calc_wt() weighting function in Listing 3 is introduced as being 'based on experiments with benchmarks PipelinedCPU and SingleCycleCPU', and those same two benchmarks appear in the evaluation results in Table 2. Since Figure 8 shows that Partial Matching contributes a substantial fraction of alignments (about 50% for RocketTile_DC), tuning this weighting on the same designs used for reporting accuracy risks self-fitting. The authors should either hold out the tuning designs, report cross-validated accuracy, or perform a sensitivity analysis over the 5x multiplier to show that the reported results are not dependent on this choice.
- [Section 2; Table 1] The claim that SynAlign's overall time complexity is 'less than quadratic' is not established. The per-stage complexity O((md-a)*m'd) is quadratic in the worst case unless additional structural properties are proved, and the statement that combinational cells are separated by sequential cells is an informal observation rather than a bound. If the complexity claim is a contribution, the paper should either prove a sub-quadratic bound for the targeted design class or explicitly present the complexity as empirical. As written, Table 1 does not substantiate the 'less than quadratic' statement.
minor comments (5)
- [Section 2.3, Listing 3] The calc_wt() function divides by mismatches, but if the synthesized set and reference set are identical, mismatches is zero and the division is undefined. The paper should specify how this edge case is handled (e.g., returning a large constant).
- [Section 3.3] The heading 'Performace evaluation' contains a typo; it should read 'Performance evaluation'.
- [Section 3.2, paragraph after step 5] The text says 'Figure 5 shows manual marking accuracies,' but Figure 5 is the NL2NL accuracy plot for RocketTile. The manual accuracy results appear to be in Figure 8. This cross-reference should be corrected.
- [Section 2, paragraph before Section 2.1] 'Inn digital systems like RocketTile' should read 'In digital systems like RocketTile'.
- [Figure 8 description] The description of the crossed part of the bars as 'marked with X' is difficult to interpret without a visible legend in the text; a textual description or a proper legend would improve clarity.
Circularity Check
Mild self-tuning of the partial-matching weight on two evaluation benchmarks; the central alignment claim is otherwise structurally independent.
-
fitted input called prediction
[Section 2.3 (Partial Matching, Listing 3) with evaluation benchmarks in Table 2 and Figures 6/8]
"We formulated a calc_wt() function based on experiments with benchmarks PipelinedCPU and SingleCycleCPU [27, 28], where match_wt is directly proportional to the number of matches."
The free weight 5 in calc_wt() was chosen on PipelinedCPU and SingleCycleCPU, and those same two designs are then used in the reported accuracy evaluation (Table 2; Figures 6 and 8). For those designs the accuracy result is partially a report of the tuning set rather than an out-of-sample prediction. The circularity is bounded: the weight is a coarse heuristic rather than a fitted accuracy model, most benchmarks (Mac, Ibtida, Marmot, RocketTile, UnoptRocketTile) were not used to set it, and the NL2NL and manual protocols provide independent structural checks, so the central claim does not reduce to the fit.
full rationale
The main derivation chain is SynAlign's anchor-based graph alignment: same-name Anchor Points seed resolved points, and Full+Half, Partial, and Surrounding matching propagate alignments through graph topology. That chain is not defined in terms of the output it predicts; aligning a synthesized net to a source line requires real structural evidence. The 61% tolerance figure comes from NL2NL testing, which only renames nets and leaves topology unchanged; that is a limited evaluation rather than a circular reduction, and the manual evaluation, although restricted to dont_touch-preserved variables, still requires the matcher to find the correct LoC after the annotated net's name is manually changed. The only concrete tuning loop is calc_wt() being developed on PipelinedCPU and SingleCycleCPU while those designs also appear in the benchmark tables; this mildly compromises those two data points but does not force the reported 50-93% accuracy. Overall the paper is not circular in its core method; the main weaknesses are external-validity limitations, not self-derivation.
Assumptions & free parameters
free parameters (2)
- calc_wt weight multiplier (5) =
5
- k (average surrounding-node count) =
5
assumptions (4)
- domain assumption Synthesis tools preserve a sufficient set of anchor net names (top-level ports and some sequential nets).
- domain assumption The structural topology of the reference and synthesized graphs remains similar enough that SRP/ERP sets identify correct correspondences after flattening and retiming.
- domain assumption A reference graph with line-of-code information can be generated for any HDL translatable to Verilog.
- domain assumption The datatype of driver nodes for equivalent nets is preserved through synthesis.
Cite this review
Pith. "Pith review of Aligning Netlist to Source Code using SynAlign." pith.science (2026). https://pith.science/paper/NXW5DY5T
@misc{pith2026250100921,
author = {Pith},
title = {Pith review of: Aligning Netlist to Source Code using SynAlign},
year = {2026},
howpublished = {\url{https://pith.science/paper/NXW5DY5T}},
note = {Machine review of arXiv:2501.00921}
}
read the original abstract
In current chip design processes, using multiple tools to obtain a gate-level netlist often results in the loss of source code correlation. SynAlign addresses this challenge by automating the alignment process, simplifying iterative design, reducing overhead, and maintaining correlation across various tools. This enhances the efficiency and effectiveness of chip design workflows. Improving characteristics such as frequency through iterative design is essential for enhancing accelerators and chip designs. While synthesis tools produce netlists with critical path information, designers often lack the tools to trace these netlist cells back to their original source code. Mapping netlist components to source code provides early feedback on timing and power for frontend designers. SynAlign automatically aligns post-optimized netlists with the original source code without altering compilers or synthesis processes. Its alignment strategy relies on the consistent design structure throughout the chip design cycle, even with changes in compiler flow. This consistency allows engineers to maintain a correlation between modified designs and the original source code across various tools. Remarkably, SynAlign can tolerate up to 61\% design net changes without impacting alignment accuracy.
Figures
Figures from the paper (9 more)
Reference graph
Works this paper leans on
-
[1]
Chisel Users Community, Get Me Verilog. https://www.chisel-lang. org/docs/resources/faqs#get-me-verilog. Online; accessed on 16 April 2024
work page 2024
-
[2]
Circt weekly discussion notes. https://docs.google.com/ document/d/1fOSRdyZR2w75D87yU2Ma9h2-_lEPL4NxvhJGJd- s5pk/edit#heading=h.56zyi32ygm3b
-
[3]
Circt weekly discussion notes. https://docs.google.com/ document/d/1fOSRdyZR2w75D87yU2Ma9h2-_lEPL4NxvhJGJd- s5pk/edit#heading=h.awos2k698n33
-
[4]
https://clang.llvm.org/doxygen/ group__CINDEX__LOCATIONS.html#details
clang: Physical source locations. https://clang.llvm.org/doxygen/ group__CINDEX__LOCATIONS.html#details
-
[5]
https://github.com/ chipsalliance/rocket-chip?tab=readme-ov-file#building-the-project
Generating verilog in Rocket Chip Generator. https://github.com/ chipsalliance/rocket-chip?tab=readme-ov-file#building-the-project . Online; accessed on 16 April 2024
work page 2024
-
[6]
https://llvm.org/docs/ HowToUpdateDebugInfo.html#when-to-drop-an-instruction- location
How to update debug info: A guide for llvm pass authors — llvm 17.0.0git documentation. https://llvm.org/docs/ HowToUpdateDebugInfo.html#when-to-drop-an-instruction- location
-
[7]
https://llvm.org/docs/ HowToUpdateDebugInfo.html
How to update debug info: A guide for llvm pass authors — llvm 17.0.0git documentation. https://llvm.org/docs/ HowToUpdateDebugInfo.html
-
[8]
Ideas and projects - xls: Accelerated hw synthesis. https://google. github.io/xls/ideas_and_projects
Show all 55 references
-
[9]
https://github.com/nturley/netlistsvg
netlistsvg. https://github.com/nturley/netlistsvg. Online; accessed on 21 May 2019
2019
-
[10]
https://web.open-source-silicon.dev/t/442348/has-anyone- tried-using-the-keep-synthesis-attribute-is-follo
openLane. https://web.open-source-silicon.dev/t/442348/has-anyone- tried-using-the-keep-synthesis-attribute-is-follo . Online; accessed on 16 April 2024
2024
-
[11]
https://llvm.org/docs/SourceLevelDebugging.html
Source level debugging with llvm — llvm 17.0.0git documentation. https://llvm.org/docs/SourceLevelDebugging.html
-
[12]
https://www.synopsys.com/verification/debug/verdi.html
verdi. https://www.synopsys.com/verification/debug/verdi.html
-
[13]
https://discourse.llvm.org/t/get-source-location-details-from-ir- code-function-pass/57372 , Jan 2021
Get source location details from ir code (function pass) 2021. https://discourse.llvm.org/t/get-source-location-details-from-ir- code-function-pass/57372 , Jan 2021
2021
-
[14]
https://github.com/google/xls, 2021
XLS: Accelerated HW Synthesis. https://github.com/google/xls, 2021. Online; accessed on 9 August 2021. 11
2021
-
[15]
https://github.com/llvm/circt,
CIRCT: Circuit IR Compilers and Tools. https://github.com/llvm/circt,
-
[16]
Patterson, Brian Richards, Colin Schmidt, Stephen Twigg, Huy Vo, and Andrew Water- man
Krste Asanović, Rimas Avizienis, Jonathan Bachrach, Scott Beamer, David Biancolin, Christopher Celio, Henry Cook, Daniel Dabbelt, John Hauser, Adam Izraelevitz, Sagar Karandikar, Ben Keller, Donggyu Kim, John Koenig, Yunsup Lee, Eric Love, Martin Maas, Albert Magyar, Howard Ma...
2016
-
[17]
Chisel: constructing hardware in a scala embedded language
Jonathan Bachrach, Huy Vo, Brian Richards, Yunsup Lee, Andrew Waterman, Rimas Avižienis, John Wawrzynek, and Krste Asanović. Chisel: constructing hardware in a scala embedded language. In DAC Design Automation Conference 2012, pages 1212–1221. IEEE, 2012
2012
-
[18]
Balogh, G.R
G.D. Balogh, G.R. Mudalige, I.Z. Reguly, S.F. Antao, and C. Bertolli. Op2-clang: A source-to-source translator using clang/llvm libtooling. In 2018 IEEE/ACM 5th Workshop on the LLVM Compiler Infrastructure in HPC (LLVM-HPC), pages 59–70, 2018
2018
-
[19]
Message- passing algorithms for sparse network alignment
Mohsen Bayati, David F Gleich, Amin Saberi, and Ying Wang. Message- passing algorithms for sparse network alignment. ACM Transactions on Knowledge Discovery from Data (TKDD) , 7(1):1–31, 2013
2013
-
[20]
Utils: add source locators by mwachs5 · pull request 2496 · chipsalliance/chisel
chipsalliance. Utils: add source locators by mwachs5 · pull request 2496 · chipsalliance/chisel. https://github.com/chipsalliance/chisel3/ pull/2496, Apr
-
[21]
Source information via macros, rfc · issue 147 · chip- salliance/chisel
chipsalliance. Source information via macros, rfc · issue 147 · chip- salliance/chisel. https://github.com/chipsalliance/chisel3/issues/147, Apr 2016
2016
-
[22]
Case study: Soc performance verification and static verification of rtl parameters
Prokash Ghosh and Srivastava Rohit. Case study: Soc performance verification and static verification of rtl parameters. In 2019 20th Inter- national Workshop on Microprocessor/SoC Test, Security and Verification (MTV), pages 65–72. IEEE, 2019
2019
-
[23]
Timothy Edwards, Russell Friesenhahn, matt venn, Amr A
Hagiwara-shc, Jeff DiCorpo, Manar, Marwan Abbas, Kareem Farid, Mohamed Kassem, R. Timothy Edwards, Russell Friesenhahn, matt venn, Amr A. Gouhar, Mohamed Shalan. Marmot RISC-V SoC. https: //github.com/Hagiwara-shc/marmot_asic.git, 2022. Online; accessed on March 2024
2022
-
[24]
Refining network alignment to improve matched neighborhood con- sistency
Mark Heimann, Xiyuan Chen, Fatemeh Vahedian, and Danai Koutra. Refining network alignment to improve matched neighborhood con- sistency. In Proceedings of the 2021 SIAM International Conference on Data Mining (SDM), pages 172–180. SIAM
2021
-
[25]
Regal: Representation learning-based graph alignment
Mark Heimann, Haoming Shen, Tara Safavi, and Danai Koutra. Regal: Representation learning-based graph alignment. In Proceedings of the 27th ACM international conference on information and knowledge management, pages 117–126, 2018
2018
-
[26]
James Cherry. OpenSTA. https://github.com/abk-openroad/OpenSTA. Online; accessed on 5 September 2019
2019
-
[27]
dinocpu/cpu.scala (pipelinedcpu) at main · jlpteach- ing/dinocpu
jlpteaching. dinocpu/cpu.scala (pipelinedcpu) at main · jlpteach- ing/dinocpu. https://github.com/jlpteaching/dinocpu/blob/main/src/ main/scala/pipelined/cpu.scala
-
[28]
dinocpu/cpu.scala (singlecyclecpu) at main · jlpteach- ing/dinocpu
jlpteaching. dinocpu/cpu.scala (singlecyclecpu) at main · jlpteach- ing/dinocpu. https://github.com/jlpteaching/dinocpu/blob/main/src/ main/scala/single-cycle/cpu.scala
-
[29]
Network alignment: Theory, algorithms, and applica- tions
Ehsan Kazemi. Network alignment: Theory, algorithms, and applica- tions. Technical report, EPFL, 2016
2016
-
[30]
The graph isomor- phism problem: its structural complexity
Johannes Kobler, Uwe Schöning, and Jacobo Torán. The graph isomor- phism problem: its structural complexity . Springer Science & Business Media, 2012
2012
-
[31]
Release chisel v3.5.0 · chipsalliance/chisel
Jack Koenig. Release chisel v3.5.0 · chipsalliance/chisel. https://github. com/chipsalliance/chisel3/releases/tag/v3.5.0, Jan 2001
2001
-
[32]
Release chisel v3.5.5 · chipsalliance/chisel
Jack Koenig. Release chisel v3.5.5 · chipsalliance/chisel. https://github. com/chipsalliance/chisel3/releases/tag/v3.5.5, Nov 2001
2001
-
[33]
Release chisel v3.6.0-m1 · chipsalliance/chisel
Jack Koenig. Release chisel v3.6.0-m1 · chipsalliance/chisel. https: //github.com/chipsalliance/chisel3/releases/tag/v3.6.0-M1, Dec 2001
2001
-
[34]
Release chisel v3.6.0-m2 · chipsalliance/chisel
Jack Koenig. Release chisel v3.6.0-m2 · chipsalliance/chisel. https: //github.com/chipsalliance/chisel3/releases/tag/v3.6.0-M2, Jan 2001
2001
-
[35]
Aligning users across social networks using network embedding
Li Liu, William K Cheung, Xin Li, and Lejian Liao. Aligning users across social networks using network embedding. In Ijcai, volume 16, pages 1774–1780, 2016
2016
-
[36]
Design and Application of a Co-Simulation Framework for Chisel
Ryan Lund. Design and Application of a Co-Simulation Framework for Chisel. PhD thesis, MA thesis. EECS Department, University of California, Berkeley, 2021
2021
-
[37]
Reset logic verification of an iod at system on chip level using gatesim
Kakarlamudi Lakshmi Maidhili, Fazal Noorbasha, Allamsetty Vamsi, and Kakarla Hari Kishore. Reset logic verification of an iod at system on chip level using gatesim. International Journal, 8(7), 2020
2020
-
[38]
Understanding logic equivalence check (lec) flow and its challenges, and proposed solution
Priyambada Mishra. Understanding logic equivalence check (lec) flow and its challenges, and proposed solution. https://www.design- reuse.com/articles/51622/understanding-logic-equivalence-check- lec-flow-and-its-challenges-and-proposed-solution.html . Accessed: 2024-10-07
2024
-
[39]
Timothy Edwards, Amr A
Muhammad Hadir Khan, R. Timothy Edwards, Amr A. Gouhar, Manar, Mohamed Kassem, Mohamed Shalan, AireenAmirJalal, matt venn, Jeff DiCorpo. SoC - Google SKY130 Shuttle (ibtida). https://github.com/ hadirkhan10/caravel_ibtida_soc.git, 2021. Online; accessed on March 2024
2021
-
[40]
Equivalence checking of retimed circuits
Karolína Netolická et al. Equivalence checking of retimed circuits . PhD thesis, Massachusetts Institute of Technology, 2005
2005
-
[41]
Equality saturation theory exploration à la carte
Anjali Pal, Brett Saiki, Ryan Tjoa, Cynthia Richey, Amy Zhu, Oliver Flatt, Max Willsey, Zachary Tatlock, and Chandrakana Nandi. Equality saturation theory exploration à la carte. Proceedings of the ACM on Programming Languages, 7(OOPSLA2):1034–1062, 2023
2023
-
[42]
Verilog HDL: a guide to digital design and synthesis , volume 1
Samir Palnitkar. Verilog HDL: a guide to digital design and synthesis , volume 1. Prentice Hall Professional, 2003
2003
-
[43]
A Guide on Logical Equivalence Checking - Flow, Challenges, and Bene- fits
Prathmesh Oza Pratik Patel and Rakesh Parmar. A Guide on Logical Equivalence Checking - Flow, Challenges, and Bene- fits. https://www.design-reuse.com/articles/45547/a-guide-on-logical- equivalence-checking-flow-challenges-and-benefits.html
-
[44]
Timothy Edwards, Russell Friesenhahn, Johan Eu- phrosine, Amr A
Shashank, Jeff DiCorpo, Manar, Marwan Abbas, Kareem Farid, Mo- hamed Kassem, R. Timothy Edwards, Russell Friesenhahn, Johan Eu- phrosine, Amr A. Gouhar, matt venn, Mohamed Gaber, Mohamed Shalan. Dual mac unit array with a single sigmoid activation function. https://github.com/...
2022
-
[45]
There and back again: A netlist’s tale with much egraphin’
Gus Henry Smith, Zachary D Sisco, Thanawat Techaumnuaiwit, Jing- tao Xia, Vishal Canumalla, Andrew Cheung, Zachary Tatlock, Chan- drakana Nandi, and Jonathan Balkind. There and back again: A netlist’s tale with much egraphin’. arXiv preprint arXiv:2404.00786 , 2024
2024 arXiv
-
[46]
Design Compiler User Guide
Synopsys Inc. Design Compiler User Guide
-
[47]
Primetime static timing analysis.https://www.synopsys
Synopsys, Inc. Primetime static timing analysis.https://www.synopsys. com/implementation-and-signoff/signoff/primetime.html. Online; accessed on 26 April 2019
2019
-
[48]
The Verilog® hardware description language
Donald Thomas and Philip Moorby. The Verilog® hardware description language. Springer Science & Business Media, 2008
2008
-
[49]
LiveHD: A Productive Live Hardware Development Flow
Sheng-Hong Wang, Rafael Trapani Possignolo, Haven Blake Skinner, and Jose Renau. LiveHD: A Productive Live Hardware Development Flow. IEEE Micro, 40(4):67–75, 2020
2020
-
[50]
Yosys manual
Clifford Wolf. Yosys manual. Retrieved January, 16:2021, 2021
2021
-
[51]
Yosys Open SYnthesis Suite
Clifford Wolf. Yosys Open SYnthesis Suite. https://github.com/ YosysHQ/yosys, 2022. Online; accessed on December 2022
2022
-
[52]
Graph isomorphism problem
Viktor N Zemlyachenko, Nickolay M Korneenko, and Regina I Tyshke- vich. Graph isomorphism problem. Journal of Soviet Mathematics , 29:1426–1481, 1985
1985
-
[53]
Final: Fast attributed network align- ment
Si Zhang and Hanghang Tong. Final: Fast attributed network align- ment. In Proceedings of the 22nd ACM SIGKDD international conference on knowledge discovery and data mining , pages 1345–1354, 2016
2016
-
[54]
Caper: Coarsen, align, project, refine-a general multilevel framework for network alignment
Jing Zhu, Danai Koutra, and Mark Heimann. Caper: Coarsen, align, project, refine-a general multilevel framework for network alignment. 12 In Proceedings of the 31st ACM International Conference on Information & Knowledge Management, pages 4747–4751, 2022. 13
2022
-
[2022]
Online; accessed on 12 August 2022
2022
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.