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

update time out rules for neurip23 tracks #170

Merged
merged 1 commit into from
Oct 2, 2023
Merged
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
5 changes: 3 additions & 2 deletions benchmark/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,9 @@ def run_docker(definition, dataset, count, runs, timeout, rebuild,

# set/override container timeout based on competition flag
if neurips23track!='none':
timeout = 30*60 # 30 minutes
print("Setting container wait timeout to 30 minutes")
# 1 hour for streaming and 12 hours for other tracks
timeout = 60 * 60 if neurips23track == 'streaming' else 12 * 60 * 60
print("Setting container wait timeout to %d seconds" % timeout)

elif not timeout:
# default to 3 days (includes NeurIPS'21)
Expand Down
Loading