Jake Ke
05/31/2022, 2:24 AMconfig.tcl
or the ports in user_project_wrapper.v
. 27-powered_netlist.v
also has vccd1 there.
Does anyone know what is the issue?Mitch Bailey
05/31/2022, 3:09 AMJake Ke
05/31/2022, 3:40 AMMitch Bailey
05/31/2022, 4:20 AMfind . -name '*gds.spice.log
but they may have changed the location. It may appear as a warning like
Warning: Ports "vccd1" and "vccd2" are electrically shorted.
Jake Ke
05/31/2022, 4:28 AMfind . -name '*gds.spice.log'
Jake Ke
05/31/2022, 4:30 AMVijayan Krishnan
05/31/2022, 5:38 AMJake Ke
05/31/2022, 6:21 AMMitch Bailey
05/31/2022, 7:01 AMfind . -name '*spice.log'
since it looks like you're doing lef extraction instead of gds extraction.Jake Ke
05/31/2022, 7:05 AM27-spice.log
which is attached in the previous messageMitch Bailey
05/31/2022, 7:05 AMJake Ke
05/31/2022, 7:07 AMMitch Bailey
05/31/2022, 7:08 AMmerge_short.awk
and then run awk -f merge_short.awk <path to extraction results>/user_project_wrappper.ext
/^merge/ {
if ( last == "" ) {
if ( $2 !~ /\// && $2 !~ /#/ ) {
shorts = $2;
}
}
if ( last == $2 ) {
if ( $3 !~ /\// && $3 !~ /#/ ) {
shorts = shorts " " $3;
}
} else {
if ( last != "" && shorts ~ / .* / ) {
print shorts;
}
shorts = "";
}
last = $3;
}
END {
if ( last != "" ) {
print shorts;
}
}
Jake Ke
05/31/2022, 7:17 AMawk -f merge_short.awk ./openlane/user_project_wrapper/runs/user_project_wrapper/tmp/finishing/user_project_wrapper.ext
and it returned nothingVijayan Krishnan
05/31/2022, 8:58 AMJake Ke
05/31/2022, 9:10 AMVijayan Krishnan
05/31/2022, 9:12 AMJake Ke
06/01/2022, 1:06 AM