Re: [Numpy-discussion] gesdd hangs

2007-08-29 Thread Robert Kern
Charles R Harris wrote: > > On 8/29/07, *Mathew Yeates* <[EMAIL PROTECTED] > > wrote: > > never returns > > Where is decomp coming from? linalg.svd(eye(25)) works fine here. scipy, most likely. -- Robert Kern "I have come to believe that the whole world is an en

Re: [Numpy-discussion] gesdd hangs

2007-08-29 Thread Charles R Harris
On 8/29/07, Mathew Yeates <[EMAIL PROTECTED]> wrote: > > never returns Where is decomp coming from? linalg.svd(eye(25)) works fine here. Chuck ___ Numpy-discussion mailing list Numpy-discussion@scipy.org http://projects.scipy.org/mailman/listinfo/numpy

Re: [Numpy-discussion] gesdd hangs

2007-08-29 Thread Mathew Yeates
never returns Charles R Harris wrote: > > > On 8/29/07, *Mathew Yeates* <[EMAIL PROTECTED] > > wrote: > > I guess I can't blame lapack. My system has atlas so I recompiled > numpy > pointing to atlas. Now > > id(numpy.dot) == id(numpy.core.multiarray.dot

Re: [Numpy-discussion] gesdd hangs

2007-08-29 Thread Charles R Harris
On 8/29/07, Mathew Yeates <[EMAIL PROTECTED]> wrote: > > I guess I can't blame lapack. My system has atlas so I recompiled numpy > pointing to atlas. Now > > id(numpy.dot) == id(numpy.core.multiarray.dot) is False > > However when I run decomp.svd on a 25 by 25 identity matrix, it hangs when > gesd

[Numpy-discussion] gesdd hangs

2007-08-29 Thread Mathew Yeates
I guess I can't blame lapack. My system has atlas so I recompiled numpy pointing to atlas. Now id(numpy.dot) == id(numpy.core.multiarray.dot) is False However when I run decomp.svd on a 25 by 25 identity matrix, it hangs when gesdd is called (line 501 of linalag/decomp.py) Anybody else seeing