さっき見た
sbatch [many options] -t 10-0 [more options + bash script]
ヘルプで見つけた
-t, --time=minutes time limit
だから-t
間違いなく時間制限です。でも10-0
10分0秒ですか?それとも10時間0分?それとも何か他のものですか?
さっき見た
sbatch [many options] -t 10-0 [more options + bash script]
ヘルプで見つけた
-t, --time=minutes time limit
だから-t
間違いなく時間制限です。でも10-0
10分0秒ですか?それとも10時間0分?それとも何か他のものですか?
10日という意味です。一般的な形式ではd-hh:mm:ss
、スケジューラはほとんどの場合、そのss
部分を尊重しません。
要求された時間が経過した後に猶予期間を提供するように Slurm を構成できることに注意してください。OverTimeLimit
パラメータを参照してくださいscontrol show config
私はちょうどman
ページでそれを見つけました:
-t, --time=<time>
Set a limit on the total run time of the job allocation. If the requested time limit exceeds the partition's time limit, the job
will be left in a PENDING state (possibly indefinitely). The default time limit is the partition's time limit. When the time
limit is reached, each task in each job step is sent SIGTERM followed by SIGKILL. The interval between signals is specified by the
SLURM configuration parameter KillWait. A time limit of zero requests that no time limit be imposed. Acceptable time formats
include "minutes", "minutes:seconds", "hours:minutes:seconds", "days-hours", "days-hours:minutes" and "days-hours:minutes:seconds".