Skip to content

Commit

Permalink
Do not restrict CheckPhysNetlist to 6G outside of Actions (#76)
Browse files Browse the repository at this point in the history
Otherwise koios_dla_like_large fails

Signed-off-by: Eddie Hung <[email protected]>
  • Loading branch information
eddieh-xlnx authored Jan 23, 2024
1 parent c287acb commit fd0fa4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ fpga-interchange-schema/interchange/capnp/java.capnp:
# $^ (%.netlist and %_rwroute.phys), and display/redirect all output to [email protected] (%_rwroute.check.log).
# The exit code of Gradle determines if 'PASS' or 'FAIL' is written to $@ (%_rwroute.check)
%_$(ROUTER).check: %.netlist %_$(ROUTER).phys %_unrouted.phys | compile-java
if ./gradlew --offline -DjvmArgs="-Xms6g -Xmx6g" -Dmain=com.xilinx.fpga24_routing_contest.CheckPhysNetlist :run --args='$^' $(call log_and_or_display,$@.log); then \
if ./gradlew --offline -DjvmArgs="$(JVM_HEAP)" -Dmain=com.xilinx.fpga24_routing_contest.CheckPhysNetlist :run --args='$^' $(call log_and_or_display,$@.log); then \
echo "PASS" > $@; \
else \
echo "FAIL" > $@; \
Expand Down

0 comments on commit fd0fa4e

Please sign in to comment.