-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make: Link to pre-compiled SimSIMD wheel
In older version of USearch we compile it directly with SimSIMD sources. It heavily complicates the dynamic dispatch logic and is problematic with Python's `cibuildwheel`. Now we expect the user to pull SimSIMD from PyPi and the symbols will be automatically linked.
- Loading branch information
1 parent
191d9bb
commit bd5e579
Showing
5 changed files
with
62 additions
and
60 deletions.
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
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
Submodule simsimd
updated
24 files
+0 −1 | .github/workflows/prerelease.yml | |
+0 −1 | .github/workflows/release.yml | |
+1 −1 | .vscode/launch.json | |
+3 −1 | .vscode/settings.json | |
+29 −5 | .vscode/tasks.json | |
+1 −1 | CMakeLists.txt | |
+1 −1 | Cargo.lock | |
+1 −1 | Cargo.toml | |
+2 −0 | MANIFEST.in | |
+8 −6 | README.md | |
+1 −1 | VERSION | |
+22 −2 | c/lib.c | |
+3 −2 | cpp/bench.cxx | |
+0 −2 | cpp/test.c | |
+15 −23 | include/simsimd/curved.h | |
+164 −35 | include/simsimd/simsimd.h | |
+237 −43 | include/simsimd/spatial.h | |
+13 −8 | include/simsimd/types.h | |
+1 −1 | package.json | |
+2 −1 | python/annotations/__init__.pyi | |
+4 −4 | python/bench.py | |
+134 −45 | python/lib.c | |
+84 −12 | python/test.py | |
+1 −1 | setup.py |