mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
Merge branch 'fix_MS-303' into 'branch-0.4.0'
fix MS-303 Closes MS-303 See merge request megasearch/milvus!341 Former-commit-id: 43aca5c912195fd7628ea467849bcd5fe95bd839
This commit is contained in:
commit
d7d41d5b58
@ -191,7 +191,9 @@ server::KnowhereError write_index(VecIndexPtr index, const std::string &location
|
||||
|
||||
// TODO(linxj): redo here.
|
||||
void AutoGenParams(const IndexType &type, const long &size, zilliz::knowhere::Config &cfg) {
|
||||
if (!cfg.contains("nlist")) { cfg["nlist"] = int(size / 1000000.0 * 16384); }
|
||||
auto nlist = cfg.get_with_default("nlist", 0);
|
||||
if (int(size/1000000.0) * nlist == 0) { cfg["nlist"] = int(size / 1000000.0 * 16384); }
|
||||
|
||||
if (!cfg.contains("gpu_id")) { cfg["gpu_id"] = int(0); }
|
||||
if (!cfg.contains("metric_type")) { cfg["metric_type"] = "L2"; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user