문제

in our lab some machines' disk I/O is down so if I submit my job to that machine, I can't get it done.
However, I can submit them to machines A and B.
I tried

qsub -l hostname=A,B  

But that don't work, it looks like it only allows one hostname(hostname=A)
Is there a workaround?
Thanks!

도움이 되었습니까?

해결책

Try using a wildcard expression; if you want to use A and B hosts :

qsub -l -h='(A|B)'
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top