Skip to content

Commit

Permalink
Fix FP_DEF_TEMPLATE being overriden
Browse files Browse the repository at this point in the history
similar issue to The-OpenROAD-Project#2017 

Signed-off-by: Uri Shaked <[email protected]>
  • Loading branch information
urish authored Nov 1, 2023
1 parent 6ab36bf commit a5192d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tcl_commands/placement.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ proc run_placement {args} {
# useful for very tiny designs
random_global_placement
} else {
if { $::env(FP_IO_MODE) == 0 && ![info exists ::env(FP_PIN_ORDER_CFG)] } {
if { $::env(FP_IO_MODE) == 0 && ![info exists ::env(FP_PIN_ORDER_CFG)] && ![info exists ::env(FP_DEF_TEMPLATE)] } {
global_placement_or -skip_io -name global_skip_io -log $::env(placement_logs)/global_skip_io.log
place_io -outdir $::env(placement_tmpfiles) -log $::env(placement_logs)/io.log
}
Expand Down

0 comments on commit a5192d2

Please sign in to comment.