How will Linux be leveraged in next-gen supercomputers? (NewsForge)
Posted Sep 27, 2005 3:46 UTC (Tue) by
dlang (subscriber, #313)
In reply to:
How will Linux be leveraged in next-gen supercomputers? (NewsForge) by hazelsct
Parent article:
How will Linux be leveraged in next-gen supercomputers? (NewsForge)
you would also need to make sure that it didn't make much use of the scheduler, memory allocator, disks, etc.
if you are talking about threads that load their entire working set into ram and then sit and spin on that set until they are done then yes you can exceed the kernel scalability by quite a bit (bit if you can do that then you can also fairly trivially run your job on a loosly coupled cluster, which would be far cheaper then a large N-way SMP box)
for more normal workloads you need both to be scalable, and in general your performance will start tailing off as soon as you pass either the kernel or app scaleability limits.
(
Log in to post comments)