Noah Moroze
03/04/2022, 9:19 PMMitch Bailey
03/04/2022, 10:22 PMextract unique notopports
or extract unique noports
instead of just extract unique
. (or maybe remove extract unique
all together). I believe this essentially enables virtual connections.
http://opencircuitdesign.com/magic/commandref/extract.htmlNoah Moroze
03/04/2022, 11:29 PMgds noduplicates true
gds read inputs/$sc_design.gds
# Extract layout to Spice netlist
load $sc_design -dereference
select top cell
foreach cell [instance list children] {
puts $cell
select cell $cell
port remove VPWR
port remove VGND
}
select top cell
extract no all
extract do local
extract unique notopports
extract
ext2spice lvs
ext2spice ${sc_design}.ext -o outputs/$sc_design.spice
Mitch Bailey
03/04/2022, 11:53 PMwrite_powered_verilog
in https://github.com/The-OpenROAD-Project/OpenLane/blob/master/scripts/tcl_commands/lvs.tcl).Tim Edwards
03/05/2022, 4:54 PMNoah Moroze
03/07/2022, 5:59 PM