Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
milvus
提交
1184b5b7
milvus
项目概览
BaiXuePrincess
/
milvus
与 Fork 源项目一致
从无法访问的项目Fork
通知
7
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
milvus
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
1184b5b7
编写于
11月 25, 2019
作者:
J
Jin Hai
提交者:
GitHub
11月 25, 2019
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #522 from tinkerlin/issue-509
fix issue-509
上级
88ca2c80
1f342f95
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
29 addition
and
9 deletion
+29
-9
CHANGELOG.md
CHANGELOG.md
+1
-0
core/src/wrapper/ConfAdapter.cpp
core/src/wrapper/ConfAdapter.cpp
+28
-9
未找到文件。
CHANGELOG.md
浏览文件 @
1184b5b7
...
...
@@ -22,6 +22,7 @@ Please mark all change in change log and use the ticket from JIRA.
-
\#
458 - Index data is not compatible between 0.5 and 0.6
-
\#
465 - Server hang caused by searching with nsg index
-
\#
486 - gpu no usage during index building
-
\#
509 - IVF_PQ index build trapped into dead loop caused by invalid params
-
\#
513 - Unittest DELETE_BY_RANGE sometimes failed
## Feature
...
...
core/src/wrapper/ConfAdapter.cpp
浏览文件 @
1184b5b7
...
...
@@ -22,6 +22,7 @@
#include <cmath>
#include <memory>
#include <vector>
// TODO(lxj): add conf checker
...
...
@@ -129,17 +130,35 @@ IVFPQConfAdapter::Match(const TempMetaConf& metaconf) {
conf
->
metric_type
=
metaconf
.
metric_type
;
conf
->
gpu_id
=
metaconf
.
gpu_id
;
conf
->
nbits
=
8
;
MatchBase
(
conf
);
if
(
!
(
conf
->
d
%
4
))
conf
->
m
=
conf
->
d
/
4
;
// compression radio = 16
else
if
(
!
(
conf
->
d
%
2
))
conf
->
m
=
conf
->
d
/
2
;
// compression radio = 8
else
if
(
!
(
conf
->
d
%
3
))
conf
->
m
=
conf
->
d
/
3
;
// compression radio = 12
else
conf
->
m
=
conf
->
d
;
// same as SQ8, compression radio = 4
/*
* Faiss 1.6
* Only 1, 2, 3, 4, 6, 8, 10, 12, 16, 20, 24, 28, 32 dims per sub-quantizer are currently supporte with
* no precomputed codes. Precomputed codes supports any number of dimensions, but will involve memory overheads.
*/
static
std
::
vector
<
int64_t
>
support_dim_per_subquantizer
{
32
,
28
,
24
,
20
,
16
,
12
,
10
,
8
,
6
,
4
,
3
,
2
,
1
};
static
std
::
vector
<
int64_t
>
support_subquantizer
{
96
,
64
,
56
,
48
,
40
,
32
,
28
,
24
,
20
,
16
,
12
,
8
,
4
,
3
,
2
,
1
};
std
::
vector
<
int64_t
>
resset
;
for
(
const
auto
&
dimperquantizer
:
support_dim_per_subquantizer
)
{
if
(
!
(
conf
->
d
%
dimperquantizer
))
{
auto
subquantzier_num
=
conf
->
d
/
dimperquantizer
;
auto
finder
=
std
::
find
(
support_subquantizer
.
begin
(),
support_subquantizer
.
end
(),
subquantzier_num
);
if
(
finder
!=
support_subquantizer
.
end
())
{
resset
.
push_back
(
subquantzier_num
);
}
}
}
MatchBase
(
conf
);
if
(
resset
.
empty
())
{
// todo(linxj): throw exception here.
return
nullptr
;
}
static
int64_t
compression_level
=
1
;
// 1:low, 2:high
if
(
compression_level
==
1
)
{
conf
->
m
=
resset
[
int
(
resset
.
size
()
/
2
)];
WRAPPER_LOG_DEBUG
<<
"PQ m = "
<<
conf
->
m
<<
", compression radio = "
<<
conf
->
d
/
conf
->
m
*
4
;
}
return
conf
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录