I am trying to do multiprocessing using Python. I have access to 4 x 24Core CPUs.
When I try and detect the amount of CPU using code:
import multiprocessing as mp
mp.cpu_count()
It returns 4 rather than 96, is there any way of making Python detect all 96 cores?