[SciPy-dev] crash
Olivier Ravard
olivier.ravard at novagrid.com
Tue Jul 27 11:13:56 CDT 2004
Hi everybody,
I work on windows XP, python 2.3, scipy 0.3 and Numeric 23.1.
The folowing code crash python (without returned error message) :
import scipy
a=scipy.arange(258168,typecode='F')
c=a*a
but the two folowing code does not make a crash :
import scipy
a=scipy.arange(258167,typecode='F')
c=a*a
import Numeric
a=scipy.arange(258168,typecode='F')
c=a*a
import Numeric
a=scipy.arange(10000000,typecode='F')
c=a*a
I think this is a bug from scipy but how to solve it ? I thaught that scipy
use Numeric.array, does not ? can we compile scipy without using LAPACK
to test those simple codes ?
Thanks.
O.R.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://projects.scipy.org/pipermail/scipy-dev/attachments/20040727/97d960ee/attachment.html
More information about the Scipy-dev
mailing list