Re: [Numpy-discussion] Call for testing: full blas/lapack builds of numpy on windows 64 bits

2009-02-28 Thread Bruce Southey
On Sat, Feb 28, 2009 at 12:57 PM, David Cournapeau wrote: > On Sat, Feb 28, 2009 at 7:01 AM, Bruce Southey wrote: > >> Hi, >> After much frustration and disabling my antivirus software (McAfee), I >> was able to get the 'import numpy' to work and tests to pass as >> expected. Of course after turn

Re: [Numpy-discussion] Bilateral filter

2009-02-28 Thread Nadav Horesh
I tested again, and got no errors, with the following configuration: cython 10.4 numpy 1.3.0dev6519 (the latest) gcc 4.1.2 python 2.5.4 amd64 gentoo linux Nadav. -הודעה מקורית- מאת: numpy-discussion-boun...@scipy.org בשם St?fan van der Walt נשלח: א 01-מרץ-09 01:15 אל: Discussion of Nume

Re: [Numpy-discussion] Bilateral filter

2009-02-28 Thread Stéfan van der Walt
Hey Zach 2009/3/1 Zachary Pincus : > Well, the latest cython doesn't help -- both errors still appear as > below. (Also, the latest cython can't run the numpy tests either.) I'm > befuddled. That's pretty weird. Did you remove the .so that was build as well as any source files, before doing buil

Re: [Numpy-discussion] Bilateral filter

2009-02-28 Thread Zachary Pincus
Well, the latest cython doesn't help -- both errors still appear as below. (Also, the latest cython can't run the numpy tests either.) I'm befuddled. Zach On Feb 28, 2009, at 5:18 PM, Zachary Pincus wrote: > Hi all, > > So, I re-grabbed the latest bilateral code from the repository, and > di

Re: [Numpy-discussion] Bilateral filter

2009-02-28 Thread Zachary Pincus
Hi all, So, I re-grabbed the latest bilateral code from the repository, and did the following: [axlotl:~/Developer/Python/stefanv-bilateral] zpincus% python setup.py build_ext -i [axlotl:~/Developer/Python/stefanv-bilateral] zpincus% ipython In [1]: import numpy In [2]: import bilateral In [3

Re: [Numpy-discussion] Bilateral filter

2009-02-28 Thread Nadav Horesh
Sorry, wrong addressing -הודעה מקורית- מאת: numpy-discussion-boun...@scipy.org בשם Nadav Horesh נשלח: ש 28-פברואר-09 21:19 אל: Discussion of Numerical Python; Discussion of Numerical Python נושא: Re: [Numpy-discussion] Bilateral filter A correction: The light distribution with two LEDs

Re: [Numpy-discussion] Bilateral filter

2009-02-28 Thread Nadav Horesh
A correction: The light distribution with two LEDs would be problematic. Nadav -הודעה מקורית- מאת: numpy-discussion-boun...@scipy.org בשם Nadav Horesh נשלח: ש 28-פברואר-09 20:53 אל: Discussion of Numerical Python נושא: RE: [Numpy-discussion] Bilateral filter I could not reproduce you

Re: [Numpy-discussion] Call for testing: full blas/lapack builds of numpy on windows 64 bits

2009-02-28 Thread David Cournapeau
On Sat, Feb 28, 2009 at 6:46 AM, Darren Dale wrote: > VC++ 2005 redistributable (32 and 64 bit) > VC++ 2008 express edition sp1 > VC++ 2008 redistributable x86 > MVS 2008 remote debugger light (x74) > MS windows sdk for VS 2008 headers and libraries > MS windows sdk for VS 2008 SP1 express tools

Re: [Numpy-discussion] Call for testing: full blas/lapack builds of numpy on windows 64 bits

2009-02-28 Thread David Cournapeau
On Sat, Feb 28, 2009 at 7:01 AM, Bruce Southey wrote: > Hi, > After much frustration and disabling my antivirus software (McAfee), I > was able to get the 'import numpy' to work and tests to pass as > expected. Of course after turning it back on and restarting the IDLE gui > a few times, the 'imp

Re: [Numpy-discussion] Bilateral filter

2009-02-28 Thread Nadav Horesh
I could not reproduce your error. I am using latest official releases of numpy and cython on a linux box (do you use Mac?). I am attaching the package I have on my PC, for the small chance it would help. Nadav. -הודעה מקורית- מאת: numpy-discussion-boun...@scipy.org בשם Zachary Pincu

Re: [Numpy-discussion] Call for testing: full blas/lapack builds of numpy on windows 64 bits

2009-02-28 Thread David Cournapeau
On Sat, Feb 28, 2009 at 6:08 AM, Nathan Bell wrote: > On Fri, Feb 27, 2009 at 2:33 PM, David Cournapeau wrote: >> >> Great, thanks. Do you have VS installed ? Did you install python for >> all users (I would guess so, but I am not yet clear on all the details >> on that matter). >> > > I do not h

Re: [Numpy-discussion] Slicing/selection in multiple dimensions simultaneously

2009-02-28 Thread Jonathan Taylor
Hi Dave. This does seem like the only way to write this nicely. Unfortunately, I think this may be wasteful memory wise (in contrast to what the obvious matlab code would do) as it constructs an array with the whole first index intact at first. I think I will use it anyways though as I find the

Re: [Numpy-discussion] RFR: #1008 Loss of precision in (complex) arcsinh & arctanh

2009-02-28 Thread David Cournapeau
On Sat, Feb 28, 2009 at 11:08 PM, Pauli Virtanen wrote: > > http://scipy.org/scipy/numpy/ticket/1008 > > http://codereview.appspot.com/22054 I added a few comments - the only significant one concerns types for unit tests: I think it would be nice to test for float and long double as well. David

Re: [Numpy-discussion] RFR: #1008 Loss of precision in (complex) arcsinh & arctanh

2009-02-28 Thread Stéfan van der Walt
Hey Pauli 2009/2/28 Pauli Virtanen : > > http://scipy.org/scipy/numpy/ticket/1008 > http://codereview.appspot.com/22054 Fantastic patch! Please apply. Cheers Stéfan ___ Numpy-discussion mailing list Numpy-discussion@scipy.org http://projects.scipy.org

[Numpy-discussion] RFR: #1008 Loss of precision in (complex) arcsinh & arctanh

2009-02-28 Thread Pauli Virtanen
http://scipy.org/scipy/numpy/ticket/1008 http://codereview.appspot.com/22054 -- Pauli Virtanen ___ Numpy-discussion mailing list Numpy-discussion@scipy.org http://projects.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] intersect1d and setmember1d

2009-02-28 Thread Neil
mudit sharma yahoo.com> writes: > intersect1d and setmember1d doesn't give expected results in case there are duplicate values in either > array becuase it works by sorting data and substracting previous value. Is there an alternative in numpy > to get indices of intersected values. > > In [31]:

Re: [Numpy-discussion] Tickets for closing

2009-02-28 Thread Pauli Virtanen
Sat, 28 Feb 2009 21:30:27 +0900, David Cournapeau wrote: [clip: #951] > I think there are issues with this on windows (removing files with open > handles fail), I will check and comment/close depending on the result. [clip: #629] > Yes it should fix this long-standing issue, but only in some cases

Re: [Numpy-discussion] Tickets for closing

2009-02-28 Thread David Cournapeau
On Sat, Feb 28, 2009 at 9:11 PM, Pauli Virtanen wrote: > Hi, > > Could someone with the proper Trac permissions close the following > tickets: > >        http://scipy.org/scipy/numpy/ticket/884 >        http://scipy.org/scipy/numpy/ticket/902 >                Fixed in trunk, when fix_float_format

[Numpy-discussion] Tickets for closing

2009-02-28 Thread Pauli Virtanen
Hi, Could someone with the proper Trac permissions close the following tickets: http://scipy.org/scipy/numpy/ticket/884 http://scipy.org/scipy/numpy/ticket/902 Fixed in trunk, when fix_float_format was merged back. http://scipy.org/scipy/numpy/ticket/955

Re: [Numpy-discussion] Bilateral filter

2009-02-28 Thread Stéfan van der Walt
Hi Zachary 2009/2/27 Zachary Pincus : > I just grabbed the latest bilateral filter from Stéfan's repository, > but I can't get it to work! I'm using a recent numpy SVN and the > latest release of cython... Just to do a sanity check, did you do: python setup.py build_ext -i and then ran the exam