Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
823b88f4
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看板
提交
823b88f4
编写于
6月 16, 2020
作者:
W
wangjiawei04
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update profile
上级
5365e74c
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
62 addition
and
48 deletion
+62
-48
python/examples/util/timeline_trace.py
python/examples/util/timeline_trace.py
+8
-2
python/paddle_serving_server/pyserver.py
python/paddle_serving_server/pyserver.py
+27
-23
python/paddle_serving_server_gpu/pyserver.py
python/paddle_serving_server_gpu/pyserver.py
+27
-23
未找到文件。
python/examples/util/timeline_trace.py
浏览文件 @
823b88f4
...
...
@@ -16,10 +16,16 @@ def prase(pid_str, time_str, counter):
if
len
(
name_list
)
==
2
:
name
=
name_list
[
0
]
else
:
name
=
name_list
[
0
]
+
"_"
+
name_list
[
1
]
name
=
"_"
.
join
(
name_list
[:
-
1
])
name_list
=
name
.
split
(
"#"
)
if
len
(
name_list
)
>
1
:
tid
=
name_list
[
-
1
]
name
=
"#"
.
join
(
name_list
[:
-
1
])
else
:
tid
=
0
event_dict
=
{}
event_dict
[
"name"
]
=
name
event_dict
[
"tid"
]
=
0
event_dict
[
"tid"
]
=
tid
event_dict
[
"pid"
]
=
pid
event_dict
[
"ts"
]
=
ts
event_dict
[
"ph"
]
=
ph
...
...
python/paddle_serving_server/pyserver.py
浏览文件 @
823b88f4
...
...
@@ -37,6 +37,7 @@ import time
import
func_timeout
import
enum
import
collections
import
copy
class
_TimeProfiler
(
object
):
...
...
@@ -630,7 +631,7 @@ class ThreadChannel(Queue.Queue):
self
.
_cv
.
notify_all
()
logging
.
debug
(
self
.
_log
(
"multi | {} get data succ!"
.
format
(
op_name
)))
return
resp
# reference, read only
return
copy
.
deepcopy
(
resp
)
# reference, read only
def
stop
(
self
):
#TODO
...
...
@@ -811,10 +812,11 @@ class Op(object):
op_info_prefix
=
"[{}|{}]"
.
format
(
self
.
name
,
concurrency_idx
)
log
=
self
.
_get_log_func
(
op_info_prefix
)
self
.
_is_run
=
True
tid
=
threading
.
current_thread
().
ident
while
self
.
_is_run
:
_profiler
.
record
(
"{}-get
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-get
#{}_0"
.
format
(
op_info_prefix
,
tid
))
channeldata
=
input_channel
.
front
(
self
.
name
)
_profiler
.
record
(
"{}-get
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-get
#{}_1"
.
format
(
op_info_prefix
,
tid
))
logging
.
debug
(
log
(
"input_data: {}"
.
format
(
channeldata
)))
data_id
,
error_channeldata
=
self
.
_parse_channeldata
(
channeldata
)
...
...
@@ -827,9 +829,9 @@ class Op(object):
# preprecess
try
:
_profiler
.
record
(
"{}-prep
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-prep
#{}_0"
.
format
(
op_info_prefix
,
tid
))
preped_data
=
self
.
preprocess
(
channeldata
)
_profiler
.
record
(
"{}-prep
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-prep
#{}_1"
.
format
(
op_info_prefix
,
tid
))
except
NotImplementedError
as
e
:
# preprocess function not implemented
error_info
=
log
(
e
)
...
...
@@ -867,7 +869,7 @@ class Op(object):
midped_data
=
None
if
self
.
with_serving
:
ecode
=
ChannelDataEcode
.
OK
.
value
_profiler
.
record
(
"{}-midp
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-midp
#{}_0"
.
format
(
op_info_prefix
,
tid
))
if
self
.
_timeout
<=
0
:
try
:
midped_data
=
self
.
midprocess
(
preped_data
,
use_future
)
...
...
@@ -904,13 +906,13 @@ class Op(object):
data_id
=
data_id
),
output_channels
)
continue
_profiler
.
record
(
"{}-midp
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-midp
#{}_1"
.
format
(
op_info_prefix
,
tid
))
else
:
midped_data
=
preped_data
# postprocess
output_data
=
None
_profiler
.
record
(
"{}-postp
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-postp
#{}_0"
.
format
(
op_info_prefix
,
tid
))
if
self
.
with_serving
and
client_type
==
'grpc'
and
use_future
:
# use call_future
output_data
=
ChannelData
(
...
...
@@ -947,12 +949,12 @@ class Op(object):
ChannelDataType
.
CHANNEL_NPDATA
.
value
,
npdata
=
postped_data
,
data_id
=
data_id
)
_profiler
.
record
(
"{}-postp
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-postp
#{}_1"
.
format
(
op_info_prefix
,
tid
))
# push data to channel (if run succ)
_profiler
.
record
(
"{}-push
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-push
#{}_0"
.
format
(
op_info_prefix
,
tid
))
self
.
_push_to_output_channels
(
output_data
,
output_channels
)
_profiler
.
record
(
"{}-push
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-push
#{}_1"
.
format
(
op_info_prefix
,
tid
))
def
_log
(
self
,
info
):
return
"{} {}"
.
format
(
self
.
name
,
info
)
...
...
@@ -991,12 +993,13 @@ class VirtualOp(Op):
op_info_prefix
=
"[{}|{}]"
.
format
(
self
.
name
,
concurrency_idx
)
log
=
self
.
_get_log_func
(
op_info_prefix
)
self
.
_is_run
=
True
tid
=
threading
.
current_thread
().
ident
while
self
.
_is_run
:
_profiler
.
record
(
"{}-get
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-get
#{}_0"
.
format
(
op_info_prefix
,
tid
))
channeldata
=
input_channel
.
front
(
self
.
name
)
_profiler
.
record
(
"{}-get
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-get
#{}_1"
.
format
(
op_info_prefix
,
tid
))
_profiler
.
record
(
"{}-push
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-push
#{}_0"
.
format
(
op_info_prefix
,
tid
))
if
isinstance
(
channeldata
,
dict
):
for
name
,
data
in
channeldata
.
items
():
self
.
_push_to_output_channels
(
...
...
@@ -1006,7 +1009,7 @@ class VirtualOp(Op):
channeldata
,
channels
=
output_channels
,
name
=
self
.
_virtual_pred_ops
[
0
].
name
)
_profiler
.
record
(
"{}-push
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-push
#{}_1"
.
format
(
op_info_prefix
,
tid
))
class
GeneralPythonService
(
...
...
@@ -1029,6 +1032,7 @@ class GeneralPythonService(
self
.
_recive_func
=
threading
.
Thread
(
target
=
GeneralPythonService
.
_recive_out_channel_func
,
args
=
(
self
,
))
self
.
_recive_func
.
start
()
self
.
_tid
=
threading
.
current_thread
().
ident
def
_log
(
self
,
info_str
):
return
"[{}] {}"
.
format
(
self
.
name
,
info_str
)
...
...
@@ -1130,21 +1134,21 @@ class GeneralPythonService(
return
resp
def
inference
(
self
,
request
,
context
):
_profiler
.
record
(
"{}-prepack
_0"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-prepack
#{}_0"
.
format
(
self
.
name
,
self
.
_tid
))
data
,
data_id
=
self
.
_pack_data_for_infer
(
request
)
_profiler
.
record
(
"{}-prepack
_1"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-prepack
#{}_1"
.
format
(
self
.
name
,
self
.
_tid
))
resp_channeldata
=
None
for
i
in
range
(
self
.
_retry
):
logging
.
debug
(
self
.
_log
(
'push data'
))
_profiler
.
record
(
"{}-push
_0"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-push
#{}_0"
.
format
(
self
.
name
,
self
.
_tid
))
self
.
_in_channel
.
push
(
data
,
self
.
name
)
_profiler
.
record
(
"{}-push
_1"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-push
#{}_1"
.
format
(
self
.
name
,
self
.
_tid
))
logging
.
debug
(
self
.
_log
(
'wait for infer'
))
_profiler
.
record
(
"{}-fetch
_0"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-fetch
#{}_0"
.
format
(
self
.
name
,
self
.
_tid
))
resp_channeldata
=
self
.
_get_data_in_globel_resp_dict
(
data_id
)
_profiler
.
record
(
"{}-fetch
_1"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-fetch
#{}_1"
.
format
(
self
.
name
,
self
.
_tid
))
if
resp_channeldata
.
ecode
==
ChannelDataEcode
.
OK
.
value
:
break
...
...
@@ -1152,9 +1156,9 @@ class GeneralPythonService(
logging
.
warn
(
"retry({}): {}"
.
format
(
i
+
1
,
resp_channeldata
.
error_info
))
_profiler
.
record
(
"{}-postpack
_0"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-postpack
#{}_0"
.
format
(
self
.
name
,
self
.
_tid
))
resp
=
self
.
_pack_data_for_resp
(
resp_channeldata
)
_profiler
.
record
(
"{}-postpack
_1"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-postpack
#{}_1"
.
format
(
self
.
name
,
self
.
_tid
))
_profiler
.
print_profile
()
return
resp
...
...
python/paddle_serving_server_gpu/pyserver.py
浏览文件 @
823b88f4
...
...
@@ -37,6 +37,7 @@ import time
import
func_timeout
import
enum
import
collections
import
copy
class
_TimeProfiler
(
object
):
...
...
@@ -630,7 +631,7 @@ class ThreadChannel(Queue.Queue):
self
.
_cv
.
notify_all
()
logging
.
debug
(
self
.
_log
(
"multi | {} get data succ!"
.
format
(
op_name
)))
return
resp
# reference, read only
return
copy
.
deepcopy
(
resp
)
# reference, read only
def
stop
(
self
):
#TODO
...
...
@@ -811,10 +812,11 @@ class Op(object):
op_info_prefix
=
"[{}|{}]"
.
format
(
self
.
name
,
concurrency_idx
)
log
=
self
.
_get_log_func
(
op_info_prefix
)
self
.
_is_run
=
True
tid
=
threading
.
current_thread
().
ident
while
self
.
_is_run
:
_profiler
.
record
(
"{}-get
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-get
#{}_0"
.
format
(
op_info_prefix
,
tid
))
channeldata
=
input_channel
.
front
(
self
.
name
)
_profiler
.
record
(
"{}-get
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-get
#{}_1"
.
format
(
op_info_prefix
,
tid
))
logging
.
debug
(
log
(
"input_data: {}"
.
format
(
channeldata
)))
data_id
,
error_channeldata
=
self
.
_parse_channeldata
(
channeldata
)
...
...
@@ -827,9 +829,9 @@ class Op(object):
# preprecess
try
:
_profiler
.
record
(
"{}-prep
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-prep
#{}_0"
.
format
(
op_info_prefix
,
tid
))
preped_data
=
self
.
preprocess
(
channeldata
)
_profiler
.
record
(
"{}-prep
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-prep
#{}_1"
.
format
(
op_info_prefix
,
tid
))
except
NotImplementedError
as
e
:
# preprocess function not implemented
error_info
=
log
(
e
)
...
...
@@ -867,7 +869,7 @@ class Op(object):
midped_data
=
None
if
self
.
with_serving
:
ecode
=
ChannelDataEcode
.
OK
.
value
_profiler
.
record
(
"{}-midp
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-midp
#{}_0"
.
format
(
op_info_prefix
,
tid
))
if
self
.
_timeout
<=
0
:
try
:
midped_data
=
self
.
midprocess
(
preped_data
,
use_future
)
...
...
@@ -904,13 +906,13 @@ class Op(object):
data_id
=
data_id
),
output_channels
)
continue
_profiler
.
record
(
"{}-midp
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-midp
#{}_1"
.
format
(
op_info_prefix
,
tid
))
else
:
midped_data
=
preped_data
# postprocess
output_data
=
None
_profiler
.
record
(
"{}-postp
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-postp
#{}_0"
.
format
(
op_info_prefix
,
tid
))
if
self
.
with_serving
and
client_type
==
'grpc'
and
use_future
:
# use call_future
output_data
=
ChannelData
(
...
...
@@ -947,12 +949,12 @@ class Op(object):
ChannelDataType
.
CHANNEL_NPDATA
.
value
,
npdata
=
postped_data
,
data_id
=
data_id
)
_profiler
.
record
(
"{}-postp
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-postp
#{}_1"
.
format
(
op_info_prefix
,
tid
))
# push data to channel (if run succ)
_profiler
.
record
(
"{}-push
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-push
#{}_0"
.
format
(
op_info_prefix
,
tid
))
self
.
_push_to_output_channels
(
output_data
,
output_channels
)
_profiler
.
record
(
"{}-push
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-push
#{}_1"
.
format
(
op_info_prefix
,
tid
))
def
_log
(
self
,
info
):
return
"{} {}"
.
format
(
self
.
name
,
info
)
...
...
@@ -991,12 +993,13 @@ class VirtualOp(Op):
op_info_prefix
=
"[{}|{}]"
.
format
(
self
.
name
,
concurrency_idx
)
log
=
self
.
_get_log_func
(
op_info_prefix
)
self
.
_is_run
=
True
tid
=
threading
.
current_thread
().
ident
while
self
.
_is_run
:
_profiler
.
record
(
"{}-get
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-get
#{}_0"
.
format
(
op_info_prefix
,
tid
))
channeldata
=
input_channel
.
front
(
self
.
name
)
_profiler
.
record
(
"{}-get
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-get
#{}_1"
.
format
(
op_info_prefix
,
tid
))
_profiler
.
record
(
"{}-push
_0"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-push
#{}_0"
.
format
(
op_info_prefix
,
tid
))
if
isinstance
(
channeldata
,
dict
):
for
name
,
data
in
channeldata
.
items
():
self
.
_push_to_output_channels
(
...
...
@@ -1006,7 +1009,7 @@ class VirtualOp(Op):
channeldata
,
channels
=
output_channels
,
name
=
self
.
_virtual_pred_ops
[
0
].
name
)
_profiler
.
record
(
"{}-push
_1"
.
format
(
op_info_prefix
))
_profiler
.
record
(
"{}-push
#{}_1"
.
format
(
op_info_prefix
,
tid
))
class
GeneralPythonService
(
...
...
@@ -1029,6 +1032,7 @@ class GeneralPythonService(
self
.
_recive_func
=
threading
.
Thread
(
target
=
GeneralPythonService
.
_recive_out_channel_func
,
args
=
(
self
,
))
self
.
_recive_func
.
start
()
self
.
_tid
=
threading
.
current_thread
().
ident
def
_log
(
self
,
info_str
):
return
"[{}] {}"
.
format
(
self
.
name
,
info_str
)
...
...
@@ -1130,21 +1134,21 @@ class GeneralPythonService(
return
resp
def
inference
(
self
,
request
,
context
):
_profiler
.
record
(
"{}-prepack
_0"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-prepack
#{}_0"
.
format
(
self
.
name
,
self
.
_tid
))
data
,
data_id
=
self
.
_pack_data_for_infer
(
request
)
_profiler
.
record
(
"{}-prepack
_1"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-prepack
#{}_1"
.
format
(
self
.
name
,
self
.
_tid
))
resp_channeldata
=
None
for
i
in
range
(
self
.
_retry
):
logging
.
debug
(
self
.
_log
(
'push data'
))
_profiler
.
record
(
"{}-push
_0"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-push
#{}_0"
.
format
(
self
.
name
,
self
.
_tid
))
self
.
_in_channel
.
push
(
data
,
self
.
name
)
_profiler
.
record
(
"{}-push
_1"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-push
#{}_1"
.
format
(
self
.
name
,
self
.
_tid
))
logging
.
debug
(
self
.
_log
(
'wait for infer'
))
_profiler
.
record
(
"{}-fetch
_0"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-fetch
#{}_0"
.
format
(
self
.
name
,
self
.
_tid
))
resp_channeldata
=
self
.
_get_data_in_globel_resp_dict
(
data_id
)
_profiler
.
record
(
"{}-fetch
_1"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-fetch
#{}_1"
.
format
(
self
.
name
,
self
.
_tid
))
if
resp_channeldata
.
ecode
==
ChannelDataEcode
.
OK
.
value
:
break
...
...
@@ -1152,9 +1156,9 @@ class GeneralPythonService(
logging
.
warn
(
"retry({}): {}"
.
format
(
i
+
1
,
resp_channeldata
.
error_info
))
_profiler
.
record
(
"{}-postpack
_0"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-postpack
#{}_0"
.
format
(
self
.
name
,
self
.
_tid
))
resp
=
self
.
_pack_data_for_resp
(
resp_channeldata
)
_profiler
.
record
(
"{}-postpack
_1"
.
format
(
self
.
name
))
_profiler
.
record
(
"{}-postpack
#{}_1"
.
format
(
self
.
name
,
self
.
_tid
))
_profiler
.
print_profile
()
return
resp
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录