From b37b457ecc953262b212c3b2f3b654e9ca5dd2b3 Mon Sep 17 00:00:00 2001 From: harsha vardhan simhadri Date: Sat, 30 Sep 2023 02:40:57 +0000 Subject: [PATCH] update time out rules for neurip23 tracks --- benchmark/runner.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/benchmark/runner.py b/benchmark/runner.py index 25f1a3c2..441e2b63 100644 --- a/benchmark/runner.py +++ b/benchmark/runner.py @@ -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)