You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if { $HAS_SRAM } {
gds noduplicates yes
puts "Detected an SRAM module"
foreach x $SRAM_MODULES {
puts "Pre-loading a maglef of the SRAM block: ${x}"
load $PDK_PATH/libs.ref/sky130_sram_macros/maglef/${x}.mag
}
}
This results in a log file that has
Detected an SRAM module
but no
Pre-loading a maglef of the SRAM block: ...
Changing the string to a list works.
if { $HAS_SRAM } {
gds noduplicates yes
puts "Detected an SRAM module"
foreach x [split $SRAM_MODULES " "] {
puts "Pre-loading a maglef of the SRAM block: ${x}"
load $PDK_PATH/libs.ref/sky130_sram_macros/maglef/${x}.mag
}
}
The text was updated successfully, but these errors were encountered:
Looking at files in
checks/drc_checks/magic
.The list of used sram modules is passed from python to tcl as a space delimited string
' '.join(sram_modules_in_gds
.However, the tcl tries to process this as a list.
This results in a log file that has
but no
Changing the string to a list works.
The text was updated successfully, but these errors were encountered: