Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PBS and specify nodes to use

Tags:

grid

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

Thanks

like image 568
Open the way Avatar asked Nov 13 '09 19:11

Open the way


People also ask

What is PBS node?

Description. The pbsnodes command is used to mark nodes down, free or offline. It can also be used to list nodes and their state. Node information is obtained by sending a request to the PBS job server. Sets of nodes can be operated on at once by specifying a node property prefixed by a colon.


1 Answers

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.

like image 61
David Johnson Avatar answered Oct 13 '22 00:10

David Johnson