mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
73 lines
3.0 KiB
C++
73 lines
3.0 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
|
|
// Unauthorized copying of this file, via any medium is strictly prohibited.
|
|
// Proprietary and confidential.
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include "knowhere/index/vector_index/vector_index.h"
|
|
|
|
#include "vec_index.h"
|
|
|
|
|
|
namespace zilliz {
|
|
namespace milvus {
|
|
namespace engine {
|
|
|
|
class VecIndexImpl : public VecIndex {
|
|
public:
|
|
explicit VecIndexImpl(std::shared_ptr<zilliz::knowhere::VectorIndex> index, const IndexType &type)
|
|
: index_(std::move(index)), type(type) {};
|
|
server::KnowhereError BuildAll(const long &nb,
|
|
const float *xb,
|
|
const long *ids,
|
|
const Config &cfg,
|
|
const long &nt,
|
|
const float *xt) override;
|
|
IndexType GetType() override;
|
|
int64_t Dimension() override;
|
|
int64_t Count() override;
|
|
server::KnowhereError Add(const long &nb, const float *xb, const long *ids, const Config &cfg) override;
|
|
zilliz::knowhere::BinarySet Serialize() override;
|
|
server::KnowhereError Load(const zilliz::knowhere::BinarySet &index_binary) override;
|
|
server::KnowhereError Search(const long &nq, const float *xq, float *dist, long *ids, const Config &cfg) override;
|
|
|
|
protected:
|
|
int64_t dim = 0;
|
|
IndexType type = IndexType::INVALID;
|
|
std::shared_ptr<zilliz::knowhere::VectorIndex> index_ = nullptr;
|
|
};
|
|
|
|
class IVFMixIndex : public VecIndexImpl {
|
|
public:
|
|
explicit IVFMixIndex(std::shared_ptr<zilliz::knowhere::VectorIndex> index) : VecIndexImpl(std::move(index),
|
|
IndexType::FAISS_IVFFLAT_MIX) {};
|
|
server::KnowhereError BuildAll(const long &nb,
|
|
const float *xb,
|
|
const long *ids,
|
|
const Config &cfg,
|
|
const long &nt,
|
|
const float *xt) override;
|
|
server::KnowhereError Load(const zilliz::knowhere::BinarySet &index_binary) override;
|
|
};
|
|
|
|
class BFIndex : public VecIndexImpl {
|
|
public:
|
|
explicit BFIndex(std::shared_ptr<zilliz::knowhere::VectorIndex> index) : VecIndexImpl(std::move(index),
|
|
IndexType::FAISS_IDMAP) {};
|
|
server::KnowhereError Build(const int64_t &d);
|
|
float *GetRawVectors();
|
|
server::KnowhereError BuildAll(const long &nb,
|
|
const float *xb,
|
|
const long *ids,
|
|
const Config &cfg,
|
|
const long &nt,
|
|
const float *xt) override;
|
|
int64_t *GetRawIds();
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|