[Numpy-discussion] NumPy 1.11.0b3 released.

2016-02-09 Thread Charles R Harris
Hi All, I'm pleased to announce the release of NumPy 1.11.0b3. This beta contains additional bug fixes as well as limiting the number of FutureWarnings raised by assignment to masked array slices. One issue that remains to be decided is whether or not to postpone raising an error for floats used a

Re: [Numpy-discussion] Fwd: Multi-distribution Linux wheels - please test

2016-02-09 Thread Julian Taylor
On 09.02.2016 21:01, Nathaniel Smith wrote: > On Tue, Feb 9, 2016 at 11:37 AM, Julian Taylor > wrote: >> On 09.02.2016 04:59, Nathaniel Smith wrote: >>> On Mon, Feb 8, 2016 at 6:07 PM, Nathaniel Smith wrote: On Mon, Feb 8, 2016 at 6:04 PM, Matthew Brett wrote: > On Mon, Feb 8, 201

Re: [Numpy-discussion] Fwd: Multi-distribution Linux wheels - please test

2016-02-09 Thread Nathaniel Smith
On Tue, Feb 9, 2016 at 11:37 AM, Julian Taylor wrote: > On 09.02.2016 04:59, Nathaniel Smith wrote: >> On Mon, Feb 8, 2016 at 6:07 PM, Nathaniel Smith wrote: >>> On Mon, Feb 8, 2016 at 6:04 PM, Matthew Brett >>> wrote: On Mon, Feb 8, 2016 at 5:26 PM, Nathaniel Smith wrote: > On Mon, F

[Numpy-discussion] Fwd: Multi-distribution Linux wheels - please test

2016-02-09 Thread Freddy Rietdijk
On Nix we also had trouble with OpenBLAS 0.2.15. Version 0.2.14 did not cause any segmentation faults so we reverted to that version. https://github.com/scipy/scipy/issues/5620 (hopefully this time the e-mail gets through) On Tue, Feb 9, 2016 at 10:21 AM, Daπid wrote: > On 8 February 2016 at 20

Re: [Numpy-discussion] Fwd: Multi-distribution Linux wheels - please test

2016-02-09 Thread Julian Taylor
On 09.02.2016 20:52, Matthew Brett wrote: > On Mon, Feb 8, 2016 at 7:59 PM, Nathaniel Smith wrote: >> On Mon, Feb 8, 2016 at 6:07 PM, Nathaniel Smith wrote: >>> On Mon, Feb 8, 2016 at 6:04 PM, Matthew Brett >>> wrote: On Mon, Feb 8, 2016 at 5:26 PM, Nathaniel Smith wrote: > On Mon, Fe

Re: [Numpy-discussion] Fwd: Multi-distribution Linux wheels - please test

2016-02-09 Thread Matthew Brett
On Mon, Feb 8, 2016 at 7:59 PM, Nathaniel Smith wrote: > On Mon, Feb 8, 2016 at 6:07 PM, Nathaniel Smith wrote: >> On Mon, Feb 8, 2016 at 6:04 PM, Matthew Brett >> wrote: >>> On Mon, Feb 8, 2016 at 5:26 PM, Nathaniel Smith wrote: On Mon, Feb 8, 2016 at 4:37 PM, Matthew Brett wrote:

Re: [Numpy-discussion] Fwd: Multi-distribution Linux wheels - please test

2016-02-09 Thread Matthew Brett
On Tue, Feb 9, 2016 at 11:37 AM, Julian Taylor wrote: > On 09.02.2016 04:59, Nathaniel Smith wrote: >> On Mon, Feb 8, 2016 at 6:07 PM, Nathaniel Smith wrote: >>> On Mon, Feb 8, 2016 at 6:04 PM, Matthew Brett >>> wrote: On Mon, Feb 8, 2016 at 5:26 PM, Nathaniel Smith wrote: > On Mon, F

Re: [Numpy-discussion] Fwd: Multi-distribution Linux wheels - please test

2016-02-09 Thread Julian Taylor
On 09.02.2016 04:59, Nathaniel Smith wrote: > On Mon, Feb 8, 2016 at 6:07 PM, Nathaniel Smith wrote: >> On Mon, Feb 8, 2016 at 6:04 PM, Matthew Brett >> wrote: >>> On Mon, Feb 8, 2016 at 5:26 PM, Nathaniel Smith wrote: On Mon, Feb 8, 2016 at 4:37 PM, Matthew Brett wrote: [...]

Re: [Numpy-discussion] Linking other libm-Implementation

2016-02-09 Thread Matthew Brett
On Tue, Feb 9, 2016 at 7:06 AM, Daπid wrote: > On 8 February 2016 at 18:36, Nathaniel Smith wrote: >> I would be highly suspicious that this speed comes at the expense of >> accuracy... My impression is that there's a lot of room to make >> speed/accuracy tradeoffs in these functions, and modern

Re: [Numpy-discussion] Linking other libm-Implementation

2016-02-09 Thread Gregor Thalhammer
> Am 09.02.2016 um 11:21 schrieb Nils Becker : > > 2016-02-08 18:54 GMT+01:00 Julian Taylor >: > > which version of glibm was used here? There are significant difference > > in performance between versions. > > Also the input ranges are very important for th

Re: [Numpy-discussion] Linking other libm-Implementation

2016-02-09 Thread Daπid
On 8 February 2016 at 18:36, Nathaniel Smith wrote: > I would be highly suspicious that this speed comes at the expense of > accuracy... My impression is that there's a lot of room to make > speed/accuracy tradeoffs in these functions, and modern glibc's libm has > seen a fair amount of scrutiny b

Re: [Numpy-discussion] Multi-distribution Linux wheels - please test

2016-02-09 Thread Nadav Horesh
Do not know what happened --- all test passed, even when removed openblas (Nathaniel was right). Manylinux config: python -c 'import numpy; print(numpy.__config__.show())' blas_opt_info: define_macros = [('HAVE_CBLAS', None)] libraries = ['openblas'] language = c library_dirs = [

Re: [Numpy-discussion] Fwd: Multi-distribution Linux wheels - please test

2016-02-09 Thread Evgeni Burovski
>>> == >>> ERROR: test_multiarray.TestNewBufferProtocol.test_relaxed_strides >>> -- >>> Traceback (most recent call last): >>> File >>> "/home/br/virtualenvs/ma

Re: [Numpy-discussion] Linking other libm-Implementation

2016-02-09 Thread Nils Becker
2016-02-08 18:54 GMT+01:00 Julian Taylor : > which version of glibm was used here? There are significant difference > in performance between versions. > Also the input ranges are very important for these functions, depending > on input the speed of these functions can vary by factors of 1000. > > g

Re: [Numpy-discussion] resizeable arrays using shared memory?

2016-02-09 Thread Daπid
On 6 February 2016 at 23:56, Elliot Hallmark wrote: > Now, I would like to have these arrays shared between processes spawned via > multiprocessing (for fast interprocess communication purposes, not for > parallelizing work on an array). I don't care about mapping to a file on > disk, and I do

Re: [Numpy-discussion] resizeable arrays using shared memory?

2016-02-09 Thread Feng Yu
Hi, If the base address and size of the anonymous memory map are 'shared', then one can protect them with a lock, grow the memmap with remap (or unmap and map, or other tricks), and release the lock. During the 'resize' call, any reference to the array from Python in other processes could just spi

Re: [Numpy-discussion] Multi-distribution Linux wheels - please test

2016-02-09 Thread Daπid
On 8 February 2016 at 20:25, Matthew Brett wrote: > > I used the latest release, v0.2.15: > > https://github.com/matthew-brett/manylinux-builds/blob/master/build_openblas.sh#L5 > > Is there a later version that we should try? > > Cheers, > That is the one in the Fedora repos that is working for