[Numpy-discussion] os x, intel compilers & mkl, and fink python

2008-11-28 Thread Gideon Simpson
Has anyone gotten the combination of OS X with a fink python distribution to successfully build numpy/scipy with the intel compilers and the mkl? If so, how'd you do it? -gideon ___ Numpy-discussion mailing list Numpy-discussion@scipy.org http://pr

Re: [Numpy-discussion] Compiler options for mingw?

2008-11-28 Thread Zachary Pincus
>> I'm curious about how to control compiler options for mingw builds of >> numpy on windows... Specifically, I want to build binaries without >> SSE >> support, so that they can run on older hardware. > > The windows binaries of numpy can run on machines without SSE support. > If for some reason

Re: [Numpy-discussion] Compiler options for mingw?

2008-11-28 Thread David Cournapeau
On Sat, Nov 29, 2008 at 5:35 AM, Zachary Pincus <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm curious about how to control compiler options for mingw builds of > numpy on windows... Specifically, I want to build binaries without SSE > support, so that they can run on older hardware. The windows bin

[Numpy-discussion] Compiler options for mingw?

2008-11-28 Thread Zachary Pincus
Hi all, I'm curious about how to control compiler options for mingw builds of numpy on windows... Specifically, I want to build binaries without SSE support, so that they can run on older hardware. Setting a CFLAGS variable on the command-line doesn't appear to do anything, but perhaps appe

Re: [Numpy-discussion] More loadtxt() changes

2008-11-28 Thread Pierre GM
Manuel, Give me the week-end to come up with something. What you want is already doable with the current implementation of np.loadtxt, through the converter keyword. Support for missing data will be covered in a separate function, most likely to be put in numpy.ma.io at term. On Nov 28, 2

Re: [Numpy-discussion] More loadtxt() changes

2008-11-28 Thread Manuel Metz
Pierre GM wrote: > On Nov 27, 2008, at 3:08 AM, Manuel Metz wrote: >> Certainly, yes! Dealing with fixed-length fields would be necessary. >> The >> case I had in mind had both -- a separator ("|") __and__ fixed-length >> fields -- and is probably very special in that sense. But such >> data-file

Re: [Numpy-discussion] Shape (z,0)

2008-11-28 Thread Anne Archibald
2008/11/28 T J <[EMAIL PROTECTED]>: import numpy as np x = np.ones((3,0)) x > array([], shape(3,0), dtype=float64) > > To preempt, I'm not really concerned with the answer to: Why would > anyone want to do this? > > I just want to know what is happening. Especially, with > x[0

[Numpy-discussion] Shape (z,0)

2008-11-28 Thread T J
>>> import numpy as np >>> x = np.ones((3,0)) >>> x array([], shape(3,0), dtype=float64) To preempt, I'm not really concerned with the answer to: Why would anyone want to do this? I just want to know what is happening. Especially, with >>> x[0,:] = 5 (which works). It seems that nothing is r