[Numpy-discussion] Unsubscribe

2014-08-28 Thread Mochena, Mogus D.
Please unsubsribe me from this list. From: numpy-discussion-boun...@scipy.org [numpy-discussion-boun...@scipy.org] on behalf of Charles R Harris [charlesr.har...@gmail.com] Sent: Thursday, August 28, 2014 1:00 AM To: Discussion of Numerical Python Subject: Re:

Re: [Numpy-discussion] ANN: NumPy 1.9.0 release candidate 1 available

2014-08-28 Thread Carl Kleffner
I put 4 wheels for numpy-1.9.0rc1 on https://bitbucket.org/carlkl/mingw-w64-for-python/downloads . All wheels are compiled with the mingw-w64 compiler and makes use of OpenBLAS (latest github version). The 32 bit versions still have some testing errors on corner cases for atan2 and hypot. Carl

[Numpy-discussion] PR added: frozen dimensions in gufunc signatures

2014-08-28 Thread Jaime Fernández del Río
Hi, I have just sent a PR (https://github.com/numpy/numpy/pull/5015), adding the possibility of having frozen dimensions in gufunc signatures. As a proof of concept, I have added a `cross1d` gufunc to `numpy.core.umath_tests`: In [1]: import numpy as np In [2]: from numpy.core.umath_tests import

Re: [Numpy-discussion] PR added: frozen dimensions in gufunc signatures

2014-08-28 Thread Nathaniel Smith
On Fri, Aug 29, 2014 at 1:14 AM, Jaime Fernández del Río jaime.f...@gmail.com wrote: Hi, I have just sent a PR (https://github.com/numpy/numpy/pull/5015), adding the possibility of having frozen dimensions in gufunc signatures. As a proof of concept, I have added a `cross1d` gufunc to