Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
java-version: '21'
cache: 'gradle'
- if: matrix.router == 'nxroute-poc'
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scoring_criteria.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
python-version: '3.12'
check-latest: true
#cache: 'pip'
cache: 'pip'
- run: |
cd scoring_formula
python3 -m unittest test_scoring_formula.py -v
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ compile-java:
_JAVA_OPTIONS="$(JAVA_PROXY)" ./gradlew compileJava
_JAVA_OPTIONS="$(JAVA_PROXY)" RapidWright/bin/rapidwright Jython -c "FileTools.ensureDataFilesAreStaticInstallFriendly('xcvu3p')"
install-python-deps:
pip install -q -r requirements.txt --pre --user
python3 -m pip install -q -r requirements.txt --pre --user
else
compile-java install-python-deps:
@echo "$@ target skipped since network disabled inside apptainer"
Expand Down
2 changes: 1 addition & 1 deletion RapidWright
Submodule RapidWright updated 167 files
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
6 changes: 3 additions & 3 deletions networkx-proof-of-concept-router/nxroute-poc.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ class NxRoutingGraph(nx.DiGraph):
to graph node and edge to PIP lookups.
"""

# Clock Region X2Y1 (requires ~5GB RAM)
# Clock Region X2Y1:X4Y3 (requires <16GB RAM)
MIN_X = 36
MAX_X = 56
MAX_X = 90
MIN_Y = 60
MAX_Y = 119
MAX_Y = 239

# Entire device (requires ~50GB RAM)
# MIN_X = 0
Expand Down