qsub命令如何避免使用特定的机器(How can qsub command avoid using specific machine)

我正在使用qsub命令将作业提交到服务器上的队列。

由于有些节点比其他节点慢得多,我想避开它们。

是否有标志或参数可以避免我的作业在那些较慢的计算节点上运行?

I am using qsub command to submit job to the queue on a server.

As there are some of the nodes that are significantly slower than others, I would like to avoid them.

Is there a flag or a parameter that can avoid my jobs running on those slower computing nodes?

最满意答案

尝试这个

qsub -q <queuename>

要么

qsub -l nodes=<nodename>

Try this

qsub -q <queuename>

or

qsub -l nodes=<nodename>

更多推荐