Mark Reed
Mark Reed
The vdot serial functions were missing so I added them.
Rust has a crate half that has an f16 and bf16 we could be using. Users would probably be using this? - https://docs.rs/half/latest/half/index.html Rust will be adding f16 into the...
We have the following warnings. I can replace _Float16 with simsimd_f16_t ``` /home/ch/code/mr/SimSIMD/include/simsimd/probability.h:485:35: warning: ISO C does not support the ‘_Float16’ type [-Wpedantic] 485 | __m512h one = _mm512_set1_ph((_Float16)1); |...
Added a few functions for go. If we merge this I'll finish it up. ``` $ go run scripts/bench.go Contains 38.798µs strings.Contains 37.872µs sz.Contains Index 26.29µs strings.Index 37.712µs sz.Index IndexAny...
I also updated the instructions for go in CONTRIBUTING and added tests. I left a few TODO's in lib_test.go for tests that were missing.
This PR fixes https://github.com/unum-cloud/usearch/issues/314 by excluding the shared/ directory. Tested with ``` javac -cp /usr/share/java/junit4.jar:../../build/libs/usearch-2.13.0.jar IndexTest.java java -cp .:/usr/share/java/junit4.jar org.junit.runner.JUnitCore IndexTest ```
Looks like we have a fail on graviton 3. A t4g.small instance is fine, but with c7g the pytest fails on main-dev ``` ================================================================ short test summary info ================================================================ SKIPPED...
I fixed up the regex for the new format of the insert on duplicate key syntax. https://dev.mysql.com/worklog/task/?id=13325 Fixes https://github.com/long2ice/asyncmy/issues/116 and adds a test on the regex. We could also mock...
When copy pasting into libre office the `` tag doesn't result in bold text. I've changed it to use `` and the pasting looks good. `` does paste correctly in...
On a tablet I prefer to tap on the right or left side of the screen to page vs the swipe page flip. A click/touch handler on the view doesn't...