PBS/TORQUE: how do I submit a parallel job on multiple nodes?
问题 So, right now I'm submitting jobs on a cluster with qsub , but they seem to always run on a single node. I currently run them by doing #PBS -l walltime=10 #PBS -l nodes=4:gpus=2 #PBS -r n #PBS -N test range_0_total = $(seq 0 $(expr $total - 1)) for i in $range_0_total do $PATH_TO_JOB_EXEC/job_executable & done wait I would be incredibly grateful if you could tell me if I'm doing something wrong, or if it's just that my test tasks are too small. 回答1: With your approach, you need to have your