-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Speed up vectorutil float scalar methods, unroll properly, use fma where possible #12737
Merged
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
b192064
Speed up vectorutil scalar methods, unroll properly, use fma where po…
rmuir 93fed5f
clean up vector tails too, for consistency
rmuir f2be84f
detect AMD and don't use FMA there which causes slowdowns
rmuir 990d27a
Merge branch 'stabilize_benchmark' into float_scalar_fma_unroll
d2635bf
update ARM fma logic, use it for serious ARM to get more out of it
cd5f8c7
Replace assert with IAE in StringsToAutomaton#build if data is not so…
shubhamvishu 611c708
CHANGES entry for GITHUB#12427
gsmiller ff8cebc
Do not close merge threadpool in Lucene99HnswVectorsWriter
zhaih acfaf98
Fix test after #12549.
jpountz 371812e
Fix file handle leak in Lucene99ScalarQuantizedVectorsWriter. (#12739)
jpountz 108ad91
Fix NullPointerException in Monitor.getQuery when query is not presen…
daviscook477 4dac8eb
Specialize the 2nd clause of conjunctions. (#12713)
jpountz 4cac882
Fix test failure.
jpountz 68606f8
Fix javac task inputs so that they include modular dependencies #1274…
dweiss 6e46124
Clean up UnCompiledNode.inputCount (#12735)
dungba88 bc17c88
LUCENE-10144:fix resource leak due to Files.list (#354)
lujiefsi 7c41cfe
LUCENE-10100: configuration items of the alg file are adapted to the …
xiaoshi2013 7803482
ReleaseWizard - Upgrade 'consolemenu' dependency to v0.7.1 (#11855)
janhoy 21be692
Remove unnecessary sort in writeFieldUpdates (#12273)
luyuncheng f77c2da
unify exception thrown by regexp & check repetition range (#12277)
tang-hi b152b8f
Speed up sorting on unique string fields. (#11903)
jpountz f46eb5a
move CSVUtil to common from analyzer nori and kuromoji (#12390)
twosom dacb9cb
Fix comment on decode method in PForUtil (#12495)
vsop-479 58bed62
Merge branch 'main' into float_scalar_fma_unroll
rmuir 755717f
Merge branch 'main' into float_scalar_fma_unroll
uschindler 0cd28c5
Fix code after merge to use new APIs
uschindler 22e8377
Use Objects for null safety
uschindler 4a9d074
fix policeman merge bug
rmuir 4086abf
clean up logic
rmuir 555841c
update logic for newer zen cores with lower latency FMA
b702bdf
add sysprop override: for uwe's use only
rmuir b65fb7a
tighten up AMD logic to perfection
rmuir 503eebd
Add documentation
uschindler 6432330
greatly improve Graviton2, the only issue here is apple silicon...
rmuir 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
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
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.
this logic is from the javadocs of
Species.loopBound
of vector api where width is a power of 2. I used it in these functions for consistency, and because i assume it means the compiler will do a good job. we could maybe put in a static method for other places doing crap like this (e.g. stringhelper's murmurhash) as a followup? I'm guessing any other places do it ad-hoc like what was here before. I wanted to keep this PR minimally invasive though.