Linux 2.6.31 Scheduler and Multithreaded Jobs

Posted by dsimcha on Stack Overflow See other posts from Stack Overflow or by dsimcha
Published on 2010-05-13T16:43:41Z Indexed on 2010/05/13 16:54 UTC
Read the original article Hit count: 390

I run massively parallel scientific computing jobs on a shared Linux computer with 24 cores. Most of the time my jobs are capable of scaling to 24 cores when nothing else is running on this computer. However, it seems like when even one single-threaded job that isn't mine is running, my 24-thread jobs (which I set for high nice values) only manage to get ~1800% CPU (using Linux notation). Meanwhile, about 500% of the CPU cycles (again, using Linux notation) are idle. Can anyone explain this behavior and what I can do about it to get all of the 23 cores that aren't being used by someone else?

Notes:

  1. In case it's relevant, I have observed this on slightly different kernel versions, though I can't remember which off the top of my head.

  2. The CPU architecture is x64. Is it at all possible that the fact that my 24-core jobs are 32-bit and the other jobs I'm competing w/ are 64-bit is relevant?

Edit: One thing I just noticed is that going up to 30 threads seems to alleviate the problem to some degree. It gets me up to ~2100% CPU.

© Stack Overflow or respective owner

Related posts about scheduler

Related posts about multithreading