-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kareem Farid <[email protected]>
- Loading branch information
1 parent
13cd748
commit 2a2a8a5
Showing
3 changed files
with
73 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
source $::env(SCRIPTS_DIR)/openroad/common/io.tcl | ||
|
||
read_current_odb | ||
|
||
if { $::env(RMP_TARGET) == "timing" } { | ||
repair_design | ||
repair_timing | ||
} | ||
set arg_list [list] | ||
lappend arg_list -tiehi_port $::env(SYNTH_TIEHI_CELL) | ||
lappend arg_list -tielo_port $::env(SYNTH_TIELO_CELL) | ||
lappend arg_list -work_dir $::env(STEP_DIR) | ||
lappend arg_list -abc_logfile $::env(_RMP_ABC_LOG) | ||
lappend arg_list -liberty_file $::env(_RMP_LIB) | ||
lappend arg_list -target $::env(RMP_TARGET) | ||
if { [info exists ::env(RMP_DEPTH_THRESHOLD)] } { | ||
lappend arg_list -depth_threshold $::env(RMP_DEPTH_THRESHOLD) | ||
} | ||
if { [info exists ::env(RMP_SLACK_THRESHOLD)] } { | ||
lappend arg_list -slack_threshold $::env(RMP_SLACK_THRESHOLD) | ||
} | ||
restructure {*}$arg_list | ||
remove_buffers | ||
if { $::env(RMP_TARGET) == "timing" } { | ||
repair_design | ||
repair_timing | ||
remove_buffers | ||
} |
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