forked from hdl/bazel_rules_hdl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Synthesis and P&R: Move closer to OpenROAD-flow-scripts
Synthesis: This commit adds a custom abc.script from OpenROAD-flow-scripts. This commit also modifies the synthesis script. It adds 2 new steps: extract adders - it tries to map addition chains to PDK specific full adder and half adder improving overall performance. Runs only when `adder_mapping` attr is provided. tie logic cells - it runs `hilomap` pass. P&R: This commit changes output_db file extention to .odb. OpenROAD file explorer only allows for .odb to be opened from GUI. Allow user to disable `improve_placement` pass during resize step. It can cause cell overlapping both by not maintaining sufficient cell to cell spacing as well as true cell overlapping. Some other minor changes to the P&R scripts. Signed-off-by: Maciej Dudek <[email protected]>
- Loading branch information
Showing
10 changed files
with
111 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ package( | |
) | ||
|
||
exports_files(["synth.tcl"]) | ||
exports_files(["abc.script"]) | ||
|
||
pkg_tar( | ||
name = "yosys", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
&get -n | ||
&st | ||
&dch | ||
&nf | ||
&put | ||
&get -n | ||
&st | ||
&syn2 | ||
&if -g -K 6 | ||
&synch2 | ||
&nf | ||
&put | ||
&get -n | ||
&st | ||
&syn2 | ||
&if -g -K 6 | ||
&synch2 | ||
&nf | ||
&put | ||
&get -n | ||
&st | ||
&syn2 | ||
&if -g -K 6 | ||
&synch2 | ||
&nf | ||
&put | ||
&get -n | ||
&st | ||
&syn2 | ||
&if -g -K 6 | ||
&synch2 | ||
&nf | ||
&put | ||
&get -n | ||
&st | ||
&syn2 | ||
&if -g -K 6 | ||
&synch2 | ||
&nf | ||
&put | ||
buffer -c | ||
topo | ||
stime -c | ||
upsize -c | ||
dnsize -c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters