Remove TESTPLL nodes from piplist.

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2019-03-21 09:45:13 -07:00
parent 57b897a670
commit 6357913927
1 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,11 @@ proc print_tile_pips {tile_type filename} {
continue
}
# Some ports appear to be just test signals, ignore these.
if [string match *TESTPLL* $src_node] {
continue
}
if {[llength [get_nodes -uphill -of_objects [get_nodes -of_objects $dst]]] != 1} {
set pip_string "$tile_type.[regsub {.*/} $dst ""].[regsub {.*/} $src ""]"
if ![dict exists $pips $pip_string] {