Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 34k
GH-112354: Initial implementation of warm up on exits and trace-stitching#114142
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
1975b4c9fb97f7f9aa23512882587c6267a55c48e88b3c2e092a3b61e3def4887e544b2172d684448793c70f12fd73fe0a5c8f0bd140486b3362c9363fe653b0991a7625bce2e191fd7941a14ccfd32851025495171dad7e6ca3fe308b2a7518143e9d8cab8bf07dad19b6b84c959e8ff393ba5bd66b01fe754843d0110cde9313077a67400a61d29b3e306d8f3aa337c849678ee6710f37d7fc1f8967d8e4c6014eb2cfcebe804fc38d4e8830eb4eFile 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 |
|---|---|---|
| @@ -235,10 +235,13 @@ struct _is{ | ||
| struct callable_cache callable_cache; | ||
| _PyOptimizerObject *optimizer; | ||
| _PyExecutorObject *executor_list_head; | ||
| /* These values are shifted and offset to speed up check in JUMP_BACKWARD */ | ||
| /* These two values are shifted and offset to speed up check in JUMP_BACKWARD */ | ||
| uint32_t optimizer_resume_threshold; | ||
| uint32_t optimizer_backedge_threshold; | ||
| uint16_t optimizer_side_threshold; | ||
markshannon marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading. Please reload this page. | ||
| uint32_t next_func_version; | ||
| _rare_events rare_events; | ||
| PyDict_WatchCallback builtins_dict_watcher; | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -794,6 +794,17 @@ def test_annotated_op(self): | ||
| self.run_cases_test(input, output) | ||
| def test_deopt_and_exit(self): | ||
| input = """ | ||
| pure op(OP, (arg1 -- out)){ | ||
| DEOPT_IF(1); | ||
| EXIT_IF(1); | ||
| } | ||
| """ | ||
| output = "" | ||
| with self.assertRaises(Exception): | ||
markshannon marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading. Please reload this page. | ||
| self.run_cases_test(input, output) | ||
| class TestGeneratedAbstractCases(unittest.TestCase): | ||
| def setUp(self) -> None: | ||
| super().setUp() | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.