Hoyt Koepke wrote:
> I would definitely like to continue trying to develop cython in an
> ongoing way, and my intent was to try to use the sage days coding
> sprint as a way to gain some familiarity with the cython code base.  I
> suggested the previous project in part because there are a lot of
> aspects that I could do on my own so I don't monopolize other people's
> time with questions.  In general, though, I am still balancing
> classes, prelims, and research, which is the only reason I haven't got
> more involved with cython til now, and I don't think things will let
> up until the fall.

I've now got a bit more time.

I don't know how things are going at Sage days; but if you're still up 
for it, and e.g. Robert has an hour for you later on, I could spend some 
time posting an outline for how I'd go about the (2) project and then 
perhaps Robert could mentor a bit from there.

I.e. the goal would be to allow for instance

cdef np.ndarray[int, ndim=3] arr1 = ..., arr2
for idx in cython.iterate(arr1, arr2):
     arr1[idx] = arr1[idx] + arr2[idx]

where idx is some "psuedo-tuple" of ndim length, and have it compile to 
a native loop.

-- 
Dag Sverre
_______________________________________________
Cython-dev mailing list
[email protected]
http://codespeak.net/mailman/listinfo/cython-dev

Reply via email to