Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LIO contest loader #14

Open
wants to merge 9 commits into
base: lio
Choose a base branch
from
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