Re: [Numpy-discussion] lsame_ undefined ...

2008-09-25 Thread thorsten
On Thu, 25 Sep 2008, Charles R Harris wrote: > On Thu, Sep 25, 2008 at 11:42 AM, <[EMAIL PROTECTED]> wrote: > > > On Fri, 26 Sep 2008, David Cournapeau wrote: > > > > > [EMAIL PROTECTED] wrote: > > > > > > > > g77, it appears. This is a somewhat older Red Hat Enterprise Linux > > > > system, bef

Re: [Numpy-discussion] lsame_ undefined ...

2008-09-25 Thread thorsten
On Fri, 26 Sep 2008, David Cournapeau wrote: > [EMAIL PROTECTED] wrote: > > > > g77, it appears. This is a somewhat older Red Hat Enterprise Linux > > system, before they switched over to gfortran. > > You can't mix both compilers. You have to use either one of them to > build *everything*: blas

Re: [Numpy-discussion] lsame_ undefined ...

2008-09-25 Thread thorsten
On Fri, 26 Sep 2008, David Cournapeau wrote: > [EMAIL PROTECTED] wrote: > > David, > > > > I built it myself from source about 2 years ago. Has it > > changed much? > > It has not changed at all, but your compiler has, and they are not ABI > compatible, or maybe you made an error when installing

Re: [Numpy-discussion] lsame_ undefined ...

2008-09-25 Thread thorsten
David, I built it myself from source about 2 years ago. Has it changed much? Thanks for answering so quickly! John On Fri, 26 Sep 2008, David Cournapeau wrote: > [EMAIL PROTECTED] wrote: > > > > Is there a way to fix this? > > > > Which blas/lapack did you use ? Did you b

[Numpy-discussion] lsame_ undefined ...

2008-09-25 Thread thorsten
I've been trying to install numpy on my linux system and get the following error message whey I try to import it: Python 2.4.3 (#1, Apr 22 2006, 18:02:44) [GCC 3.2.3 20030502 (Red Hat Linux 3.2.3-54)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import nu

[Numpy-discussion] Memmap and other read/write operations

2008-07-30 Thread Thorsten Kranz
dtype=n.float32,offset=1024,shape=(2000,32),mode="r+") This works fine. My question is now, if I can in the mean time securely open the file for custom writing by using f = open("test.dat", "r+") or will there be problems? Is there another possibility to do custom w