The search of SQ8H index is slower than the previous version (#3957)

Signed-off-by: cqy <yaya645@126.com>
pull/3967/head
cqy123456 2020-10-12 19:55:26 +08:00 committed by GitHub
parent 6836c81f44
commit 19bda5cf97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ Please mark all change in change log and use the issue from GitHub
# Milvus 0.10.4 (TBD)
## Bug
- \#3903 The search of SQ8H index is slower than the previous version.
- \#3906 Change DeleteTask state when it is loaded to avoid server crash.
## Feature

View File

@ -173,7 +173,7 @@ GpuIndexIVF::copyFrom(faiss::IndexIVF* index, gpu::GpuIndexFlat *&qt, int64_t mo
GpuIndexFlatConfig config = ivfConfig_.flatConfig;
// FIXME: inherit our same device
config.device = device_;
config.storeInCpu = false;
config.storeInCpu = true;
if(qt == nullptr) {
if (index->metric_type == faiss::METRIC_L2) {