diff options
author | Mark Shannon <mark@hotpy.org> | 2023-01-13 15:57:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 15:57:39 +0000 |
commit | c00eb1eae6af3ee5b7e314add4606da4521bb8c5 (patch) | |
tree | 7023a81836253067b576e1b31fa89c668ed5e23c /Tools | |
parent | gh-100160: Restore and deprecate implicit creation of an event loop (GH-100410) (diff) | |
download | cpython-c00eb1eae6af3ee5b7e314add4606da4521bb8c5.tar.gz cpython-c00eb1eae6af3ee5b7e314add4606da4521bb8c5.tar.bz2 cpython-c00eb1eae6af3ee5b7e314add4606da4521bb8c5.zip |
Don't double count misses. (GH-100984)
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/scripts/summarize_stats.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tools/scripts/summarize_stats.py b/Tools/scripts/summarize_stats.py index 1c8d10f7027..ce25374f3a9 100644 --- a/Tools/scripts/summarize_stats.py +++ b/Tools/scripts/summarize_stats.py @@ -404,6 +404,9 @@ def emit_specialization_overview(opcode_stats, total): total = 0 counts = [] for i, opcode_stat in enumerate(opcode_stats): + # Avoid double counting misses + if title == "Misses" and "specializable" in opcode_stat: + continue value = opcode_stat.get(field, 0) counts.append((value, opname[i])) total += value |