diff options
author | Raymond Hettinger <python@rcn.com> | 2004-11-18 05:51:53 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-11-18 05:51:53 (GMT) |
commit | b2d5a8efd5044274f4f36654ab4dcb28b5b5135e (patch) | |
tree | 27ca5f79185cef541155a161bd0fe34e0ee609ac /Doc/whatsnew | |
parent | 2224be64dc1d62906ec1b3c1ab2a4986212c68ed (diff) | |
download | cpython-b2d5a8efd5044274f4f36654ab4dcb28b5b5135e.zip cpython-b2d5a8efd5044274f4f36654ab4dcb28b5b5135e.tar.gz cpython-b2d5a8efd5044274f4f36654ab4dcb28b5b5135e.tar.bz2 |
Comment for performance measurement.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/whatsnew24.tex | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/whatsnew24.tex b/Doc/whatsnew/whatsnew24.tex index 5727334..7b4238a 100644 --- a/Doc/whatsnew/whatsnew24.tex +++ b/Doc/whatsnew/whatsnew24.tex @@ -1085,6 +1085,14 @@ you want to efficiently glue a large number of strings together. \end{itemize} % XXX fill in these figures +% pystone is almost useless for comparing different versions of Python; +% instead, it excels at predicting relative Python performance on +% different machines. +% So, this section would be more informative if it used other tools +% such as pybench and parrotbench. For a more application oriented +% benchmark, try comparing the timings of test_decimal.py under 2.3 +% and 2.4. + The net result of the 2.4 optimizations is that Python 2.4 runs the pystone benchmark around XX\% faster than Python 2.3 and YY\% faster than Python 2.2. |