提交 b2e37f1e 编写于 作者: Y Yukikaze-CZR

#502 C++ SDK support IVFPQ and SPTAG

上级 00979626
......@@ -99,6 +99,12 @@ Utils::IndexTypeName(const milvus::IndexType& index_type) {
return "NSG";
case milvus::IndexType::IVFSQ8H:
return "IVFSQ8H";
case milvus::IndexType::IVFPQ:
return "IVFPQ";
case milvus::IndexType::SPTAGKDT:
return "SPTAGKDT";
case milvus::IndexType::SPTAGBKT:
return "SPTAGBKT";
default:
return "Unknown index type";
}
......
......@@ -37,6 +37,9 @@ enum class IndexType {
IVFSQ8 = 3,
NSG = 4,
IVFSQ8H = 5,
IVFPQ = 6,
SPTAGKDT = 7,
SPTAGBKT = 8,
};
enum class MetricType {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册