Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
milvus
提交
9b236801
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,发现更多精彩内容 >>
未验证
提交
9b236801
编写于
4月 29, 2020
作者:
F
feisiyicl
提交者:
GitHub
4月 29, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
#1946 fix load index file CPU2GPU fail during searching (#2182)
Signed-off-by:
N
feisiyicl
<
7764126@qq.com
>
上级
a76e705a
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
22 addition
and
18 deletion
+22
-18
CHANGELOG.md
CHANGELOG.md
+1
-0
core/src/index/knowhere/knowhere/index/vector_index/helpers/FaissGpuResourceMgr.cpp
...owhere/index/vector_index/helpers/FaissGpuResourceMgr.cpp
+19
-17
core/src/index/knowhere/knowhere/index/vector_index/helpers/FaissGpuResourceMgr.h
...knowhere/index/vector_index/helpers/FaissGpuResourceMgr.h
+2
-1
未找到文件。
CHANGELOG.md
浏览文件 @
9b236801
...
...
@@ -7,6 +7,7 @@ Please mark all change in change log and use the issue from GitHub
## Bug
-
\#
1705 Limit the insert data batch size
-
\#
1929 Skip MySQL meta schema field width check
-
\#
1946 Fix load index file CPU2GPU fail during searching
-
\#
1997 Index file missed after compact
-
\#
2073 Fix CheckDBConfigBackendUrl error message
-
\#
2076 CheckMetricConfigAddress error message
...
...
core/src/index/knowhere/knowhere/index/vector_index/helpers/FaissGpuResourceMgr.cpp
浏览文件 @
9b236801
...
...
@@ -51,11 +51,10 @@ FaissGpuResourceMgr::InitDevice(int64_t device_id, int64_t pin_mem_size, int64_t
void
FaissGpuResourceMgr
::
InitResource
()
{
if
(
is_init
)
return
;
is_init
=
true
;
if
(
!
initialized_
)
{
std
::
lock_guard
<
std
::
mutex
>
lock
(
init_mutex_
);
if
(
!
initialized_
)
{
for
(
auto
&
device
:
devices_params_
)
{
auto
&
device_id
=
device
.
first
;
...
...
@@ -75,6 +74,9 @@ FaissGpuResourceMgr::InitResource() {
}
LOG_KNOWHERE_DEBUG_
<<
"DEVICEID "
<<
device_id
<<
", resource count "
<<
bq
.
Size
();
}
initialized_
=
true
;
}
}
}
ResPtr
...
...
@@ -115,7 +117,7 @@ FaissGpuResourceMgr::Free() {
bq
.
Take
();
}
}
i
s_init
=
false
;
i
nitialized_
=
false
;
}
void
...
...
core/src/index/knowhere/knowhere/index/vector_index/helpers/FaissGpuResourceMgr.h
浏览文件 @
9b236801
...
...
@@ -77,7 +77,8 @@ class FaissGpuResourceMgr {
Dump
();
protected:
bool
is_init
=
false
;
bool
initialized_
=
false
;
std
::
mutex
init_mutex_
;
std
::
map
<
int64_t
,
std
::
unique_ptr
<
std
::
mutex
>>
mutex_cache_
;
std
::
map
<
int64_t
,
DeviceParams
>
devices_params_
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录