File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ if {[env_var_exists_and_non_empty RCX_RULES]} {
3939
4040 # Static IR drop analysis
4141 if {[env_var_exists_and_non_empty PWR_NETS_VOLTAGES]} {
42- dict for {pwrNetName pwrNetVoltage} {*} $::env(PWR_NETS_VOLTAGES) {
42+ dict for {pwrNetName pwrNetVoltage} $::env(PWR_NETS_VOLTAGES) {
4343 set_pdnsim_net_voltage -net ${pwrNetName} -voltage ${pwrNetVoltage}
4444 analyze_power_grid -net ${pwrNetName} \
4545 -error_file $::env(REPORTS_DIR) /${pwrNetName} .rpt
@@ -48,7 +48,7 @@ if {[env_var_exists_and_non_empty RCX_RULES]} {
4848 puts " IR drop analysis for power nets is skipped because PWR_NETS_VOLTAGES is undefined"
4949 }
5050 if {[env_var_exists_and_non_empty GND_NETS_VOLTAGES]} {
51- dict for {gndNetName gndNetVoltage} {*} $::env(GND_NETS_VOLTAGES) {
51+ dict for {gndNetName gndNetVoltage} $::env(GND_NETS_VOLTAGES) {
5252 set_pdnsim_net_voltage -net ${gndNetName} -voltage ${gndNetVoltage}
5353 analyze_power_grid -net ${gndNetName} \
5454 -error_file $::env(REPORTS_DIR) /${gndNetName} .rpt
You can’t perform that action at this time.
0 commit comments