On May 15, 2008, at 7:33 AM, Lisandro Dalcin wrote: > I believe Python core, if configured appropriatelly, can still profile > C functions in extension modules. But I never did that. > > On 5/14/08, Joost Cassee <[EMAIL PROTECTED]> wrote: >> Hi all, >> After having profiled a Python app I decided to convert some >> modules to >> Cython. Is it possible to profile these modules that are now >> Cython? I guess >> it is not quite a Cython question because it will probably involve >> gprof, >> but I though some people on this might have done this before.
You can still use the same profiling tools, it just won't break them down the cdef functions individually (though the total times should still be correct). - Robert _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
