Skip to content

Commit 3b01a13

Browse files
authored
Merge pull request #2100 from gudeh/gpl-timing-driven-defaults
gpl: include default overflow threshold values in gpl script
2 parents f8d87d5 + 4f6fd3b commit 3b01a13

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

flow/scripts/global_place.tcl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,16 @@ if {[info exist ::env(PLACE_DENSITY_LB_ADDON)]} {
2929
}
3030

3131
set global_placement_args {}
32+
33+
# Parameters for routability mode in global placement
3234
if {$::env(GPL_ROUTABILITY_DRIVEN)} {
3335
lappend global_placement_args {-routability_driven}
3436
if { [info exists ::env(GPL_TARGET_RC)] } {
3537
lappend global_placement_args {-routability_target_rc_metric} $::env(GPL_TARGET_RC)
3638
}
3739
}
3840

41+
# Parameters for timing driven mode in global placement
3942
if {$::env(GPL_TIMING_DRIVEN)} {
4043
lappend global_placement_args {-timing_driven}
4144
}

0 commit comments

Comments
 (0)