[Numpy-discussion] new memcpy implementation exposes bugs in some software.

2010-11-10 Thread Charles R Harris
Hi All, Apparently the 64 bit version of memcpy in the Fedora 14 glibc will do the copy in the downwards rather than the usual upwards direction on some processors. This has exposed bugs where the the source and destination overlap in memory. Report and discussion can be found at fedora bugzilla

Re: [Numpy-discussion] Is numpy.convolve based on LAPACK routine?

2010-11-10 Thread Pauli Virtanen
On Thu, 11 Nov 2010 00:43:32 +0100, LittleBigBrain wrote: > I am wondering, is numpy.convolve based on LAPACK routine? Can it be > speedup by using ATLAS? LAPACK and Atlas do not AFAIK have convolution routines -- that's not linear algebra. MKL on the other hand would have some. The implementatio

Re: [Numpy-discussion] C-compiler options

2010-11-10 Thread Ralf Gommers
On Thu, Nov 11, 2010 at 3:37 AM, Dan Yamins wrote: > Hi: > I'm trying to build numpy with python27, 64-bit, on OSX 10.5.8. > When I run  python setup.py build,   only 32-bit binaries get built.   I can > see what is happening is that not 64-bit flags are getting passed to the c > compiler (I don't

[Numpy-discussion] Is numpy.convolve based on LAPACK routine?

2010-11-10 Thread LittleBigBrain
Hi everyone, I am wondering, is numpy.convolve based on LAPACK routine? Can it be speedup by using ATLAS? Sincerely, LittleBigBrain ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] C-compiler options

2010-11-10 Thread Dan Yamins
> Are you sure that the python executable that you are using is the > 64-bit python executable that you think it is? > Hm ... Well, I think so ... It certain is 64bit, or at least: In [1]: import platform In [2]: platform.architecture() Out[2]: ('64bit', '') Should I be checking something else?

Re: [Numpy-discussion] C-compiler options

2010-11-10 Thread Robert Kern
On Wed, Nov 10, 2010 at 13:37, Dan Yamins wrote: > Hi: > I'm trying to build numpy with python27, 64-bit, on OSX 10.5.8. > When I run  python setup.py build,   only 32-bit binaries get built.   I can > see what is happening is that not 64-bit flags are getting passed to the c > compiler (I don't k

[Numpy-discussion] C-compiler options

2010-11-10 Thread Dan Yamins
Hi: I'm trying to build numpy with python27, 64-bit, on OSX 10.5.8. When I run python setup.py build, only 32-bit binaries get built. I can see what is happening is that not 64-bit flags are getting passed to the c compiler (I don't know about the fortran compiler. So I have two questions;