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

bpo-37295: More direct computation of power-of-two factor in math.comb #30313

Merged
merged 5 commits into from Dec 31, 2021

Conversation

mdickinson
Copy link
Member

@mdickinson mdickinson commented Dec 31, 2021

This PR replaces the current popcount-based code for computing the largest power of two dividing math.comb(n, k) (for small n) with a more direct method based on counting trailing zeros of the factorials involved. See the issue for further discussion.

https://bugs.python.org/issue37295

Copy link
Member

@serhiy-storchaka serhiy-storchaka left a comment

Can it be used in count_set_bits()?

Modules/mathmodule.c Outdated Show resolved Hide resolved
Modules/mathmodule.c Show resolved Hide resolved
Modules/mathmodule.c Outdated Show resolved Hide resolved
@mdickinson
Copy link
Member Author

mdickinson commented Dec 31, 2021

Can it be used in count_set_bits()?

I'm not sure how. Can you elaborate?

We could use a lookup table for small values in the popcount implementation, but I'm not sure it's worth changing.

@serhiy-storchaka
Copy link
Member

serhiy-storchaka commented Dec 31, 2021

We could use the same lookup table in the popcount implementation for factorial() and comb()/perm(). But it may be a separate issue.

For #30305 I will need to extend the table to 127.

Modules/mathmodule.c Outdated Show resolved Hide resolved
Modules/mathmodule.c Outdated Show resolved Hide resolved
Copy link
Member

@serhiy-storchaka serhiy-storchaka left a comment

LGTM besides few comments.

mdickinson and others added 3 commits Dec 31, 2021
@mdickinson mdickinson merged commit 0b58bac into python:main Dec 31, 2021
11 checks passed
@mdickinson mdickinson deleted the math-comb-zero-counts branch Dec 31, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants