Re: [sage-devel] profiling cython

2011-04-13 Thread Martin Rubey
Robert Bradshaw writes: > It's really hard to diagnose without seeing some code, yes, sorry about that, > but my guess is that either > > 1) The methods called in children are not in a python file compiled > with #cython: profile=True > 2) The spyx file gets a header prepended, meaning that th

Re: [sage-devel] profiling cython

2011-04-13 Thread Robert Bradshaw
On Wed, Apr 13, 2011 at 5:34 AM, Martin Rubey wrote: > Hi there! > > I'd like to profile some performance-critical cythonized sage code.  I > read that this can be done by writing > > # cython: profile=True > > at the very beginning of my file (which is configs.spyx).  However,  I > have the suspi