使用 SBATCH,您可以使用以下语法在自动生成的输出文件中使用作业 ID %j
:
#!/bin/bash
# omitting some other sbatch commands here ...
#SBATCH -o slurm-%j.out-%N # name of the stdout, using the job number (%j) and the first node (%N)
#SBATCH -e slurm-%j.err-%N # name of the stderr, using job and first node values
我一直在寻找一种类似的语法来使用作业名称而不是作业 ID。有没有人可以参考%j
样式语法中可以引用的其他 slurm/sbatch 值?