mirror of https://github.com/milvus-io/milvus.git
MS-453 GPU search error when nprobe set more than 1024
Former-commit-id: cd871f4c238febe90a02a81c0b0d311d88729839pull/191/head
parent
dad07c70e0
commit
ae8c5f8b77
|
@ -74,7 +74,7 @@ server::KnowhereError VecIndexImpl::Search(const long &nq, const float *xq, floa
|
|||
|
||||
Config search_cfg = cfg;
|
||||
|
||||
AutoTurnParams(type, search_cfg);
|
||||
ParameterValidation(type, search_cfg);
|
||||
|
||||
auto res = index_->Search(dataset, search_cfg);
|
||||
auto ids_array = res->array()[0];
|
||||
|
|
|
@ -241,7 +241,7 @@ void AutoGenParams(const IndexType &type, const long &size, zilliz::knowhere::Co
|
|||
#define GPU_MAX_NRPOBE 1024
|
||||
#endif
|
||||
|
||||
void AutoTurnParams(const IndexType &type, Config &cfg) {
|
||||
void ParameterValidation(const IndexType &type, Config &cfg) {
|
||||
switch (type) {
|
||||
case IndexType::FAISS_IVFSQ8_GPU:
|
||||
case IndexType::FAISS_IVFFLAT_GPU:
|
||||
|
@ -249,7 +249,7 @@ void AutoTurnParams(const IndexType &type, Config &cfg) {
|
|||
if (cfg.get_with_default("nprobe", 0) != 0) {
|
||||
auto nprobe = cfg["nprobe"].as<int>();
|
||||
if (nprobe > GPU_MAX_NRPOBE) {
|
||||
WRAPPER_LOG_ERROR << "When search with GPU, nprobe shoud be no more than " << GPU_MAX_NRPOBE << ", but you passed " << nprobe
|
||||
WRAPPER_LOG_WARNING << "When search with GPU, nprobe shoud be no more than " << GPU_MAX_NRPOBE << ", but you passed " << nprobe
|
||||
<< ". Search with " << GPU_MAX_NRPOBE << " instead";
|
||||
cfg.insert_or_assign("nprobe", GPU_MAX_NRPOBE);
|
||||
}
|
||||
|
|
|
@ -92,7 +92,7 @@ extern VecIndexPtr LoadVecIndex(const IndexType &index_type, const zilliz::knowh
|
|||
|
||||
extern void AutoGenParams(const IndexType& type, const long& size, Config& cfg);
|
||||
|
||||
extern void AutoTurnParams(const IndexType& type, Config& cfg);
|
||||
extern void ParameterValidation(const IndexType& type, Config& cfg);
|
||||
|
||||
extern IndexType ConvertToCpuIndexType(const IndexType& type);
|
||||
extern IndexType ConvertToGpuIndexType(const IndexType& type);
|
||||
|
|
Loading…
Reference in New Issue