0

さっき見た

sbatch [many options] -t 10-0 [more options + bash script]

ヘルプで見つけた

  -t, --time=minutes          time limit

だから-t間違いなく時間制限です。でも10-010分0秒ですか?それとも10時間0分?それとも何か他のものですか?

4

2 に答える 2

1

10日という意味です。一般的な形式ではd-hh:mm:ss、スケジューラはほとんどの場合、そのss部分を尊重しません。

要求された時間が経過した後に猶予期間を提供するように Slurm を構成できることに注意してください。OverTimeLimitパラメータを参照してくださいscontrol show config

于 2014-08-15T12:08:45.707 に答える
0

私はちょうど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".
于 2014-08-14T12:45:32.990 に答える