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
My prior of what cores=4 does when calling pm.sample() is that pymc would use 4 of my cores. However, because of multi-threading this might not be the case. Furthermore, multi-threading is causing problems when running multiple chains in parallel: #3140
I thus think we should set os.environ['OMP_NUM_THREADS'] = '1' if we're sampling on > 1 core.
The text was updated successfully, but these errors were encountered:
My prior of what
cores=4
does when callingpm.sample()
is that pymc would use 4 of my cores. However, because of multi-threading this might not be the case. Furthermore, multi-threading is causing problems when running multiple chains in parallel: #3140I thus think we should set
os.environ['OMP_NUM_THREADS'] = '1'
if we're sampling on > 1 core.The text was updated successfully, but these errors were encountered: