Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RyoYang committed Aug 13, 2024
1 parent af87f5d commit 667095f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superbench/runner/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ def _run_proc(self, benchmark_name, mode, vars):
mode.env.update({'SB_MODE_SERIAL_INDEX': mode.serial_index, 'SB_MODE_PARALLEL_INDEX': mode.parallel_index})
logger.info('Runner is going to run %s in %s mode, proc rank %d.', benchmark_name, mode.name, mode.proc_rank)

timeout = self._sb_benchmarks[benchmark_name].get('timeout', 60)
timeout = self._sb_benchmarks[benchmark_name].get('timeout', None)
if isinstance(timeout, int):
timeout = max(timeout, 60)

Expand Down

0 comments on commit 667095f

Please sign in to comment.