Re: [Cython] Fused Types

2011-04-26 Thread Stefan Behnel
mark florisson, 26.04.2011 17:18: On 26 April 2011 16:43, Stefan Behnel wrote: mark florisson, 26.04.2011 16:23: I've been working a bit on fused types (http://wiki.cython.org/enhancements/fusedtypes), and I've got it to generate code for every permutation of specific types. Currently it only

Re: [Cython] Fused Types

2011-04-26 Thread Robert Bradshaw
On Tue, Apr 26, 2011 at 8:18 AM, mark florisson wrote: > On 26 April 2011 16:43, Stefan Behnel wrote: >> mark florisson, 26.04.2011 16:23: >>> >>> I've been working a bit on fused types >>> (http://wiki.cython.org/enhancements/fusedtypes), and I've got it to >>> generate code for every permutatio

Re: [Cython] prange CEP updated

2011-04-26 Thread Robert Bradshaw
On Tue, Apr 26, 2011 at 7:25 AM, mark florisson wrote: > On 21 April 2011 20:13, Dag Sverre Seljebotn > wrote: >> On 04/21/2011 10:37 AM, Robert Bradshaw wrote: >>> >>> On Mon, Apr 18, 2011 at 7:51 AM, mark florisson >>>  wrote: On 18 April 2011 16:41, Dag Sverre Seljebotn  wrote

Re: [Cython] speed.pypy.org

2011-04-26 Thread Robert Bradshaw
On Tue, Apr 26, 2011 at 7:50 AM, Stefan Behnel wrote: > Stefan Behnel, 15.04.2011 22:20: >> >> Stefan Behnel, 11.04.2011 15:08: >>> >>> I'm currently discussing with Maciej Fijalkowski (PyPy) how to get Cython >>> running on speed.pypy.org (that's what I wrote "cythonrun" for). If it >>> works out

Re: [Cython] Fused Types

2011-04-26 Thread mark florisson
On 26 April 2011 16:43, Stefan Behnel wrote: > mark florisson, 26.04.2011 16:23: >> >> I've been working a bit on fused types >> (http://wiki.cython.org/enhancements/fusedtypes), and I've got it to >> generate code for every permutation of specific types. Currently it >> only works for cdef functi

Re: [Cython] speed.pypy.org

2011-04-26 Thread Stefan Behnel
Stefan Behnel, 15.04.2011 22:20: Stefan Behnel, 11.04.2011 15:08: I'm currently discussing with Maciej Fijalkowski (PyPy) how to get Cython running on speed.pypy.org (that's what I wrote "cythonrun" for). If it works out well, we may have it up in a couple of days. ... or maybe not. It may tak

Re: [Cython] Fused Types

2011-04-26 Thread Stefan Behnel
mark florisson, 26.04.2011 16:23: I've been working a bit on fused types (http://wiki.cython.org/enhancements/fusedtypes), and I've got it to generate code for every permutation of specific types. Currently it only works for cdef functions. Now in SimpleCallNode I'm trying to use PyrexTypes.best_

Re: [Cython] prange CEP updated

2011-04-26 Thread mark florisson
On 21 April 2011 20:13, Dag Sverre Seljebotn wrote: > On 04/21/2011 10:37 AM, Robert Bradshaw wrote: >> >> On Mon, Apr 18, 2011 at 7:51 AM, mark florisson >>  wrote: >>> >>> On 18 April 2011 16:41, Dag Sverre Seljebotn >>>  wrote: Excellent! Sounds great! (as I won't have my laptop for

[Cython] Fused Types

2011-04-26 Thread mark florisson
Hey, I've been working a bit on fused types (http://wiki.cython.org/enhancements/fusedtypes), and I've got it to generate code for every permutation of specific types. Currently it only works for cdef functions. Now in SimpleCallNode I'm trying to use PyrexTypes.best_match() to find the function w