Hello,
I’m trying to run an application on specific nodes (using PBS Pro), but cannot get the correct syntax.
The following works for running on any two nodes:
#PBS -l select=2,ncpus=4:mpiprocs=4:mem=60gb
The following works for running on one specific node
#PBS -l select=1,ncpus=20:mpiprocs=20:mem=60gb:host=myNodeName
The following DO NOT work for running on two specific nodes
#PBS -l select=2,ncpus=4:mpiprocs=4:mem=60gb:host=myNodeName1:host=myNodeName2
#PBS -l select=2,ncpus=4:mpiprocs=4:mem=60gb:host=myNodeName1,myNodeName2
#PBS -l select=2,ncpus=4:mpiprocs=4:mem=60gb:host=myNodeName1+myNodeName2
I’ve tried many other permutations of syntax, but cannot get it to work
Could you give me the correct syntax to submit to more than one specific node?