Skip to content
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

Avoid binding functions to temporaries in random.py #131269

Closed
colesbury opened this issue Mar 15, 2025 · 1 comment
Closed

Avoid binding functions to temporaries in random.py #131269

colesbury opened this issue Mar 15, 2025 · 1 comment
Assignees
Labels
performance Performance or resource usage stdlib Python modules in the Lib dir type-feature A feature request or enhancement

Comments

@colesbury
Copy link
Contributor

colesbury commented Mar 15, 2025

Feature or enhancement

The random module has a bunch of code that binds methods to temporary local variables like:

getrandbits = self.getrandbits

cpython/Lib/random.py

Lines 248 to 253 in 55815a6

getrandbits = self.getrandbits
k = n.bit_length()
r = getrandbits(k) # 0 <= r < 2**k
while r >= n:
r = getrandbits(k)
return r

I think this pattern dates back to 2001 (in d7b5e88). I think it was an optimization at one point, but now it's the opposite. Python optimizes method calls (in some sort since 3.7) so it's faster to use:

 k = n.bit_length() 
 r = self.getrandbits(k)  # 0 <= r < 2**k 
 while r >= n: 
     r = self.getrandbits(k) 
 return r 

Getting rid of this pattern seems to:

  1. Speed calls like random.randint() and random.shuffle() by about 10-15%
  2. Avoid some contention in multithreaded code because we are able to specialize the calls to LOAD_ATTR_METHOD_WITH_VALUES 1

This came up when looking at a variation of @pfmoore's code snippet: montecarlo.py

Linked PRs

Footnotes

  1. I think we should be able avoid contention even with this (anti-)pattern, but I'll write that up in a separate issue.

@colesbury colesbury added performance Performance or resource usage stdlib Python modules in the Lib dir type-feature A feature request or enhancement labels Mar 15, 2025
colesbury added a commit to colesbury/cpython that referenced this issue Mar 15, 2025
This speeds up calls like `random.randint()` by about 10%.
@rhettinger
Copy link
Contributor

FWIW, this specific edit has been discussed and rejected previously.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
performance Performance or resource usage stdlib Python modules in the Lib dir type-feature A feature request or enhancement
Projects
None yet
Development

No branches or pull requests

2 participants