Closed EricZequan closed 7 months ago
Hi @EricZequan! Thanks for considering SimSIMD. Sadly, the SimSIMD GoLang binding would work slower than native GoLang code due to the insane cost of Foreign Function Interfaces in GoLang. You may be interested in considering USearch for some vector-search problems, if dealing with large datasets.
In both cases with USearch and SimSIMD, you should still download the pre-compiled native library from the release notes, and link it against your executable 🤗
After
imported "github.com/ashvardanian/simsimd"
in my golang project, i try to callsimsimd.CosineI8
, but it doesn't recognize.i have used
go get github.com/ashvardanian/simsimd@latest
to import this package.and here is my simple test:
I'm wondering if there's something wrong with my approach, how do I call this?