The-OpenROAD-Project-Attic / abc

Implementing physical synthesis and SDC support into ABC

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Physical ABC -- A Physical Aware Timing Optimization Tool

Physical ABC aims at improving the timing optimizaions done by ABC through adding physical-awareness by parsing a generated SPEF with the actual wire capacitances to be used during optimizations. Physical ABC in implemented by Scale Lab at Brown University as part of the OPENROAD project.

This is a fork and extension from open-source yosys tool as available here:

Along with the standard functionality provided by abc, Physical ABC aims to add support for physical aware timing optimizations, and better timing constraint handling by adding support to parse the sdc constraints file.

Website and Other Resources

For original abc documentation and installation please refer to:

Getting Started with Physical-Synthesis

Overall, the functionality of Physical ABC is very closely similar to standard abc with extra functionality added to the existing commands.

Physical-aware gate sizing and buffering:

Physical ABC aims at enabling the use of the actual wire capacitances from the generated SPEF file after placement into timing optimizations.

This feature is currently implemented within three commands buffer, upsize and dnsize, and it can be enabled by adding the flag -x while using the command.

ABC reads the spef from the file spef_output/netlist.spef which should exist in the running directory.

More information can be found by looking at the help of every command in ABC, for example buffer -h,

An example use case is as follows.

dnsize -x
buffer -x -p
upsize -x

Timing Constraints Parsing Through SDC Files

Physical ABC has added support for SDC file parsing through synopsys open source sdc parser. The parser is integrated into ABC, enabling passing of timing constraints through standard sdc syntax. the SDC parser in enabled by passing the -s flag to read_constr command in ABC.

A snippet of code demonstrating the use case is as follows.

read_constr -s myfile.sdc

Currently, while the parsing of all the sdc syntax is supported, due to limited support of ABC for timing constraints, very few timing constraints are realized by ABC, while the rest are mainly ignored. The current list of supported timing constraints include:

create_clock        #Support for target clock period
set_max_fanout      #Support for global max fanout
set_max_transition  #Support for global target slew 

We are working on adding support for other timing constraints in ABC.

Remark

This Repo is currently maintained by Marina Neseem marina_neseem@brown.edu. Consider also Soheil Hashemi soheil_hashemi@alumni.brown.edu who has started this effort.

About

Implementing physical synthesis and SDC support into ABC

License:Other


Languages

Language:C 96.5%Language:C++ 2.1%Language:Tcl 0.7%Language:HTML 0.4%Language:Makefile 0.2%Language:Objective-C 0.1%Language:Shell 0.0%Language:CMake 0.0%Language:Perl 0.0%Language:Batchfile 0.0%