Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
0150ab38
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看板
提交
0150ab38
编写于
6月 25, 2019
作者:
X
xulongteng
浏览文件
操作
浏览文件
下载
差异文件
merger frome icode : fix malloc bug & log bug
上级
07a049fe
10c95b9a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
51 addition
and
15 deletion
+51
-15
predictor/framework/memory.cpp
predictor/framework/memory.cpp
+49
-13
predictor/framework/memory.h
predictor/framework/memory.h
+1
-1
predictor/src/pdserving.cpp
predictor/src/pdserving.cpp
+1
-1
未找到文件。
predictor/framework/memory.cpp
浏览文件 @
0150ab38
...
...
@@ -19,6 +19,27 @@ 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
;
~
MempoolRegion
()
{
if
(
_region
)
{
delete
_region
;
_region
=
NULL
;
}
if
(
_mempool
)
{
delete
_mempool
;
_mempool
=
NULL
;
}
}
};
int
MempoolWrapper
::
initialize
()
{
if
(
THREAD_KEY_CREATE
(
&
_bspec_key
,
NULL
)
!=
0
)
{
LOG
(
ERROR
)
<<
"unable to create thread_key of thrd_data"
;
...
...
@@ -33,16 +54,20 @@ 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
;
delete
mempool_region
;
return
-
1
;
}
...
...
@@ -51,23 +76,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
浏览文件 @
0150ab38
...
...
@@ -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
;
};
...
...
predictor/src/pdserving.cpp
浏览文件 @
0150ab38
...
...
@@ -143,7 +143,7 @@ int main(int argc, char** argv) {
std
::
string
filename
(
argv
[
0
]);
filename
=
filename
.
substr
(
filename
.
find_last_of
(
'/'
)
+
1
);
settings
.
log_file
=
(
std
::
string
(
"./log/"
)
+
filename
+
".log"
).
c_str
(
);
settings
.
log_file
=
strdup
((
std
::
string
(
"./log/"
)
+
filename
+
".log"
).
c_str
()
);
settings
.
delete_old
=
logging
::
DELETE_OLD_LOG_FILE
;
logging
::
InitLogging
(
settings
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录