mirror of https://github.com/milvus-io/milvus.git
The search of SQ8H index is slower than the previous version (#3957)
Signed-off-by: cqy <yaya645@126.com>pull/3967/head
parent
6836c81f44
commit
19bda5cf97
|
@ -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
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue