-
Notifications
You must be signed in to change notification settings - Fork 59
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
Fused-Multiply-Add #214
Merged
Merged
Fused-Multiply-Add #214
Conversation
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
ashvardanian
force-pushed
the
main-dev
branch
from
October 21, 2024 04:12
c46d472
to
a0b7f6a
Compare
The Python binding has been rewritten to take advantage of the fast calling convention similar to the `cdist` method. Most functions now have `out=` named argument to avoid memory allocations and reuse existing buffers. `cdist` now computes only half of value if the two input matrices map to the same memory region. Python tests are extended with more invalid inputs.
This commit affects a huge number of lines across the repo and should be ignored by Git Blame tools.
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.
SimSIMD is expanding and becoming closer to a fully-fledged BLAS library. BLAS level 1 for now, but it's a start! SimSIMD will prioritize mixed and low-precision vector math, favoring modern AI workloads. For image & media processing workloads, the new
fma
andwsum
kernels approach 65 GB/s per core on Intel Sapphire Rapids. That's 100x faster than the serial code foru8
inputs withf32
scaling and accumulation.Contains the following element-wise operations:
In NumPy terms:
This tiny set of operations is enough to implement a wide range of algorithms:
Benchmarks
On Intel Sapphire Rapids: