gh-131798: JIT: Optimize _CHECK_IS_NOT_PY_CALLABLE_EX and _CHECK_IS_NOT_PY_CALLABLE_KW#148494
Merged
Fidget-Spinner merged 2 commits intopython:mainfrom Apr 13, 2026
Merged
Conversation
…HECK_IS_NOT_PY_CALLABLE_EX`
Member
That's not really a problem, just how the JIT behaves. We only compile the region inside the for loop first, and then a function only if it's hot enough. As for the code example above you placed the |
Contributor
Author
|
oh I understand, thank you! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
While implementing this, I ran into a confusing problem. As shown in the diff below, when I assign
f = sortedinstead of callingsorted()directly, the JIT fails to recognize the optimization, causing the test to fail.def test_check_is_not_py_callable_kw(self): def testfunc(n): total = 0 - xs = (3, 1, 2) - for _ in range(n): - total += sorted(xs, reverse=False)[0] + f = sorted + xs = (3, 1, 2) + for _ in range(n): + total += f(xs, reverse=False)[0] return total res, ex = self._run_with_optimizer(testfunc, TIER2_THRESHOLD) self.assertEqual(res, TIER2_THRESHOLD) self.assertIsNotNone(ex) uops = get_opnames(ex) self.assertNotIn("_CHECK_IS_NOT_PY_CALLABLE_KW", uops)Edit: Please add skip news