Re: [Numpy-discussion] need help building a numpy extension that uses fftpack on windows

2011-06-09 Thread Pauli Virtanen
Thu, 09 Jun 2011 09:37:36 -0400, martin smith wrote: [clip] > I'm game to go on with this but I'm concerned that the effort will be > futile for the reason that Ralf suggested: duplication of some fftpack > code in my module. Does anyone have a clear idea whether or not this > issue will be fatal

Re: [Numpy-discussion] need help building a numpy extension that uses fftpack on windows

2011-06-09 Thread martin smith
On 6/5/2011 5:46 PM, martin smith wrote: > On 6/3/2011 5:15 AM, Ralf Gommers wrote: >> >> ... >> Coming back to #608, that means there is no chance that the C version >> will land in scipy, correct? We're not going to ship two copies of >> FFTPACK. So the answer should be "rewrite in Python, if th

Re: [Numpy-discussion] need help building a numpy extension that uses fftpack on windows

2011-06-05 Thread martin smith
On 6/3/2011 5:15 AM, Ralf Gommers wrote: > > > On Thu, Jun 2, 2011 at 9:33 PM, Robert Kern > wrote: > > On Thu, Jun 2, 2011 at 14:07, Ralf Gommers > mailto:ralf.gomm...@googlemail.com>> > wrote: > > > > On Wed, Jun 1, 2011 at 5:45 PM, martin smi

Re: [Numpy-discussion] need help building a numpy extension that uses fftpack on windows

2011-06-03 Thread Sturla Molden
Den 02.06.2011 21:07, skrev Ralf Gommers: > > After search for multi-taper I found > http://projects.scipy.org/scipy/ticket/608. Too bad no one has gotten > around to review your contribution before, it sounds like a good > addition for the scipy.signal module. I once implemented DPSS tapers in

Re: [Numpy-discussion] need help building a numpy extension that uses fftpack on windows

2011-06-03 Thread Ralf Gommers
On Thu, Jun 2, 2011 at 9:33 PM, Robert Kern wrote: > On Thu, Jun 2, 2011 at 14:07, Ralf Gommers > wrote: > > > > On Wed, Jun 1, 2011 at 5:45 PM, martin smith > wrote: > >> > >> I have a bit of code that performs multi-taper power spectra using numpy > >> and a C extension module. The C portion

Re: [Numpy-discussion] need help building a numpy extension that uses fftpack on windows

2011-06-02 Thread Robert Kern
On Thu, Jun 2, 2011 at 14:07, Ralf Gommers wrote: > > On Wed, Jun 1, 2011 at 5:45 PM, martin smith wrote: >> >> I have a bit of code that performs multi-taper power spectra using numpy >> and a C extension module.  The C portion consists of an interface file >> and a python-unaware computational

Re: [Numpy-discussion] need help building a numpy extension that uses fftpack on windows

2011-06-02 Thread Ralf Gommers
On Wed, Jun 1, 2011 at 5:45 PM, martin smith wrote: > I have a bit of code that performs multi-taper power spectra using numpy > and a C extension module. The C portion consists of an interface file > and a python-unaware computational file. The latter invokes fftpack. > > The straightforward s

[Numpy-discussion] need help building a numpy extension that uses fftpack on windows

2011-06-01 Thread martin smith
I have a bit of code that performs multi-taper power spectra using numpy and a C extension module. The C portion consists of an interface file and a python-unaware computational file. The latter invokes fftpack. The straightforward setup.py appended below works fine on Linux. On Windows using M