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
In [1]: from numpy import *
In [2]: A = zeros(1, dtype=uint8)
In [3]: B = A[:]
In [4]: for i in xrange(1000000):
...: B = B[:]
...:
...:
In [5]: del B
zsh: segmentation fault ipython
This has caused a problem for someone using PyMC.
The segfault occurs on line 2079 of arrayobject.c . On 32-bit Intel OS X, I only get the segfault if the number of iterations is >= 261935.
The text was updated successfully, but these errors were encountered:
Original ticket http://projects.scipy.org/numpy/ticket/822 on 2008-06-17 by @rkern, assigned to unknown.
This has caused a problem for someone using PyMC.
The segfault occurs on line 2079 of arrayobject.c . On 32-bit Intel OS X, I only get the segfault if the number of iterations is >= 261935.
The text was updated successfully, but these errors were encountered: