mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-04 18:02:08 +08:00
Merge pull request #1561 from tinkerlin/fix_1560
update max_support_dim
This commit is contained in:
commit
53f59a9afa
@ -44,6 +44,7 @@ Please mark all change in change log and use the issue from GitHub
|
||||
- \#1532 Search with ivf_flat failed with open-dataset: sift-256-hamming
|
||||
- \#1535 Degradation searching performance with metric_type: binary_idmap
|
||||
- \#1556 Index file not created after table and index created
|
||||
- \#1560 Search crashed with Super-high dimensional binary vector
|
||||
|
||||
## Feature
|
||||
- \#216 Add CLI to get server info
|
||||
|
||||
@ -31,7 +31,7 @@ namespace engine {
|
||||
#define GPU_MAX_NRPOBE 1024
|
||||
#endif
|
||||
|
||||
#define DEFAULT_MAX_DIM 16384
|
||||
#define DEFAULT_MAX_DIM 32768
|
||||
#define DEFAULT_MIN_DIM 1
|
||||
#define DEFAULT_MAX_K 16384
|
||||
#define DEFAULT_MIN_K 1
|
||||
|
||||
@ -85,7 +85,7 @@ INSTANTIATE_TEST_CASE_P(
|
||||
// std::make_tuple(milvus::engine::IndexType::NSG_MIX, "Default", 128, 250000, 10, 10),
|
||||
#endif
|
||||
// std::make_tuple(milvus::engine::IndexType::SPTAG_KDT_RNT_CPU, "Default", 128, 100, 10, 10),
|
||||
// std::make_tuple(milvus::engine::IndexType::SPTAG_BKT_RNT_CPU, "Default", 128, 100, 10, 10),
|
||||
// std::make_tuple(milvus::engine::IndexType::SPTAG_BKT_RNT_CPU, "Default", 126, 100, 10, 10),
|
||||
std::make_tuple(milvus::engine::IndexType::HNSW, "Default", 64, 10000, 5, 10),
|
||||
std::make_tuple(milvus::engine::IndexType::FAISS_IDMAP, "Default", 64, 1000, 10, 10),
|
||||
std::make_tuple(milvus::engine::IndexType::FAISS_IVFFLAT_CPU, "Default", 64, 1000, 10, 10),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user