Improve performance

Robin Dunn wrote:

Franz Steinhäusler wrote:
> Hello, I have converted the wxWidgets Sample fractal.cpp to
wxPython.
>
> My questions are:
>
> 1) the wxWidgets implementation is about 5 times faster (only
> estimate) How can I improve the performance?

Profile the app to find out exactly what is taking so long,
then either move that part out to a C extension module, use
psyco, or etc.

I tried psyco and got about a 20% reduction in render time.

Thanks for testing. 20% is not bad, but not such a real push.

···

On Mon, 21 Aug 2006 14:31:14 -0400, <Andy.Henshaw@gtri.gatech.edu> wrote:

Robin Dunn wrote:

Franz Steinhäusler wrote:
> Hello, I have converted the wxWidgets Sample fractal.cpp to
wxPython.
>
> My questions are:
>
> 1) the wxWidgets implementation is about 5 times faster (only
> estimate) How can I improve the performance?

Profile the app to find out exactly what is taking so long,
then either move that part out to a C extension module, use
psyco, or etc.

I tried psyco and got about a 20% reduction in render time.

--

Franz Steinhaeusler