Skip to content

Commit

Permalink
[RapidWright] Pull in PhysNetlistWriter + RWRoute fixes (Xilinx#53)
Browse files Browse the repository at this point in the history
* Update to latest RapidWright

Signed-off-by: Eddie Hung <[email protected]>

* Switch over to temp URL

Signed-off-by: Eddie Hung <[email protected]>

* Temporarily switch RapidWright over to 'physnetwriter_fix_static' branch

Signed-off-by: Eddie Hung <[email protected]>

* Print GND/VCC stubs in GHA

Signed-off-by: Eddie Hung <[email protected]>

* Fix net_printer workflow

Signed-off-by: Eddie Hung <[email protected]>

* Update RapidWright submodule

Signed-off-by: Eddie Hung <[email protected]>

---------

Signed-off-by: Eddie Hung <[email protected]>
  • Loading branch information
eddieh-xlnx authored Dec 23, 2023
1 parent b418ed8 commit f93f853
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/net_printer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)))))
Expand Down

0 comments on commit f93f853

Please sign in to comment.