标签: slurm
我习惯于使用aprun运行,而我的运行命令看起来像
aprun -n 432 -d 1 -j1 ./exec |& tee out.log
我想在使用slurm的系统上执行此操作,但是我不知道该命令的语法。如何使用srun转换?
谢谢
答案 0 :(得分:1)
那将是
srun --ntasks 432 --cpus-per-tasks 1 --threads-per-core 1 ./exec |& tee out.log