Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tsoc
superbenchmark
Commits
9c29c931
Unverified
Commit
9c29c931
authored
Aug 08, 2022
by
Yifan Xiong
Committed by
GitHub
Aug 08, 2022
Browse files
Runner - Fix minimum timeout (#385)
Fix minimum timeout: use 60s if config is shorter.
parent
9b8df883
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
superbench/runner/runner.py
superbench/runner/runner.py
+1
-1
No files found.
superbench/runner/runner.py
View file @
9c29c931
...
...
@@ -389,7 +389,7 @@ def _run_proc(self, benchmark_name, mode, vars):
timeout
=
self
.
_sb_benchmarks
[
benchmark_name
].
timeout
if
isinstance
(
timeout
,
int
):
timeout
=
m
in
(
timeout
,
60
)
timeout
=
m
ax
(
timeout
,
60
)
env_list
=
'--env-file /tmp/sb.env'
if
self
.
_docker_config
.
skip
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment