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.

Author vstinner
Recipients christian.heimes, eric.smith, pitrou, shreyanavigyan, vstinner
Date 2021-05-14.14:53:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1621004033.94.0.193131559364.issue44130@roundup.psfhosted.org>
In-reply-to
Content
> Mean +- std dev: 455 ms +- 13 ms

A single benchmark is useless without a reference. Please run the benchmark on unpatched python, then run it again on a patched Python, and compare results. You can store benchmark results using -o option. Example:

# Unpatched python
python pyperf_benchmark.py -o ref.json
# Patched python
python pyperf_benchmark.py -o new_gil.json
# Compare
python -m pyperf compare_to ref.json new_gil.json
History
Date User Action Args
2021-05-14 14:53:53vstinnersetrecipients: + vstinner, pitrou, eric.smith, christian.heimes, shreyanavigyan
2021-05-14 14:53:53vstinnersetmessageid: <1621004033.94.0.193131559364.issue44130@roundup.psfhosted.org>
2021-05-14 14:53:53vstinnerlinkissue44130 messages
2021-05-14 14:53:53vstinnercreate