[Numpy-discussion] [ANN] bcolz 1.0.0 RC1 released

2016-03-08 Thread Francesc Alted
== Announcing bcolz 1.0.0 RC1 == What's new == Yeah, 1.0.0 is finally here. We are not introducing any exciting new feature (just some optimizations and bug fixes), but bcolz is already 6 years old and it implements most of the capabilities

[Numpy-discussion] tracemalloc + numpy?

2016-03-08 Thread Neal Becker
I'm trying tracemalloc to find memory usage. Will numpy array memory usage be counted by tracemalloc? (Doesn't seem to) ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org https://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] tracemalloc + numpy?

2016-03-08 Thread Antoine Pitrou
On Tue, 08 Mar 2016 09:26:13 -0500 Neal Becker wrote: > I'm trying tracemalloc to find memory usage. Will numpy array memory usage > be counted by tracemalloc? (Doesn't seem to) No, but together with something like https://github.com/numpy/numpy/pull/5470 it could. Regards Antoine. ___

[Numpy-discussion] 100 numpy exercises (80/100)

2016-03-08 Thread Nicolas P. Rougier
Hi all, I've just added some exercises to the collection at https://github.com/rougier/numpy-100 (and in the process, I've discovered np.argpartition... nice!) If you have some ideas/comments/corrections... Still 20 to go... Nicolas ___ NumPy-Disc

Re: [Numpy-discussion] Windows wheels, built, but should we deploy?

2016-03-08 Thread Olivier Grisel
Thanks Matthew! I just installed it and ran the tests and it all works (except for test_system_info.py that fails because I am missing a vcvarsall.bat on that system but this is expected). -- Olivier ___ NumPy-Discussion mailing list NumPy-Discussion@sc

Re: [Numpy-discussion] 100 numpy exercises (80/100)

2016-03-08 Thread Juan Nunez-Iglesias
Thanks for this fantastic resource, Nicolas! I also had never heard of argpartition and immediately know of many places in my code where I can use it. I also learned that axis= can take a tuple as an argument. On Wed, Mar 9, 2016 at 7:18 AM, Nicolas P. Rougier wrote: > > Hi all, > > I've just ad