Skip to content

Commit

Permalink
Update OpenROAD (#2118)
Browse files Browse the repository at this point in the history
~ `openroad_app` -> `da0053d` to fix an issue with antenna repair
  • Loading branch information
donn authored Apr 21, 2024
1 parent ad7a11f commit 337ffbf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dependencies/tool_metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
in_install: false
- name: openroad_app
repo: https://github.com/The-OpenROAD-Project/OpenROAD
commit: 0889970d1790a2617e69f253221b8bd7626e51dc
commit: da0053d7b0014ab9c87ea148875ff6c2a0f9b658
in_install: false
- name: git
repo: https://github.com/git/git
Expand Down
6 changes: 3 additions & 3 deletions scripts/openroad/irdrop.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ if { [info exists ::env(VSRC_LOC_FILES)] } {
foreach {net vsrc_file} "$::env(VSRC_LOC_FILES)" {
set arg_list [list]
lappend arg_list -net $net
lappend arg_list -outfile $::env(_tmp_save_rpt_prefix)-$net.rpt
lappend arg_list -voltage_file $::env(_tmp_save_rpt_prefix)-$net.rpt
lappend arg_list -vsrc $vsrc_file
analyze_power_grid {*}$arg_list
}
} else {
foreach net "$::env(VDD_NETS)" {
set arg_list [list]
lappend arg_list -net $net
lappend arg_list -outfile $::env(_tmp_save_rpt_prefix)-$net.rpt
lappend arg_list -voltage_file $::env(_tmp_save_rpt_prefix)-$net.rpt
analyze_power_grid {*}$arg_list
}
foreach net "$::env(GND_NETS)" {
set arg_list [list]
lappend arg_list -net $net
lappend arg_list -outfile $::env(_tmp_save_rpt_prefix)-$net.rpt
lappend arg_list -voltage_file $::env(_tmp_save_rpt_prefix)-$net.rpt
set_pdnsim_net_voltage -net $net -voltage 0
analyze_power_grid {*}$arg_list
}
Expand Down

0 comments on commit 337ffbf

Please sign in to comment.