diff --git a/.github/workflows/net_printer.yml b/.github/workflows/net_printer.yml index b147a2c..276b9df 100644 --- a/.github/workflows/net_printer.yml +++ b/.github/workflows/net_printer.yml @@ -37,9 +37,18 @@ jobs: cache: 'pip' - run: make setup-net_printer download-benchmarks - - name: Print static nets + - name: Print GND net run: - python3 net_printer/np.py ${{ matrix.benchmark }}_unrouted.phys GLOBAL_LOGIC0 GLOBAL_LOGIC1 + python3 net_printer/np.py ${{ matrix.benchmark }}_unrouted.phys GLOBAL_LOGIC0 | tee gnd.physnet + - name: Print GND stubs + run: | + sed -n -e '/Stub: 0/,$p' gnd.physnet + - name: Print VCC net + run: + python3 net_printer/np.py ${{ matrix.benchmark }}_unrouted.phys GLOBAL_LOGIC1 | tee vcc.physnet + - name: Print VCC stubs + run: | + sed -n -e '/Stub: 0/,$p' vcc.physnet - name: Print largest global net (corundum_25g) if: matrix.benchmark == 'corundum_25g' run: diff --git a/Makefile b/Makefile index d33af15..a955874 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ BENCHMARKS ?= boom_med_pb \ ispd16_example2 -BENCHMARKS_URL = https://github.com/Xilinx/fpga24_routing_contest/releases/latest/download/benchmarks.tar.gz +BENCHMARKS_URL = https://github.com/eddieh-xlnx/fpga24_routing_contest/releases/download/benchmarks/benchmarks.tar.gz # Inherit proxy settings from the host if they exist HTTPHOST=$(firstword $(subst :, ,$(subst http:,,$(subst /,,$(HTTP_PROXY))))) diff --git a/RapidWright b/RapidWright index ee46ee7..683e572 160000 --- a/RapidWright +++ b/RapidWright @@ -1 +1 @@ -Subproject commit ee46ee76e450f4f725e50abb24d01b3238188bd0 +Subproject commit 683e5723b4e9c7e1d98aa3cb1e05e3216f8ca081