Re: [Numpy-discussion] numpy blas running slow: how to check that it is properly linked

2011-09-07 Thread Samuel John
On 06.09.2011, at 22:13, David Cottrell wrote: Thanks, I didn't realize dot was not just calling dgemm or some variant which I assume would be reasonably fast. I see dgemm appears in the numpy code in various places such as the lapack_lite module. I ran the svd test on the solaris setup

[Numpy-discussion] Numeric 24.2 for Python 2.4 on Windows 7?

2011-09-07 Thread Dietmar Schwertberger
Hi! Does anybody have Numeric 24.2 binaries for Python 2.4 which are compatible with Windows 7 SP1? Regards, Dietmar ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] Numeric 24.2 for Python 2.4 on Windows 7?

2011-09-07 Thread Christoph Gohlke
On 9/7/2011 11:27 AM, Dietmar Schwertberger wrote: Hi! Does anybody have Numeric 24.2 binaries for Python 2.4 which are compatible with Windows 7 SP1? Regards, Dietmar simply recompiling from source seems to work: http://www.lfd.uci.edu/~gohlke/pythonlibs/#numeric Christoph

Re: [Numpy-discussion] Numeric 24.2 for Python 2.4 on Windows 7?

2011-09-07 Thread Dietmar Schwertberger
Am 07.09.2011 21:07, schrieb Christoph Gohlke: On 9/7/2011 11:27 AM, Dietmar Schwertberger wrote: Does anybody have Numeric 24.2 binaries for Python 2.4 which are compatible with Windows 7 SP1? simply recompiling from source seems to work: http://www.lfd.uci.edu/~gohlke/pythonlibs/#numeric

Re: [Numpy-discussion] load from text files Pull Request Review

2011-09-07 Thread Chris.Barker
On 9/2/11 2:45 PM, Christopher Jordan-Squire wrote: It doesn't have to parse the entire file to determine the dtypes. It builds up a regular expression for what it expects to see, in terms of dtypes. Then it just loops over the lines, only parsing if the regular expression doesn't match. It

[Numpy-discussion] what to use in buildbot config for numpy testing

2011-09-07 Thread Chris Kees
Hi, Is there a recommended way to run the numpy test suite as a buildbot test? Just run ad python -c import numpy; numpy.test as ShellCommand object? Thanks, Chris ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org

Re: [Numpy-discussion] what to use in buildbot config for numpy testing

2011-09-07 Thread Derek Homeier
On 07.09.2011, at 10:52PM, Chris Kees wrote: Is there a recommended way to run the numpy test suite as a buildbot test? Just run ad python -c import numpy; numpy.test as ShellCommand object? It would be numpy.test() [or numpy.test('full')]; then it depends on what you need as the return

Re: [Numpy-discussion] what to use in buildbot config for numpy testing

2011-09-07 Thread Chris Kees
Hi Derek, Thanks! I forgot that python would exit with 0 even if numpy.test() fails. That could have taken a while to realize. Chris On Wed, Sep 7, 2011 at 4:22 PM, Derek Homeier de...@astro.physik.uni-goettingen.de wrote: On 07.09.2011, at 10:52PM, Chris Kees wrote: Is there a recommended