Skip to content

Commit

Permalink
final_report: consistency, export in make should not have quotes
Browse files Browse the repository at this point in the history
fixes scripting to match convention of no quotes in makefile
export statements

Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
  • Loading branch information
oharboe committed Jan 13, 2025
1 parent 0cae61e commit caa28fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flow/scripts/final_report.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if {[env_var_exists_and_non_empty RCX_RULES]} {

# Static IR drop analysis
if {[env_var_exists_and_non_empty PWR_NETS_VOLTAGES]} {
dict for {pwrNetName pwrNetVoltage} {*}$::env(PWR_NETS_VOLTAGES) {
dict for {pwrNetName pwrNetVoltage} $::env(PWR_NETS_VOLTAGES) {
set_pdnsim_net_voltage -net ${pwrNetName} -voltage ${pwrNetVoltage}
analyze_power_grid -net ${pwrNetName} \
-error_file $::env(REPORTS_DIR)/${pwrNetName}.rpt
Expand All @@ -48,7 +48,7 @@ if {[env_var_exists_and_non_empty RCX_RULES]} {
puts "IR drop analysis for power nets is skipped because PWR_NETS_VOLTAGES is undefined"
}
if {[env_var_exists_and_non_empty GND_NETS_VOLTAGES]} {
dict for {gndNetName gndNetVoltage} {*}$::env(GND_NETS_VOLTAGES) {
dict for {gndNetName gndNetVoltage} $::env(GND_NETS_VOLTAGES) {
set_pdnsim_net_voltage -net ${gndNetName} -voltage ${gndNetVoltage}
analyze_power_grid -net ${gndNetName} \
-error_file $::env(REPORTS_DIR)/${gndNetName}.rpt
Expand Down

0 comments on commit caa28fa

Please sign in to comment.