Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork34.2k
gh-144991: Use runtime JIT threshold in _testinternalcapi#145496
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -496,7 +496,7 @@ struct _py_func_state { | ||
| /* For now we hard-code this to a value for which we are confident | ||
| all the static builtin types will fit (for all builds). */ | ||
| #define _Py_MAX_MANAGED_STATIC_BUILTIN_TYPES202 | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Why was this changed? Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Because a new static type was added recently, and JIT tests crash or fail with an assertion error without this change:#145496 (comment) | ||
| #define _Py_MAX_MANAGED_STATIC_EXT_TYPES 10 | ||
| #define _Py_MAX_MANAGED_STATIC_TYPES \ | ||
| (_Py_MAX_MANAGED_STATIC_BUILTIN_TYPES + _Py_MAX_MANAGED_STATIC_EXT_TYPES) | ||
Uh oh!
There was an error while loading.Please reload this page.