10000 bpo-46072: Add --with-pystats configure option to simplify gathering of VM stats by markshannon · Pull Request #30116 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-46072: Add --with-pystats configure option to simplify gathering of VM stats #30116

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Dec 15, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update specialization summary script to handle larger number of kinds
  • Loading branch information
markshannon committed Dec 15, 2021
commit 03e51091d75bfb7637b233e3dc8264d2087d5bce
2 changes: 1 addition & 1 deletion Tools/scripts/summarize_specialization_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def print_stats(name, family_stats):
for key in ("specialization_success", "specialization_failure"):
print(f" {key}:{family_stats[key]:>12}")
total_failures = family_stats["specialization_failure"]
failure_kinds = [ 0 ] * 20
failure_kinds = [ 0 ] * 30
for key in family_stats:
if not key.startswith("specialization_failure_kind"):
continue
Expand Down
0