Re: [Numpy-discussion] draft enum NEP

2012-03-13 Thread Dag Sverre Seljebotn
On 03/13/2012 06:44 PM, Mark Wiebe wrote: > On Fri, Mar 9, 2012 at 8:55 AM, Bryan Van de Ven > wrote: > > Hi all, > > I have started working on a NEP for adding an enumerated type to NumPy. > It is on my GitHub: > > https://github.com/bryevdv/numpy/blob/

Re: [Numpy-discussion] draft enum NEP

2012-03-13 Thread Mark Wiebe
On Fri, Mar 9, 2012 at 8:55 AM, Bryan Van de Ven wrote: > Hi all, > > I have started working on a NEP for adding an enumerated type to NumPy. > It is on my GitHub: > > https://github.com/bryevdv/numpy/blob/enum/doc/neps/enum.rst > > It is still very rough, and incomplete in places. But I would

Re: [Numpy-discussion] numpy videos

2012-03-13 Thread Abhishek Pratap
Thanks guys..very handy examples by Francesc. I need to bookmark them until I reach this point. best, -Abhi On Tue, Mar 13, 2012 at 9:24 AM, Francesc Alted wrote: > On Mar 13, 2012, at 7:31 AM, Sturla Molden wrote: > >> On 12.03.2012 23:23, Abhishek Pratap wrote: >>> Super awesome. I love how th

Re: [Numpy-discussion] Looking for people interested in helping with Python compiler to LLVM

2012-03-13 Thread Ilan Schnell
As far as I understand, the goal is not to handle arbitrary Python code, because this would become too difficult as is not necessary when you have a simple math oriented function which you want to speed up. The idea is to create something similar to http://www.enthought.com/~ischnell/paper.html wh

Re: [Numpy-discussion] Looking for people interested in helping with Python compiler to LLVM

2012-03-13 Thread Nathaniel Smith
On Tue, Mar 13, 2012 at 5:18 PM, Travis Oliphant wrote: > Cython and Numba certainly overlap.  However, Cython requires: > >        1) learning another language So is the goal for numba to actually handle arbitrary Python code with correct semantics, i.e., it's actually a compiled implementation

Re: [Numpy-discussion] Looking for people interested in helping with Python compiler to LLVM

2012-03-13 Thread Travis Oliphant
>> >> (Mark F., how does the above match how you feel about this?) > > I would like collaboration, but from a technical perspective I think > this would be much more involved than just dumping the AST to an IR > and generating some code from there. For vector expressions I think > sharing code wo

Re: [Numpy-discussion] Looking for people interested in helping with Python compiler to LLVM

2012-03-13 Thread mark florisson
On 13 March 2012 09:19, Travis Oliphant wrote: > > On Mar 13, 2012, at 12:58 AM, Dag Sverre Seljebotn wrote: > > On 03/10/2012 10:35 PM, Travis Oliphant wrote: > > Hey all, > > > I gave a lightning talk this morning on numba which is the start of a > > Python compiler to machine code through the L

Re: [Numpy-discussion] numpy videos

2012-03-13 Thread Francesc Alted
On Mar 13, 2012, at 7:31 AM, Sturla Molden wrote: > On 12.03.2012 23:23, Abhishek Pratap wrote: >> Super awesome. I love how the python community in general keeps the >> recordings available for free. >> >> @Adam : I do have some problems that I can hit numpy with, mainly >> bigData based. So in

Re: [Numpy-discussion] numpy videos

2012-03-13 Thread Sturla Molden
On 12.03.2012 23:23, Abhishek Pratap wrote: Super awesome. I love how the python community in general keeps the recordings available for free. @Adam : I do have some problems that I can hit numpy with, mainly bigData based. So in summary I have millions/billions of rows of biological data on whi

Re: [Numpy-discussion] Looking for people interested in helping with Python compiler to LLVM

2012-03-13 Thread Travis Oliphant
On Mar 13, 2012, at 12:58 AM, Dag Sverre Seljebotn wrote: > On 03/10/2012 10:35 PM, Travis Oliphant wrote: >> Hey all, >> >> I gave a lightning talk this morning on numba which is the start of a >> Python compiler to machine code through the LLVM tool-chain. It is proof >> of concept stage only