Skip to content
Open
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
4 changes: 4 additions & 0 deletions cms/grading/languages/java_jdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ def get_evaluation_commands(
# executable_filename is a jar file, main is the name of
# the main java class
return [["/usr/bin/java", "-Deval=true", "-Xmx512M", "-Xss64M",
# Additional parameters to increase speed and stability. Tuned for Java 8.
# See also: https://wiki.ioinformatics.org/wiki/HostingAnIOI/TechnicalChecklist#Determinism
"-Xbatch", "-XX:+UseSerialGC", "-XX:-TieredCompilation",
"-XX:CICompilerCount=1", "-XX:CompileThreshold=2000", "-XX:-UsePerfData",
"-cp", executable_filename, main] + args]
else:
unzip_command = ["/usr/bin/unzip", executable_filename]
Expand Down
Loading