You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sumtree.py get number of cpus using num_cpus = multiprocessing.cpu_count() which may be innacurate in a taskset context or a slurm allocation for example.
Hello
sumtree.py
get number of cpus usingnum_cpus = multiprocessing.cpu_count()
which may be innacurate in a taskset context or a slurm allocation for example.see:
I would suggest to use len(os.sched_getaffinity(0)) instead of multiprocessing.cpu_count()
regards
Eric
The text was updated successfully, but these errors were encountered: