I always wanted to know what are meaningful values for CPU slot setting; just made a little Python script:
Code: Select all
list=[]
for x in xrange(1, 7):
for y in xrange(1, 7):
for z in xrange(1, 7):
c = x*y*z
if not c in list:
list.append(c)
list.sort()
print list
Result:
Code: Select all
[1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 16, 18, 20, 24, 25, 27, 30, 32, 36, 40, 45, 48, 50, 54, 60, 64, 72, 75, 80, 90, 96, 100, 108, 120, 125, 144, 150, 180, 216]
Rule of thumb: pick up the highest number from the list which is <= ( thread per CPU - number of GPU slots )
Like 6core/12HT - 1 GPU = 11; highest number in list is 10; that's the suggested CPU: setting ...
I wish I could test CPU:216 setup here at my home
