Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
milvus
提交
b02efb8c
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,发现更多精彩内容 >>
提交
b02efb8c
编写于
7月 14, 2019
作者:
G
groot
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix SQ8 row count bug
Former-commit-id: 1593459093ea53e1c052e37278a0ee3c21c5936b
上级
2b532084
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
21 addition
and
4 deletion
+21
-4
cpp/src/cache/DataObj.h
cpp/src/cache/DataObj.h
+10
-0
cpp/src/db/DBImpl.cpp
cpp/src/db/DBImpl.cpp
+8
-2
cpp/src/db/FaissExecutionEngine.cpp
cpp/src/db/FaissExecutionEngine.cpp
+3
-2
未找到文件。
cpp/src/cache/DataObj.h
浏览文件 @
b02efb8c
...
...
@@ -20,6 +20,11 @@ public:
:
index_
(
index
)
{}
DataObj
(
const
engine
::
Index_ptr
&
index
,
int64_t
size
)
:
index_
(
index
),
size_
(
size
)
{}
engine
::
Index_ptr
data
()
{
return
index_
;
}
const
engine
::
Index_ptr
&
data
()
const
{
return
index_
;
}
...
...
@@ -28,11 +33,16 @@ public:
return
0
;
}
if
(
size_
>
0
)
{
return
size_
;
}
return
index_
->
ntotal
*
(
index_
->
dim
*
4
);
}
private:
engine
::
Index_ptr
index_
=
nullptr
;
int64_t
size_
=
0
;
};
using
DataObjPtr
=
std
::
shared_ptr
<
DataObj
>
;
...
...
cpp/src/db/DBImpl.cpp
浏览文件 @
b02efb8c
...
...
@@ -170,7 +170,10 @@ Status DBImpl::Query(const std::string& table_id, uint64_t k, uint64_t nq,
}
}
return
QueryAsync
(
table_id
,
file_id_array
,
k
,
nq
,
vectors
,
dates
,
results
);
cache
::
CpuCacheMgr
::
GetInstance
()
->
PrintInfo
();
//print cache info before query
status
=
QueryAsync
(
table_id
,
file_id_array
,
k
,
nq
,
vectors
,
dates
,
results
);
cache
::
CpuCacheMgr
::
GetInstance
()
->
PrintInfo
();
//print cache info after query
return
status
;
}
Status
DBImpl
::
Query
(
const
std
::
string
&
table_id
,
const
std
::
vector
<
std
::
string
>&
file_ids
,
...
...
@@ -195,7 +198,10 @@ Status DBImpl::Query(const std::string& table_id, const std::vector<std::string>
return
Status
::
Error
(
"Invalid file id"
);
}
return
QueryAsync
(
table_id
,
files_array
,
k
,
nq
,
vectors
,
dates
,
results
);
cache
::
CpuCacheMgr
::
GetInstance
()
->
PrintInfo
();
//print cache info before query
status
=
QueryAsync
(
table_id
,
files_array
,
k
,
nq
,
vectors
,
dates
,
results
);
cache
::
CpuCacheMgr
::
GetInstance
()
->
PrintInfo
();
//print cache info after query
return
status
;
}
Status
DBImpl
::
QueryAsync
(
const
std
::
string
&
table_id
,
const
meta
::
TableFilesSchema
&
files
,
...
...
cpp/src/db/FaissExecutionEngine.cpp
浏览文件 @
b02efb8c
...
...
@@ -165,8 +165,9 @@ Status FaissExecutionEngine::Search(long n,
}
Status
FaissExecutionEngine
::
Cache
()
{
zilliz
::
milvus
::
cache
::
CpuCacheMgr
::
GetInstance
(
)
->
InsertItem
(
location_
,
std
::
make_shared
<
Index
>
(
pIndex_
));
auto
index
=
std
::
make_shared
<
Index
>
(
pIndex_
);
cache
::
DataObjPtr
data_obj
=
std
::
make_shared
<
cache
::
DataObj
>
(
index
,
PhysicalSize
());
zilliz
::
milvus
::
cache
::
CpuCacheMgr
::
GetInstance
()
->
InsertItem
(
location_
,
data_obj
);
return
Status
::
OK
();
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录