-
-
Notifications
You must be signed in to change notification settings - Fork 35.3k
bpo-41972: Tweak fastsearch.h string search algorithms #27091
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
90a6a0c
Don't force inlining
sweeneyde 19fa661
Use a Boyer-Moore skip table
sweeneyde d2219d5
Switch to two-way in more cases
sweeneyde 3b8760f
Tighter comments
sweeneyde 5d86b8d
Fix the direction of the cutoff inequality :)
sweeneyde 2e9a9b1
Separate a gap loop
sweeneyde c84314c
update cutoffs
sweeneyde 7517c60
tweak cutoffs, fix i - cut + 1 jump
sweeneyde e5ef33b
Refactor into smaller functions
sweeneyde a01fb70
Focus the table on the last character of the pattern, giving a tighte…
sweeneyde 6be0c32
tweak cutoffs
sweeneyde f9fe807
📜🤖 Added by blurb_it.
blurb-it[bot] 25f9b56
Fix sanitizer warnings
sweeneyde d3f8438
Merge branch 'fastersearch' of https://github.com/sweeneyde/cpython i…
sweeneyde 4379ea6
Refactor for sanitizer
sweeneyde e336b79
Don't goto declarations
sweeneyde b8df3e1
Emphasize to the compiler that the loop is a loop
sweeneyde 869f7d0
Use Py_LOCAL_INLINE
sweeneyde 747a39a
Use Py_LOCAL_INLINE again
sweeneyde 72143ef
Tweak thresholds based on most recent comparison.
sweeneyde 4d7d102
Fix greater/less than sign.
sweeneyde File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
tweak cutoffs
- Loading branch information
commit 6be0c32379205935cb907182c33b6f651b2eaf76
There are no files selected for viewing
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How did you come about those numbers?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll consolidate the benchmarks I used and post them here. But this is a chart comparing the default implementation to the existing two-way implementation. The equivalent chart for this implementation is similar, and I'm trying to essentially to cut out the green bits of that image.
For now though, the differences this PR makes have some benchmarks here