Re: [Numpy-discussion] ANN: NumPy 1.7.1 release

2013-04-25 Thread Ondřej Čertík
On Tue, Apr 23, 2013 at 12:10 PM, Frédéric Bastien wrote: > Hi, > > A big thanks for that release. > > I also think it would be useful to do a release candidate about this. This > release changed the behavior releated to python long and broke a test in > Theano. Nothing important, but we could hav

Re: [Numpy-discussion] f2py and object libraries

2013-04-25 Thread Aron Ahmadia
Hi Jon, I have personally never used f2py to link to library code, but according to the documentation: http://cens.ioc.ee/projects/f2py2e/usersguide/index.html#command-f2py if you are building a module (that is, invoking f2py -c), then you can either include the path to the .a file directly at t

Re: [Numpy-discussion] Random number generation and testing across different OS's.

2013-04-25 Thread Christian K.
Hi Andrew, Am 12.04.13 11:50, schrieb Andrew Nelson: > I have written a differential evolution optimiser that i use for > curvefitting. As a genetic optimisation technique it is stochastic and > relies heavily on random number generators to do the minimisation. As > part out of

Re: [Numpy-discussion] Proposal of new function: iteraxis()

2013-04-25 Thread Sebastian Berg
On Thu, 2013-04-25 at 14:04 -0600, Charles R Harris wrote: > > > On Thu, Apr 25, 2013 at 1:51 PM, wrote: > On Thu, Apr 25, 2013 at 3:40 PM, Robert Kern > wrote: > > On Thu, Apr 25, 2013 at 8:21 PM, Andrew Giessel > > wrote: > >> I respect this opinion.

Re: [Numpy-discussion] Proposal of new function: iteraxis()

2013-04-25 Thread Charles R Harris
On Thu, Apr 25, 2013 at 1:51 PM, wrote: > On Thu, Apr 25, 2013 at 3:40 PM, Robert Kern > wrote: > > On Thu, Apr 25, 2013 at 8:21 PM, Andrew Giessel > > wrote: > >> I respect this opinion. However (and maybe this is legacy), while > reading > >> through the numeric.py source file, I was surpris

Re: [Numpy-discussion] Proposal of new function: iteraxis()

2013-04-25 Thread josef . pktd
On Thu, Apr 25, 2013 at 3:40 PM, Robert Kern wrote: > On Thu, Apr 25, 2013 at 8:21 PM, Andrew Giessel > wrote: >> I respect this opinion. However (and maybe this is legacy), while reading >> through the numeric.py source file, I was surprised at how short many of the >> functions are, generally.

Re: [Numpy-discussion] Proposal of new function: iteraxis()

2013-04-25 Thread Robert Kern
On Thu, Apr 25, 2013 at 8:21 PM, Andrew Giessel wrote: > I respect this opinion. However (and maybe this is legacy), while reading > through the numeric.py source file, I was surprised at how short many of the > functions are, generally. Functions like ones() and zeros() are pretty > simple wrap

Re: [Numpy-discussion] Proposal of new function: iteraxis()

2013-04-25 Thread Andrew Giessel
I respect this opinion. However (and maybe this is legacy), while reading through the numeric.py source file, I was surprised at how short many of the functions are, generally. Functions like ones() and zeros() are pretty simple wrappers which call empty() and then copy over values. FWIW, I had

Re: [Numpy-discussion] Proposal of new function: iteraxis()

2013-04-25 Thread Robert Kern
On Thu, Apr 25, 2013 at 6:54 PM, Matthew Brett wrote: > Hi, > > On Thu, Apr 25, 2013 at 10:42 AM, Robert Kern wrote: >> On Thu, Apr 25, 2013 at 6:30 PM, Matthew Brett >> wrote: >>> So the decision has to be based on some estimate of: >>> >>> 1) Cost for adding a new function to the namespace >

Re: [Numpy-discussion] 1.8 release

2013-04-25 Thread Jay Bourque
I would love to get the following pull requests of mine merged in: https://github.com/numpy/numpy/pull/2822 https://github.com/numpy/numpy/pull/462 https://github.com/numpy/numpy/pull/359 https://github.com/numpy/numpy/pull/2821 The last one probably requires a bit more work, but I'm still waitin

Re: [Numpy-discussion] Proposal of new function: iteraxis()

2013-04-25 Thread Matthew Brett
Hi, On Thu, Apr 25, 2013 at 10:42 AM, Robert Kern wrote: > On Thu, Apr 25, 2013 at 6:30 PM, Matthew Brett > wrote: >> Hi, >> >> On Thu, Apr 25, 2013 at 10:14 AM, Robert Kern wrote: >>> On Wed, Apr 24, 2013 at 10:37 PM, andrew giessel >>> wrote: Hello all- A while back I emailed

Re: [Numpy-discussion] Proposal of new function: iteraxis()

2013-04-25 Thread Robert Kern
On Thu, Apr 25, 2013 at 6:30 PM, Matthew Brett wrote: > Hi, > > On Thu, Apr 25, 2013 at 10:14 AM, Robert Kern wrote: >> On Wed, Apr 24, 2013 at 10:37 PM, andrew giessel >> wrote: >>> Hello all- >>> >>> A while back I emailed the list about function for the numpy namespace, >>> iteraxis(), which

Re: [Numpy-discussion] Proposal of new function: iteraxis()

2013-04-25 Thread Matthew Brett
Hi, On Thu, Apr 25, 2013 at 10:14 AM, Robert Kern wrote: > On Wed, Apr 24, 2013 at 10:37 PM, andrew giessel > wrote: >> Hello all- >> >> A while back I emailed the list about function for the numpy namespace, >> iteraxis(), which allows you to generalize the default iteration behavior of >> nump

[Numpy-discussion] f2py and object libraries

2013-04-25 Thread Jonathan Slavin
Hi all, I have recently started using f2py to access some legacy fortran code and it's mostly worked better than I expected. It handles common blocks, block data, etc. with no problems. I did need to define the type of all the arguments in subroutine and function calls, but not in the body of th

Re: [Numpy-discussion] Proposal of new function: iteraxis()

2013-04-25 Thread Robert Kern
On Wed, Apr 24, 2013 at 10:37 PM, andrew giessel wrote: > Hello all- > > A while back I emailed the list about function for the numpy namespace, > iteraxis(), which allows you to generalize the default iteration behavior of > numpy arrays over any axis. > > I've implemented this function more clea

Re: [Numpy-discussion] 1.8 release

2013-04-25 Thread Sebastian Berg
On Thu, 2013-04-25 at 09:16 -0600, Charles R Harris wrote: > Hi All, > > I think it is time to start the runup to the 1.8 release. I don't know > of any outstanding blockers but if anyone has a PR/issue that they > feel needs to be in the next Numpy release now is the time to make it > known. Sou

Re: [Numpy-discussion] 1.8 release

2013-04-25 Thread Dave Hirschfeld
Charles R Harris gmail.com> writes: > > Hi All,I think it is time to start the runup to the 1.8 release. I don't know of any outstanding blockers but if anyone has a PR/issue that they feel needs to be in the next Numpy release now is the time to make it known.Chuck > It would be good to get

[Numpy-discussion] 1.8 release

2013-04-25 Thread Charles R Harris
Hi All, I think it is time to start the runup to the 1.8 release. I don't know of any outstanding blockers but if anyone has a PR/issue that they feel needs to be in the next Numpy release now is the time to make it known. Chuck ___ NumPy-Discussion mai