-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
bpo-44725 : expose specialization stats in python #27192
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR exposes the specialisation stats as a python dictionary
Awesome! I was just wondering if there was some better way to collect data and this PR does that :). Thanks!
I don't object to exposing the stats, but be warned that accessing them via Python is going to distort the results. |
Right, I'm thinking about calculating deltas that exclude any of the processing. So the call to fetch the numbers can contaminate the results (though arguably less than startup and shutdown of the whole program). We can leave the printing at the end as well. |
Lib/test/test__opcode.py
Outdated
class SpecializationStatsTests(unittest.TestCase): | ||
def test_specialization_stats(self): | ||
STAT_NAMES = ['specialization_success', 'specialization_failure', | ||
'hit', 'deferred', 'miss', 'deopt', 'unquickened'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we derive this list from elsewhere?
Maybe move this list to opcode.py
and generate it much like we generate the specialized instructions and jump tables?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree with this suggestion and have started working on it. It's a fairly large change to the existing code, so might be appropriate to do in a separate PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a slight complication with this due to NEED_OPCODE_JUMP_TABLES. Is that temporary?
The issue is this:
compile.c does
#define NEED_OPCODE_JUMP_TABLES
#include "opcode.h" // EXTENDED_ARG
so if I want specialise.c to include opcode.h I need to put the define there as well. But that is beginning to be messy. So maybe we move the define into opcode.h so that it can be included more than once?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another option is that I add a specialize.h file with specialization related definitions, and a Tools/scripts/generate_specialize.h that creates it.
Python/specialize.c
Outdated
ADD_STAT_TO_DICT(res, unquickened); | ||
#if SPECIALIZATION_STATS_DETAILED | ||
if (stats->miss_types != NULL) { | ||
if (PyDict_SetItemString(res, "detailed", stats->miss_types) == -1) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why "detailed"? This is named "fails" in print_stats()
.
LGTM |
Thanks @iritkatriel |
This PR exposes the specialisation stats as a python dictionary. It makes them easier to work with (including delta for a code snippet and unit tests for the specialisation).
I suggest that we also:
Let me know if that sounds reasonable.
https://bugs.python.org/issue44725
https://bugs.python.org/issue44725