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
This bug is not caused by magni but rather numpy (or multiprocessing). It is present on Mac OS X for versions of Python and numpy that have not been compiled against MKL. The following piece of code illustrates the problem:
The above code hangs in the workers.map call when executing np.dot(np.eye(n), np.eye(n)). Strangely, there is no problem if the non-multiprocessing call to compute is ommitted, or the value of n is reduced sufficiently.
The text was updated successfully, but these errors were encountered:
This bug is not caused by
magni
but rathernumpy
(ormultiprocessing
). It is present on Mac OS X for versions of Python andnumpy
that have not been compiled against MKL. The following piece of code illustrates the problem:The above code hangs in the
workers.map
call when executingnp.dot(np.eye(n), np.eye(n))
. Strangely, there is no problem if the non-multiprocessing call tocompute
is ommitted, or the value ofn
is reduced sufficiently.The text was updated successfully, but these errors were encountered: