I found a weird behavior when doing a LVS test wit...
# ihp-sg13g2
d
I found a weird behavior when doing a LVS test with resistors. The first case (left in the image) pass LVS with any problem when the last resistors is at the same level (red line), but if I move the last resistor just a little bit to the south (right in the image) then the LVS fails. Does anyone know why is this happening?
f
@Daniel Arevalos Thanks for the testcase. This have been fixed in the latest version. It will be merged soon. Note that for latest version, the res devices will not use
res_
prefix in their names. For example
Copy code
# Old
** sch_path: /home/ac3e/Documents/ihp_design/klayout/netlist/rdiv_notsep.sch
.subckt rdiv_testcase vss in_p vout
*.PININFO vss:B in_p:B vout:B
R2 vss in_p res_rhigh w=0.5e-6 l=30e-6 m=1 b=0
R1 in_p vout res_rhigh w=0.5e-6 l=10e-6 m=1 b=0
.ends
.end

# New
** sch_path: /home/ac3e/Documents/ihp_design/klayout/netlist/rdiv_notsep.sch
.subckt rdiv_testcase vss in_p vout
*.PININFO vss:B in_p:B vout:B
R2 vss in_p rhigh w=0.5e-6 l=30e-6 m=1 b=0
R1 in_p vout rhigh w=0.5e-6 l=10e-6 m=1 b=0
.ends
.end
🙌 1