Questions tagged «queue-management»

2
SLURM允许作业使用的CPU数量超过启动请求的数量
我面临的SLURM问题可以总结如下。考虑一个bash脚本test.sh,该脚本请求8个CPU,但实际上使用10个CPU启动作业: #!/bin/sh #SBATCH --ntasks=8 stress -c 10 在具有32个CPU的服务器上,如果我用来启动此脚本5次sbatch test.sh,则其中的4个立即开始运行,最后一个显示为待处理,如squeue命令所示: JOBID PARTITION NAME USER ST TIME NODES NODELIST(REASON) 5 main test.sh jack PD 0:00 1 (Resources) 1 main test.sh jack R 0:08 1 server 2 main test.sh jack R 0:08 1 server 3 main test.sh jack R 0:05 1 server 4 …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.