Modify pyperf to display CPU stats and geomean to one decimal place. #247
markshannon
started this conversation in
Ideas
Replies: 1 comment
-
Maybe the next thing to do here is to file an issue with https://github.com/psf/pyperf/issues ? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Modern CPUs have a lot of internal counters for things like L1 cache misses, pipeline stalls, etc.
Those counters would be valuable when comparing minor improvements that don't show much speedup.
perf
can capture those stats, so we should also capture and display them.It would also be useful to have geomean to one decimal place. There is quite a difference in significance between a 0.6% speedup and a 1.4% speedup.
Beta Was this translation helpful? Give feedback.
All reactions