5

when you submit jobs to a PBS server, is it possible to specify the nodes that we want to use in a list?

Thanks

Open the way
  • 26,225
  • 51
  • 142
  • 196

1 Answers1

12

Yes. When you use qsub, use the -l option to specify the node names. e.g.

qsub -l nodes=b2005+b1803+b1813

There's more examples in this TORQUE/PBS manual page.

John_West
  • 2,239
  • 4
  • 24
  • 44
David Johnson
  • 567
  • 4
  • 12
  • 1
    [manual page](http://www.clusterresources.com/torquedocs21/2.1jobsubmission.shtml#nodeExamples) broken link – a06e Mar 26 '15 at 12:55
  • 1
    [currently working link](http://docs.adaptivecomputing.com/torque/4-1-3/Content/topics/2-jobs/requestingRes.htm#qsub) – netvope Apr 07 '15 at 03:50