[Python-Dev] Re: psyco

Armin Rigo arigo@ulb.ac.be
Mon, 12 Nov 2001 21:41:02 +0100


Hello Kjetil,

> tried to give the latest psyco a whirl. more specifically twist pystone a
> bit to use a psyco proxy to get an idea of the speedup for the benchmark.
> now, the downsize is that psyco segfaults with an assertion failure ;)

A few trivial and one more subtle bug prevented any seriously-sized test to
complete. I fixed it.

http://homepages.ulb.ac.be/~arigo/psyco

The pystone benchmark is not at all typical Python code :-)  psyco still
performs a x2 speed-up but this is not representative of possible results
(it suffers from missing knowledge about integer multiplications and
divisions as well as (more importantly) methods of user classes).

Armin