Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've noticed that several questions on SO about PBS have gone unanswered. Is there a more appropriate forum to ask these questions? For example:

PBS programming?

How to limit number of concurrently running PBS jobs?

Submitting multiple jobs TORQUE/PBS?

My Real Question: I am having a problem with my PBS configuration. I have a single computer which I've setup torque so that I can submit hundreds of jobs and don't have to babysit it. But I've somehow messed up the configuration because I have submitted three jobs which should require a total of four cpus:

#PBS -l nodes=1:ppn=2
#PBS -l nodes=1:ppn=1
#PBS -l nodes=1:ppn=1

And all three are running right now! Even though I've set:

resources_max.ncpus = 3

for the queue -- because I've got a quad-core and I want to save one processor for the OS. In the qmgr, it also reports:

resources_assigned.ncpus = 3

What is going on?!? Clearly I've bolluxed up something. Is this the appropriate forum? Should I be asking over on Unix/Linux? or Ubuntu (which is my OS)?

share|improve this question
I discovered my problem. In my nodes file, I had myserver np=4, which torque was using instead of reading resources_max.ncpus = 3. I'll still award points/answer if I should be asking this question elsewhere. – M. Tibbits Dec 17 '10 at 15:26

closed as off topic by Junuxx, Jon B, Kevin Peno, Daniel Mann, Mario Nov 28 '12 at 21:45

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 2 down vote accepted
  1. Ask about configuring PBS at serverfault.com;
  2. Ask about using PBS for your tasks here;
  3. This question should have been asked at meta.stackoverflow.com.
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.