Re: [Numpy-discussion] Pthreads ATLAS

2010-09-06 Thread David Cournapeau
On Tue, Sep 7, 2010 at 4:03 AM, Andreas Kloeckner wrote: > Hi all, > > I've just tried to set up a Python 3 test environment for me to begin > porting PyCUDA and PyOpenCL to Python 3, but numpy installation managed > to foil my. I'm on Debian, and I believe that Debian purposefully > compiles ATLA

Re: [Numpy-discussion] kron produces F-contiguous?

2010-09-06 Thread Lisandro Dalcin
On 2 September 2010 09:27, Neal Becker wrote: > Lisandro Dalcin wrote: > >> On 1 September 2010 19:24, Neal Becker wrote: >>> It seems if I call kron with 2 C-contiguous arrays, it returns an F- >>> contiguous array.  Any reason for this (it's not what I wanted)? >>> >> >> Try numpy.linalg.inv ..

Re: [Numpy-discussion] saving masked array to a text file

2010-09-06 Thread Pinner, Luke
How about the masked aray filled method? eg numpy.savetxt(somefilename, somemaskedarray.filled(somevalue)) Luke -Original Message- From: Guillaume Chérel Sent: Monday, 6 September 2010 10:36 PM To: Discussion of Numerical Python Subject: [Numpy-discussion] saving masked array to a text fi

[Numpy-discussion] DataArray fixes

2010-09-06 Thread Lluís
I started writing some fixes for DataArray, but some others need discussion on whether they should be implemented as I describe. To this extent, please see issues at http://github.com/fperez/datarray/issues and comment on them, so that I'll know if I should implement these. Thanks, Lluis

[Numpy-discussion] Pthreads ATLAS

2010-09-06 Thread Andreas Kloeckner
Hi all, I've just tried to set up a Python 3 test environment for me to begin porting PyCUDA and PyOpenCL to Python 3, but numpy installation managed to foil my. I'm on Debian, and I believe that Debian purposefully compiles ATLAS without pthreads support. Whenever I build numpy 1.5, I encounter t

Re: [Numpy-discussion] dll load failed when loading numpy in embedded python

2010-09-06 Thread Jean-François MAUREL
Le 06/09/2010 08:27, Jean-François MAUREL a écrit : >Hi everyone, > > I get the error: 'DLL load failed' when loading numpy in embedded > python. I could not find a solution in the archive. > Any help appreciated. > > I have written a test as follows (borrowed from an other post): > #include

[Numpy-discussion] saving masked array to a text file

2010-09-06 Thread Guillaume Chérel
Hello, Is there a function like savetxt that can deal with missing values in masked arrays? I'd like to control the way the missing values are written to the file. Thanks, Guillaume ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://m

Re: [Numpy-discussion] [NumPy-Tickets] [NumPy] #1348: CHM of Numpy Reference Guide (development version) is outdated

2010-09-06 Thread Sebastian Haase
On Mon, Sep 6, 2010 at 12:24 PM, Pauli Virtanen wrote: > Mon, 06 Sep 2010 10:41:38 +0200, Sebastian Haase wrote: >> >> is there an URL of the weekly built CHM documentation file ? > > It's the one linked from http://docs.scipy.org/doc/ > Hi Pauli, Thanks for the info. that page could say: Latest

Re: [Numpy-discussion] dll load failed when loading numpy in embedded python

2010-09-06 Thread Jean-François MAUREL
Le 06/09/2010 12:19, Jean-François MAUREL a écrit : >Le 06/09/2010 09:26, Jean-François MAUREL a écrit : >> Le 06/09/2010 09:07, Christoph Gohlke a écrit : >>> Your test program worked for me. Try opening the file test.exe with >>> Dependecy Walkerand

Re: [Numpy-discussion] [NumPy-Tickets] [NumPy] #1348: CHM of Numpy Reference Guide (development version) is outdated

2010-09-06 Thread Pauli Virtanen
Mon, 06 Sep 2010 10:41:38 +0200, Sebastian Haase wrote: > > is there an URL of the weekly built CHM documentation file ? It's the one linked from http://docs.scipy.org/doc/ -- Pauli Virtanen ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org

Re: [Numpy-discussion] dll load failed when loading numpy in embedded python

2010-09-06 Thread Jean-François MAUREL
Le 06/09/2010 09:26, Jean-François MAUREL a écrit : >Le 06/09/2010 09:07, Christoph Gohlke a écrit : >> Your test program worked for me. Try opening the file test.exe with >> Dependecy Walker and see which DLLs >> are found or missing. >> >> Christoph > Tha

Re: [Numpy-discussion] PyGTK breaks fortran extension???

2010-09-06 Thread Åsmund Hjulstad
2010/9/3 Pauli Virtanen > > Fri, 03 Sep 2010 08:53:00 +0300, Åsmund Hjulstad wrote: > > I have a f2py wrapped fortran extension, compiled using gcc-mingw32 > > (v.4.5.0), numpy 1.5, Python 2.7, where I am experiencing the strangest > > behaviour. It appears that loading pygtk breaks my fortran ext

Re: [Numpy-discussion] [NumPy-Tickets] [NumPy] #1348: CHM of Numpy Reference Guide (development version) is outdated

2010-09-06 Thread Sebastian Haase
Hi, is there an URL of the weekly built CHM documentation file ? Thanks, Sebastian Haase On Sun, Sep 5, 2010 at 6:39 PM, wrote: > #1348: CHM of Numpy Reference Guide (development version) is outdated > +--- >  Reporter:

Re: [Numpy-discussion] dll load failed when loading numpy in embedded python

2010-09-06 Thread Jean-François MAUREL
Le 06/09/2010 09:07, Christoph Gohlke a écrit : > > Your test program worked for me. Try opening the file test.exe with > Dependecy Walker and see which DLLs > are found or missing. > > Christoph Thank you, i will try this one regards -- Jean-François MAUREL

Re: [Numpy-discussion] dll load failed when loading numpy in embedded python

2010-09-06 Thread Jean-François MAUREL
Le 06/09/2010 08:45, David Cournapeau a écrit : > Could you get a more detailed log (looking into one of myriad logging > system in windows) ? It should say why the dll fails loading (missing > function, file not found, etc...). > > cheers, Thank you for your quick answer. Unfortunately no succes

Re: [Numpy-discussion] dll load failed when loading numpy in embedded python

2010-09-06 Thread Christoph Gohlke
On 9/5/2010 11:27 PM, Jean-François MAUREL wrote: >Hi everyone, > > I get the error: 'DLL load failed' when loading numpy in embedded > python. I could not find a solution in the archive. > Any help appreciated. > > I have written a test as follows (borrowed from an other post): > #include >