Skip to content

Commit fd0fa4e

Browse files
authored
Do not restrict CheckPhysNetlist to 6G outside of Actions (#76)
Otherwise koios_dla_like_large fails Signed-off-by: Eddie Hung <[email protected]>
1 parent c287acb commit fd0fa4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ fpga-interchange-schema/interchange/capnp/java.capnp:
9393
# $^ (%.netlist and %_rwroute.phys), and display/redirect all output to [email protected] (%_rwroute.check.log).
9494
# The exit code of Gradle determines if 'PASS' or 'FAIL' is written to $@ (%_rwroute.check)
9595
%_$(ROUTER).check: %.netlist %_$(ROUTER).phys %_unrouted.phys | compile-java
96-
if ./gradlew --offline -DjvmArgs="-Xms6g -Xmx6g" -Dmain=com.xilinx.fpga24_routing_contest.CheckPhysNetlist :run --args='$^' $(call log_and_or_display,$@.log); then \
96+
if ./gradlew --offline -DjvmArgs="$(JVM_HEAP)" -Dmain=com.xilinx.fpga24_routing_contest.CheckPhysNetlist :run --args='$^' $(call log_and_or_display,$@.log); then \
9797
echo "PASS" > $@; \
9898
else \
9999
echo "FAIL" > $@; \

0 commit comments

Comments
 (0)