Files
opencloud/vendor/github.com/blevesearch/go-faiss/faiss.go
dependabot[bot] 1104846219 chore(deps): bump github.com/blevesearch/bleve/v2 from 2.4.2 to 2.4.3
Bumps [github.com/blevesearch/bleve/v2](https://github.com/blevesearch/bleve) from 2.4.2 to 2.4.3.
- [Release notes](https://github.com/blevesearch/bleve/releases)
- [Commits](https://github.com/blevesearch/bleve/compare/v2.4.2...v2.4.3)

---
updated-dependencies:
- dependency-name: github.com/blevesearch/bleve/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-11-14 08:38:51 +01:00

42 lines
1.0 KiB
Go

// Package faiss provides bindings to Faiss, a library for vector similarity
// search.
// More detailed documentation can be found at the Faiss wiki:
// https://github.com/facebookresearch/faiss/wiki.
package faiss
/*
#cgo LDFLAGS: -lfaiss_c
#include <faiss/c_api/Index_c.h>
#include <faiss/c_api/error_c.h>
#include <faiss/c_api/utils/distances_c.h>
*/
import "C"
import "errors"
func getLastError() error {
return errors.New(C.GoString(C.faiss_get_last_error()))
}
// Metric type
const (
MetricInnerProduct = C.METRIC_INNER_PRODUCT
MetricL2 = C.METRIC_L2
MetricL1 = C.METRIC_L1
MetricLinf = C.METRIC_Linf
MetricLp = C.METRIC_Lp
MetricCanberra = C.METRIC_Canberra
MetricBrayCurtis = C.METRIC_BrayCurtis
MetricJensenShannon = C.METRIC_JensenShannon
)
// In-place normalization of provided vector (single)
func NormalizeVector(vector []float32) []float32 {
C.faiss_fvec_renorm_L2(
C.size_t(len(vector)),
1, // number of vectors
(*C.float)(&vector[0]))
return vector
}