homepage

This issue tracker has been migrated to GitHub , and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: pybench and test.pystone poorly documented
Type: behavior Stage:
Components: Benchmarks, Documentation Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, flox, lemburg, pitrou, python-dev, vstinner
Priority: normal Keywords:

Created on 2012年07月16日 13:41 by flox, last changed 2022年04月11日 14:57 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 552 closed dstufft, 2017年03月31日 16:36
Messages (16)
msg165603 - (view) Author: Florent Xicluna (flox) * (Python committer) Date: 2012年07月16日 13:41
The benchmarking tools "pystones" and "pybench" which are shipped with the Python standard distribution are not documented.
The only information is in the what's-new for Python 2.5:
http://docs.python.org/dev/whatsnew/2.5.html?highlight=pybench#new-improved-and-removed-modules
IMHO, they should be mentioned somewhere in the HOWTOs, the FAQ or the standard library documentation ("Development Tools" or "Debugging and Profiling")
msg165717 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2012年07月17日 13:02
I disagree. They are outdated benchmarks and probably should either be removed or left undocumented. Proper testing of performance is with the Unladen Swallow benchmarks.
msg165719 - (view) Author: Marc-Andre Lemburg (lemburg) * (Python committer) Date: 2012年07月17日 13:36
Brett Cannon wrote:
> 
> Brett Cannon <brett@python.org> added the comment:
> 
> I disagree. They are outdated benchmarks and probably should either be removed or left undocumented. Proper testing of performance is with the Unladen Swallow benchmarks.
I disagree with your statement. Just like every benchmark, they serve
their purpose in their particular field of use, e.g. pybench may not
be useful for the JIT approach originally taken by the Unladden Swallow
project, but it's still useful to test/check changes in the non-JIT
CPython interpreter and it's extensible to take new developments
into account. pystone is useful to get a quick feel the performance
of Python on a machine.
msg165721 - (view) Author: Florent Xicluna (flox) * (Python committer) Date: 2012年07月17日 13:50
Actually, I discovered "python -m test.pystone" during the talk of Mike Müller at EuroPython. http://is.gd/fasterpy
Even if they are suboptimal for true benchmarks, they should probably be mentioned somewhere.
In the same paragraph, there should be a link to the "Grand Unified Python Benchmark Suite" as best practice:
http://hg.python.org/benchmarks
http://hg.python.org/benchmarks/file/tip
http://hg.python.org/benchmarks/file/tip/README.txt
The last paragraph of this wiki page might be reworded and included in the Python documentation:
http://code.google.com/p/unladen-swallow/wiki/Benchmarks
http://code.google.com/p/unladen-swallow/wiki/Benchmarks#Benchmarks_we_don't_use
BTW, there's also this website which seems not updated anymore...
http://speed.python.org/ 
msg165724 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2012年07月17日 14:54
The Unladen Swallow benchmarks are in no way specific to JITs; it is a set of thorough benchmarks for measuring the overall performance of a Python VM.
As for speed.python.org, we know that it is currently not being updated as we are waiting for people to have the time to move it forward and replace speed.pypy.org for all Python VMs.
msg181218 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013年02月02日 21:40
I don't really think they deserve documenting.
pystones can arguably be a cheap and easy way of comparing performance of different systems *using the exact same Python interpreter*. It's the only point of running pystones.
As for pybench, it probably had a point when there wasn't anything better, but I don't think it has anymore. We have a much better benchmarks suite right now, and we also have a couple specialized benchmarks in the tools directory.
msg276227 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016年09月13日 09:46
New changeset 08a0b75904c6 by Victor Stinner in branch 'default':
Remove pybench microbenchmark
https://hg.python.org/cpython/rev/08a0b75904c6 
msg276228 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016年09月13日 09:49
New changeset e03c1b6830fd by Victor Stinner in branch 'default':
Remove pystone microbenchmark
https://hg.python.org/cpython/rev/e03c1b6830fd 
msg276231 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016年09月13日 09:52
We now have a good and stable benchmark suite: https://github.com/python/performance
I removed pystone and pybench from Python 3.7. Please use performance instead of old and not reliable microbenchmarks like pybench or pystone.
msg276332 - (view) Author: Marc-Andre Lemburg (lemburg) * (Python committer) Date: 2016年09月13日 19:27
Please add notes to the Tools/README pointing users to the performance suite.
I'd also like to request that you reword this dismissive line in the performance package's readme:
"""
pybench - run the standard Python PyBench benchmark suite. This is considered an unreliable, unrepresentative benchmark; do not base decisions off it. It is included only for completeness.
"""
I suppose this was taken from the Unladden Swallow list of benchmarks and completely misses the point of what pybench is all about: it's a benchmark to run performance tests for individual parts of CPython's VM implementation. It never was intended to be representative. The main purpose is to be able to tell whether an optimization in CPython has an impact on individual areas of the interpreter or not.
Thanks.
msg276439 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016年09月14日 13:20
> I'd also like to request that you reword this dismissive line in the performance package's readme: (...)
Please report issues of the performance module on its own bug tracker:
https://github.com/python/performance
Can you please propose a new description? You might even create a pull
request ;-)
Note: I'm not sure that we should keep pybench, this benchmark really
looks unreliable. But I should still try at least to use the same
number of iterations for all worker child processes. Currently the
calibration is done in each child process.
msg276536 - (view) Author: Marc-Andre Lemburg (lemburg) * (Python committer) Date: 2016年09月15日 09:00
On 14.09.2016 15:20, STINNER Victor wrote:
> 
> STINNER Victor added the comment:
> 
>> I'd also like to request that you reword this dismissive line in the performance package's readme: (...)
> 
> Please report issues of the performance module on its own bug tracker:
> https://github.com/python/performance
> 
> Can you please propose a new description? You might even create a pull
> request ;-)
I'll send a PR.
> Note: I'm not sure that we should keep pybench, this benchmark really
> looks unreliable. But I should still try at least to use the same
> number of iterations for all worker child processes. Currently the
> calibration is done in each child process.
Well, pybench is not just one benchmark, it's a whole collection of
benchmarks for various different aspects of the CPython VM and per
concept it tries to calibrate itself per benchmark, since each
benchmark has different overhead.
The number of iterations per benchmark will not change between
runs, since this number is fixed in each benchmark. These numbers
do need an update, though, since at the time of writing pybench
CPUs were a lot less powerful compare to today.
Here's the comment with the guideline for the number of rounds
to use per benchmark:
 # Number of rounds to execute per test run. This should be
 # adjusted to a figure that results in a test run-time of between
 # 1-2 seconds.
 rounds = 100000
BTW: Why would you want to run benchmarks in child processes
and in parallel ? This will usually dramatically effect the
results of the benchmark runs. Ideally, the pybench process
should be the only CPU intense work load on the entire CPU
to get reasonable results.
msg276537 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016年09月15日 09:11
Hum, since the discussion restarted, I reopen the issue ...
"Well, pybench is not just one benchmark, it's a whole collection of benchmarks for various different aspects of the CPython VM and per concept it tries to calibrate itself per benchmark, since each benchmark has different overhead."
In the performance module, you now get individual timing for each pybench benchmark, instead of an overall total which was less useful.
"The number of iterations per benchmark will not change between runs, since this number is fixed in each benchmark."
Please take a look at the new performance module, it has a different design. Calibration is based on minimum time per sample, no more on hardcoded things. I modified all benchmarks, not only pybench.
"BTW: Why would you want to run benchmarks in child processes and in parallel ?"
Child processes are run sequentially.
Running benchmarks in multiple processes help to get more reliable benchmarks. Read my article if you want to learn more about the design of my perf module:
http://haypo-notes.readthedocs.io/microbenchmark.html#my-articles
"Ideally, the pybench process should be the only CPU intense work load on the entire CPU to get reasonable results."
The perf module automatically uses isolated CPU. It strongly suggests to use this amazing Linux feature to run benchmarks!
https://haypo.github.io/journey-to-stable-benchmark-system.html
I started to write advices to get stable benchmarks:
https://github.com/python/performance#how-to-get-stable-benchmarks
Note: See also the https://mail.python.org/mailman/listinfo/speed mailing list ;-)
msg276538 - (view) Author: Marc-Andre Lemburg (lemburg) * (Python committer) Date: 2016年09月15日 09:21
On 15.09.2016 11:11, STINNER Victor wrote:
> 
> STINNER Victor added the comment:
> 
> Hum, since the discussion restarted, I reopen the issue ...
> 
> "Well, pybench is not just one benchmark, it's a whole collection of benchmarks for various different aspects of the CPython VM and per concept it tries to calibrate itself per benchmark, since each benchmark has different overhead."
> 
> In the performance module, you now get individual timing for each pybench benchmark, instead of an overall total which was less useful.
pybench had the same intention. It was a design mistake to add an
overall timing to each suite run. The original intention was to
compare each benchmark individually.
Perhaps it would make sense to try to port the individual benchmark
tests in pybench to performance.
> "The number of iterations per benchmark will not change between runs, since this number is fixed in each benchmark."
> 
> Please take a look at the new performance module, it has a different design. Calibration is based on minimum time per sample, no more on hardcoded things. I modified all benchmarks, not only pybench.
I think we are talking about different things here: calibration is
pybench means that you try to determine the overhead of the
outer loop and possible setup code that is needed to run the
the test.
pybench runs a calibration method which has the same
code as the main test, but without the actual operations that you
want to test, in order to determine the timing of the overhead.
It then takes the minimum timing from overhead runs and uses
this as base line for the actual test runs (it subtracts the
overhead timing from the test run results).
This may not be ideal in all cases, but it's the closest
I could get to timing of the test operations at the time.
I'll have a look at what performance does.
> "BTW: Why would you want to run benchmarks in child processes and in parallel ?"
> 
> Child processes are run sequentially.
Ah, ok.
> Running benchmarks in multiple processes help to get more reliable benchmarks. Read my article if you want to learn more about the design of my perf module:
> http://haypo-notes.readthedocs.io/microbenchmark.html#my-articles
Will do, thanks.
> "Ideally, the pybench process should be the only CPU intense work load on the entire CPU to get reasonable results."
> 
> The perf module automatically uses isolated CPU. It strongly suggests to use this amazing Linux feature to run benchmarks!
> https://haypo.github.io/journey-to-stable-benchmark-system.html
> 
> I started to write advices to get stable benchmarks:
> https://github.com/python/performance#how-to-get-stable-benchmarks
> 
> Note: See also the https://mail.python.org/mailman/listinfo/speed mailing list ;-)
I've read some of your blog posts and articles on the subject
and your journey. Interesting stuff, definitely. Benchmarking
these days appears to have gotten harder not simpler compared to
the days of pybench some 19 years ago.
msg276540 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016年09月15日 09:41
2016年09月15日 11:21 GMT+02:00 Marc-Andre Lemburg <report@bugs.python.org>:
> I think we are talking about different things here: calibration is
> pybench means that you try to determine the overhead of the
> outer loop and possible setup code that is needed to run the
> the test.
> (...)
> It then takes the minimum timing from overhead runs and uses
> this as base line for the actual test runs (it subtracts the
> overhead timing from the test run results).
Calibration in perf means computing automatically the number of
outer-loops to get a sample of at least 100 ms (default min time).
I simply removed the code to estimate the overhead of the outer loop
in pybench. The reason is this line:
 # Get calibration
 min_overhead = min(self.overhead_times)
This is no such "minimum timing", it doesn't exist :-) In benchmarks,
you have to work on statistics: use average, standard deviation, etc.
If you badly estimate the minimum overhead, you might get negative
timings, which is not allowed in perf (even zero is an hard error in
perf).
It's not possible to compute *exactly* the "minimum overhead".
Moreover, removing the code to estimate the overhead simplified the code.
> Benchmarking these days appears to have gotten harder not simpler compared to the days of pybench some 19 years ago.
Benchmarking was always a hard problem. Modern hardware (Out of order
CPU, variable CPU frequency, power saving, etc.) problably didn't help
:-)
msg278888 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016年10月18日 15:00
I'm closing the issue again.
Again, pybench moved to http://github.com/python/performance : please continue the discussion there if you consider that we still need to do something on pybench.
FYI I reworked deeply pybench recently using the new perf 0.8 API. perf 0.8 now supports running multiple benchmarks per script, so pybench was written as only a benchmark runner. Comparison between benchmarks can be done using performance, or directly using perf (python3 -m perf compare a.json b.json).
History
Date User Action Args
2022年04月11日 14:57:32adminsetgithub: 59574
2017年03月31日 16:36:20dstufftsetpull_requests: + pull_request938
2016年10月18日 15:00:16vstinnersetstatus: open -> closed
resolution: fixed
messages: + msg278888
2016年09月15日 09:41:56vstinnersetmessages: + msg276540
2016年09月15日 09:21:34lemburgsetmessages: + msg276538
2016年09月15日 09:11:25vstinnersetstatus: closed -> open
resolution: fixed -> (no value)
messages: + msg276537
2016年09月15日 09:00:28lemburgsetmessages: + msg276536
2016年09月14日 13:20:48vstinnersetmessages: + msg276439
2016年09月13日 19:27:20lemburgsetmessages: + msg276332
2016年09月13日 09:52:02vstinnersetstatus: open -> closed
versions: + Python 3.7, - Python 3.3
nosy: + vstinner

messages: + msg276231

resolution: fixed
2016年09月13日 09:49:24python-devsetmessages: + msg276228
2016年09月13日 09:46:46python-devsetnosy: + python-dev
messages: + msg276227
2013年02月02日 21:40:08pitrousetnosy: + pitrou
messages: + msg181218
2013年02月01日 22:43:08brett.cannonsetnosy: - brett.cannon
2012年07月17日 14:54:35brett.cannonsetnosy: - jnoller
messages: + msg165724
2012年07月17日 13:50:25floxsetnosy: + jnoller
messages: + msg165721
2012年07月17日 13:36:57lemburgsetnosy: + lemburg
messages: + msg165719
2012年07月17日 13:02:39brett.cannonsetnosy: + brett.cannon
messages: + msg165717
2012年07月16日 13:41:44floxcreate

AltStyle によって変換されたページ (->オリジナル) /