summaryrefslogtreecommitdiff
path: root/Tools/scripts/summarize_stats.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-87729: improve hit rate of LOAD_SUPER_ATTR specialization (#104270)Carl Meyer2023-05-111-3/+5
|
* GH-102181: Improve specialization stats for SEND (GH-102182)penguin_wwy2023-05-101-0/+2
|
* GH-100982: Break up COMPARE_AND_BRANCH (GH-102801)Brandt Bucher2023-03-231-2/+0
|
* GH-100982: Add `COMPARE_AND_BRANCH` instruction (GH-100983)Mark Shannon2023-01-161-0/+2
|
* Don't double count misses. (GH-100984)Mark Shannon2023-01-131-0/+3
|
* GH-99770: Make the correct call specialization fail kind show up in the ↵penguin_wwy2022-12-221-1/+1
| | | | stats (GH-99771)
* Assorted minor fixes for specialization stats. (GH-100219)Mark Shannon2022-12-141-10/+5
|
* GH-100143: Improve collecting pystats for parts of runs (GH-100144)Michael Droettboom2022-12-121-19/+29
| | | | | | | | * pystats off by default * Add -Xpystats flag * Always dump pystats, even if turned off
* GH-100026: Include the number of raw input files in summarize_stats.py ↵Michael Droettboom2022-12-061-0/+4
| | | | (GH-100027)
* GH-99905: Fix output of misses in summarize_stats.py execution counts (GH-99906)Michael Droettboom2022-11-301-3/+3
| | | This was an indentation error introduced in 2844aa6a
* Support comparing two sets of pystats (GH-98816)Michael Droettboom2022-11-041-122/+364
| | | | | | | | | | This adds support for comparing pystats collected from two different builds. - The `--json-output` can be used to load in a set of raw stats and output a JSON file. - Two of these JSON files can be provided on the next run, and then comparative results between the two are output.
* GH-94163: Add BINARY_SLICE and STORE_SLICE instructions. (GH-94168)Mark Shannon2022-06-271-6/+7
|
* gh-84623: Remove unused imports (#94132)Victor Stinner2022-06-221-1/+0
|
* Stats: Add summary of top instructions for misses and deferred ↵Mark Shannon2022-06-221-2/+20
| | | | specialization. (GH-94072)
* Include freelists in allocation total. (GH-93799)Mark Shannon2022-06-141-1/+1
|
* GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` ↵Mark Shannon2022-05-271-5/+12
| | | | (GH-93284)
* Split refcount stats into 'interpreter' and 'non-interpreter' (GH-92919)Mark Shannon2022-05-181-0/+6
|
* Summarize stats: Increase number of predecessor/successor pairs shown from 3 ↵Mark Shannon2022-05-171-3/+3
| | | | to 5. (GH-92853)
* Improve object stats (#92845)Mark Shannon2022-05-161-5/+13
| | | | | * Add incref/decref stats * Show ratios for allocation in summary
* summarize_stats.py: add pairs by opcode (GH-31957)Dennis Sweeney2022-03-181-9/+44
|
* Fix reporting of specialization stats. (GH-31503)Mark Shannon2022-02-221-1/+1
|
* Remove pair-counts from specialization stats. (GH-31500)Mark Shannon2022-02-221-2/+5
|
* Add pair counts to stats output and summary. (GH-31324)Mark Shannon2022-02-141-5/+35
|
* Add stats for PRECALL_FUNCTION. (GH-31250)Mark Shannon2022-02-101-0/+2
|
* Right justify numeric columns in stats summary script. (GH-31234)Mark Shannon2022-02-101-8/+17
|
* bpo-46072: Output stats as markdown with collapsible sections. (GH-31228)Mark Shannon2022-02-091-70/+186
|
* Print summary stats for overall success of specialization. (GH-31211)Mark Shannon2022-02-081-0/+32
|
* Add miss stats for specialized instructions. (GH-31108)Mark Shannon2022-02-041-4/+8
|
* Add specialization stats for FOR_ITER. (GH-31079)Mark Shannon2022-02-021-1/+1
|
* bpo-46072: Add some frame stats. (GH-31060)Mark Shannon2022-02-021-0/+3
|
* bpo-46072: Add some object layout and allocation stats (GH-31051)Mark Shannon2022-02-011-1/+11
|
* bpo-46072: Add simple stats for Python calls. (GH-30989)Mark Shannon2022-01-281-0/+8
|
* bpo-45609: More specialization stats for STORE_SUBSCR (GH-30193)Dennis Sweeney2022-01-041-2/+2
|
* bpo-46072: Add top level stats struct (GH-30169)Mark Shannon2021-12-171-19/+69
|
* bpo-46072: Document --enable-stats option. (GH-30139)Mark Shannon2021-12-161-0/+53