[Numpy-discussion] Hang in numpy.zeros

2015-03-24 Thread Albert Zeyer
Hi, I have a multithreaded multiprocessing Python 2.7 project with Theano. In my main proc, I recognized a hang in numpy.zeros. It deadlocks with the Python GIL and other native threads will lock on the Python GIL. I found a somewhat related problem described here about such a deadlock in

[Numpy-discussion] EuroScipy 2015: Call for talks, posters tutorials

2015-03-24 Thread Nicolas P. Rougier
Dear all, EuroScipy 2015, the annual conference on Python in science will take place in Cambridge, UK on 26-30 August 2015. The conference features two days of tutorials followed by two days of scientific talks posters and an extra day dedicated to developer sprints. It is the major event in

[Numpy-discussion] netcdf lat lon to coord - ValueError: need more than 1 value to unpack

2015-03-24 Thread questions anon
I would like to find the nearest coord in a netcdf from a given latitude and longitude. I found some fantastic code that does this - http://nbviewer.ipython.org/github/Unidata/unidata-python-workshop/blob/master/netcdf-by-coordinates.ipynb but I keep receiving this error - I am receiving a

Re: [Numpy-discussion] Introductory mail and GSoc Project Vector math library integration

2015-03-24 Thread Gregor Thalhammer
Am 12.03.2015 um 13:48 schrieb Julian Taylor jtaylor.deb...@googlemail.com: On 03/12/2015 10:15 AM, Gregor Thalhammer wrote: Another note, numpy makes it easy to provide new ufuncs, see http://docs.scipy.org/doc/numpy-dev/user/c-info.ufunc-tutorial.html from a C function that operates

Re: [Numpy-discussion] netcdf lat lon to coord - ValueError: need more than 1 value to unpack

2015-03-24 Thread Kiko
2015-03-24 11:02 GMT+01:00 questions anon questions.a...@gmail.com: I would like to find the nearest coord in a netcdf from a given latitude and longitude. I found some fantastic code that does this -

Re: [Numpy-discussion] Asking proposal review/feedback for GSOC 15

2015-03-24 Thread Oğuzhan Ünlü
Hi Nikolay, Thanks for pointing out that! It really helped. I think it looks better and easier to review now. I appreciate any comment/feedback. My proposal is at https://gist.github.com/oguzhanunlu/1f8bf3ffc6ac5c420dd1 Thanks in advance, Oguzhan Hi, Oguzhan. I suggest to add .md extension to

Re: [Numpy-discussion] Improve Numpy Datetime Functionality for Gsoc

2015-03-24 Thread Ralf Gommers
Hi Saprative and Smruti, Sorry for the slow reply, I overlooked this thread. http://thread.gmane.org/gmane.comp.python.numeric.general/53805 and the discussion that followed (also linked from the ideas page) should give you some idea of what is required. If you want to start working on a patch I

Re: [Numpy-discussion] Asking proposal review/feedback for GSOC 15

2015-03-24 Thread Ralf Gommers
On Tue, Mar 24, 2015 at 1:12 PM, Oğuzhan Ünlü cengoguzhanu...@gmail.com wrote: Hi Nikolay, Thanks for pointing out that! It really helped. I think it looks better and easier to review now. I appreciate any comment/feedback. My proposal is at

Re: [Numpy-discussion] Improve Numpy Datetime Functionality for Gsoc

2015-03-24 Thread SMRUTI RANJAN SAHOO
you are saying that if i will find out this bugs ,then i will selected for gsoc 2015 ?? and where i will find my mentor?? On Wed, Mar 25, 2015 at 3:33 AM, Ralf Gommers ralf.gomm...@gmail.com wrote: Hi Saprative and Smruti, Sorry for the slow reply, I overlooked this thread.

Re: [Numpy-discussion] Improve Numpy Datetime Functionality for Gsoc

2015-03-24 Thread Stephan Hoyer
The most recent discussion about datetime64 was back in March and April of last year: http://mail.scipy.org/pipermail/numpy-discussion/2014-March/thread.html#69554 http://mail.scipy.org/pipermail/numpy-discussion/2014-April/thread.html#69774 In addition to unfortunate timezone handling,

Re: [Numpy-discussion] Asking proposal review/feedback for GSOC 15

2015-03-24 Thread Nikolay Mayorov
Hi, Oguzhan. I suggest to add .md extension to the gist file, now it is displayed as raw text. Date: Tue, 24 Mar 2015 01:16:40 +0200 From: cengoguzhanu...@gmail.com To: numpy-discussion@scipy.org Subject: Re: [Numpy-discussion] Asking proposal review/feedback for GSOC 15 Hi again, Thanks Ralf, I

Re: [Numpy-discussion] netcdf lat lon to coord - ValueError: need more than 1 value to unpack

2015-03-24 Thread questions anon
perfect, thank you! On Tue, Mar 24, 2015 at 9:14 PM, Kiko kikocorre...@gmail.com wrote: 2015-03-24 11:02 GMT+01:00 questions anon questions.a...@gmail.com: I would like to find the nearest coord in a netcdf from a given latitude and longitude. I found some fantastic code that does this -