mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-07-13 17:12:05 -04:00
Bumps [github.com/blevesearch/bleve/v2](https://github.com/blevesearch/bleve) from 2.5.7 to 2.6.0. - [Release notes](https://github.com/blevesearch/bleve/releases) - [Commits](https://github.com/blevesearch/bleve/compare/v2.5.7...v2.6.0) --- updated-dependencies: - dependency-name: github.com/blevesearch/bleve/v2 dependency-version: 2.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
53 lines
1.4 KiB
Go
53 lines
1.4 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"
|
|
"fmt"
|
|
)
|
|
|
|
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
|
|
}
|
|
|
|
var (
|
|
errNotIVFIndex = fmt.Errorf("index is not of ivf type")
|
|
errMergeFromNotSupported = fmt.Errorf("merge api not supported")
|
|
errNotBIVFIndex = fmt.Errorf("index is not of bivf type")
|
|
errFailedToSetQuantizers = fmt.Errorf("couldn't set the quantizers")
|
|
errSourceIndexNil = fmt.Errorf("source index is nil")
|
|
)
|