Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
97c1011e
S
Serving
项目概览
PaddlePaddle
/
Serving
大约 1 年 前同步成功
通知
186
Star
833
Fork
253
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
105
列表
看板
标记
里程碑
合并请求
10
Wiki
2
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Serving
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
105
Issue
105
列表
看板
标记
里程碑
合并请求
10
合并请求
10
Pages
分析
分析
仓库分析
DevOps
Wiki
2
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
97c1011e
编写于
6月 12, 2019
作者:
X
xulongteng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix malloc bug
Change-Id: Ibb5d9d460a84a86e64eda00a69f9882008b00da2
上级
f96c5e89
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
39 addition
and
14 deletion
+39
-14
predictor/framework/memory.cpp
predictor/framework/memory.cpp
+38
-13
predictor/framework/memory.h
predictor/framework/memory.h
+1
-1
未找到文件。
predictor/framework/memory.cpp
浏览文件 @
97c1011e
...
...
@@ -19,6 +19,17 @@ namespace baidu {
namespace
paddle_serving
{
namespace
predictor
{
struct
MempoolRegion
{
MempoolRegion
(
im
::
fugue
::
memory
::
Region
*
region
,
im
::
Mempool
*
mempool
)
:
_region
(
region
),
_mempool
(
mempool
){}
im
::
fugue
::
memory
::
Region
*
region
()
{
return
_region
;}
im
::
Mempool
*
mempool
()
{
return
_mempool
;}
im
::
fugue
::
memory
::
Region
*
_region
;
im
::
Mempool
*
_mempool
;
};
int
MempoolWrapper
::
initialize
()
{
if
(
THREAD_KEY_CREATE
(
&
_bspec_key
,
NULL
)
!=
0
)
{
LOG
(
ERROR
)
<<
"unable to create thread_key of thrd_data"
;
...
...
@@ -33,16 +44,19 @@ int MempoolWrapper::initialize() {
}
int
MempoolWrapper
::
thread_initialize
()
{
_region
.
init
();
im
::
Mempool
*
p_mempool
=
new
(
std
::
nothrow
)
im
::
Mempool
(
&
_region
);
if
(
p_mempool
==
NULL
)
{
im
::
fugue
::
memory
::
Region
*
region
=
new
im
::
fugue
::
memory
::
Region
();
region
->
init
();
im
::
Mempool
*
mempool
=
new
(
std
::
nothrow
)
im
::
Mempool
(
region
);
MempoolRegion
*
mempool_region
=
new
MempoolRegion
(
region
,
mempool
);
if
(
mempool
==
NULL
)
{
LOG
(
ERROR
)
<<
"Failed create thread mempool"
;
return
-
1
;
}
if
(
THREAD_SETSPECIFIC
(
_bspec_key
,
p_mempool
)
!=
0
)
{
if
(
THREAD_SETSPECIFIC
(
_bspec_key
,
mempool_region
)
!=
0
)
{
LOG
(
ERROR
)
<<
"unable to set the thrd_data"
;
delete
p_mempool
;
delete
region
;
delete
mempool
;
return
-
1
;
}
...
...
@@ -51,23 +65,34 @@ int MempoolWrapper::thread_initialize() {
}
int
MempoolWrapper
::
thread_clear
()
{
im
::
Mempool
*
p_mempool
=
(
im
::
Mempool
*
)
THREAD_GETSPECIFIC
(
_bspec_key
);
if
(
p_mempool
)
{
p_mempool
->
release_block
();
_region
.
reset
();
MempoolRegion
*
mempool_region
=
(
MempoolRegion
*
)
THREAD_GETSPECIFIC
(
_bspec_key
);
if
(
mempool_region
==
NULL
)
{
LOG
(
WARNING
)
<<
"THREAD_GETSPECIFIC() returned NULL"
;
return
-
1
;
}
im
::
Mempool
*
mempool
=
mempool_region
->
mempool
();
im
::
fugue
::
memory
::
Region
*
region
=
mempool_region
->
region
();
if
(
mempool
)
{
mempool
->
release_block
();
region
->
reset
();
}
return
0
;
}
void
*
MempoolWrapper
::
malloc
(
size_t
size
)
{
im
::
Mempool
*
p_mempool
=
(
im
::
Mempool
*
)
THREAD_GETSPECIFIC
(
_bspec_key
);
if
(
!
p_mempool
)
{
MempoolRegion
*
mempool_region
=
(
MempoolRegion
*
)
THREAD_GETSPECIFIC
(
_bspec_key
);
if
(
mempool_region
==
NULL
)
{
LOG
(
WARNING
)
<<
"THREAD_GETSPECIFIC() returned NULL"
;
return
NULL
;
}
im
::
Mempool
*
mempool
=
mempool_region
->
mempool
();
if
(
!
mempool
)
{
LOG
(
WARNING
)
<<
"Cannot malloc memory:"
<<
size
<<
", since mempool is not thread initialized"
;
return
NULL
;
}
return
p_
mempool
->
malloc
(
size
);
return
mempool
->
malloc
(
size
);
}
}
// namespace predictor
...
...
predictor/framework/memory.h
浏览文件 @
97c1011e
...
...
@@ -39,7 +39,7 @@ class MempoolWrapper {
void
*
malloc
(
size_t
size
);
private:
im
::
fugue
::
memory
::
Region
_region
;
//
im::fugue::memory::Region _region;
THREAD_KEY_T
_bspec_key
;
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录