Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
d5efc18c
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看板
提交
d5efc18c
编写于
5月 26, 2020
作者:
B
barrierye
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add profile option
上级
ab7e3d0e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
70 addition
and
8 deletion
+70
-8
python/examples/fit_a_line/test_py_client.py
python/examples/fit_a_line/test_py_client.py
+1
-1
python/examples/fit_a_line/test_py_server.py
python/examples/fit_a_line/test_py_server.py
+4
-4
python/paddle_serving_server/pyserver.py
python/paddle_serving_server/pyserver.py
+65
-3
未找到文件。
python/examples/fit_a_line/test_py_client.py
浏览文件 @
d5efc18c
...
...
@@ -29,7 +29,7 @@ x = np.array(
lp
=
LineProfiler
()
lp_wrapper
=
lp
(
client
.
predict
)
for
i
in
range
(
5
):
for
i
in
range
(
3
):
fetch_map
=
lp_wrapper
(
feed
=
{
"x"
:
x
},
fetch_with_type
=
{
"combine_op_output"
:
"float"
})
# fetch_map = client.predict(
...
...
python/examples/fit_a_line/test_py_server.py
浏览文件 @
d5efc18c
...
...
@@ -61,7 +61,7 @@ combine_channel = Channel(name="combine_channel")
out_channel
=
Channel
(
name
=
"out_channel"
)
cnn_op
=
UciOp
(
name
=
"cnn
_op
"
,
name
=
"cnn"
,
input
=
read_channel
,
in_dtype
=
'float'
,
outputs
=
[
combine_channel
],
...
...
@@ -75,7 +75,7 @@ cnn_op = UciOp(
concurrency
=
1
)
bow_op
=
UciOp
(
name
=
"bow
_op
"
,
name
=
"bow"
,
input
=
read_channel
,
in_dtype
=
'float'
,
outputs
=
[
combine_channel
],
...
...
@@ -89,7 +89,7 @@ bow_op = UciOp(
concurrency
=
1
)
combine_op
=
CombineOp
(
name
=
"combine
_op
"
,
name
=
"combine"
,
input
=
combine_channel
,
in_dtype
=
'float'
,
outputs
=
[
out_channel
],
...
...
@@ -99,7 +99,7 @@ combine_op = CombineOp(
logging
.
info
(
read_channel
.
debug
())
logging
.
info
(
combine_channel
.
debug
())
logging
.
info
(
out_channel
.
debug
())
pyserver
=
PyServer
()
pyserver
=
PyServer
(
profile
=
False
)
pyserver
.
add_channel
(
read_channel
)
pyserver
.
add_channel
(
combine_channel
)
pyserver
.
add_channel
(
out_channel
)
...
...
python/paddle_serving_server/pyserver.py
浏览文件 @
d5efc18c
...
...
@@ -16,6 +16,7 @@ import threading
import
multiprocessing
import
Queue
import
os
import
sys
import
paddle_serving_server
from
paddle_serving_client
import
Client
from
concurrent
import
futures
...
...
@@ -29,6 +30,42 @@ import random
import
time
class
_TimeProfiler
(
object
):
def
__init__
(
self
):
self
.
_pid
=
os
.
getpid
()
self
.
_print_head
=
'PROFILE
\t
pid:{}
\t
'
.
format
(
self
.
_pid
)
self
.
_time_record
=
Queue
.
Queue
()
self
.
_enable
=
False
def
enable
(
self
,
enable
):
self
.
_enable
=
enable
def
record
(
self
,
name_with_tag
):
name_with_tag
=
name_with_tag
.
split
(
"_"
)
tag
=
name_with_tag
[
-
1
]
name
=
'_'
.
join
(
name_with_tag
[:
-
1
])
self
.
_time_record
.
put
((
name
,
tag
,
int
(
round
(
time
.
time
()
*
1000000
))))
def
print_profile
(
self
):
sys
.
stderr
.
write
(
self
.
_print_head
)
tmp
=
{}
while
not
self
.
_time_record
.
empty
():
name
,
tag
,
timestamp
=
self
.
_time_record
.
get
()
if
name
in
tmp
:
ptag
,
ptimestamp
=
tmp
.
pop
(
name
)
sys
.
stderr
.
write
(
"{}_{}:{} "
.
format
(
name
,
ptag
,
ptimestamp
))
sys
.
stderr
.
write
(
"{}_{}:{} "
.
format
(
name
,
tag
,
timestamp
))
else
:
tmp
[
name
]
=
(
tag
,
timestamp
)
sys
.
stderr
.
write
(
'
\n
'
)
for
name
,
item
in
tmp
.
items
():
tag
,
timestamp
=
item
self
.
_time_record
.
put
((
name
,
tag
,
timestamp
))
_profiler
=
_TimeProfiler
()
class
Channel
(
Queue
.
Queue
):
"""
The channel used for communication between Ops.
...
...
@@ -313,7 +350,9 @@ class Op(object):
def
start
(
self
):
self
.
_run
=
True
while
self
.
_run
:
_profiler
.
record
(
"{}-get_0"
.
format
(
self
.
_name
))
input_data
=
self
.
_input
.
front
(
self
.
_name
)
_profiler
.
record
(
"{}-get_1"
.
format
(
self
.
_name
))
data_id
=
None
logging
.
debug
(
self
.
_log
(
"input_data: {}"
.
format
(
input_data
)))
if
isinstance
(
input_data
,
dict
):
...
...
@@ -322,10 +361,18 @@ class Op(object):
else
:
data_id
=
input_data
.
id
_profiler
.
record
(
"{}-prep_0"
.
format
(
self
.
_name
))
data
=
self
.
preprocess
(
input_data
)
_profiler
.
record
(
"{}-prep_1"
.
format
(
self
.
_name
))
if
self
.
with_serving
():
_profiler
.
record
(
"{}-midp_0"
.
format
(
self
.
_name
))
data
=
self
.
midprocess
(
data
)
_profiler
.
record
(
"{}-midp_1"
.
format
(
self
.
_name
))
_profiler
.
record
(
"{}-postp_0"
.
format
(
self
.
_name
))
output_data
=
self
.
postprocess
(
data
)
_profiler
.
record
(
"{}-postp_1"
.
format
(
self
.
_name
))
if
not
isinstance
(
output_data
,
python_service_channel_pb2
.
ChannelData
):
...
...
@@ -335,8 +382,10 @@ class Op(object):
format
(
type
(
output_data
))))
output_data
.
id
=
data_id
_profiler
.
record
(
"{}-push_0"
.
format
(
self
.
_name
))
for
channel
in
self
.
_outputs
:
channel
.
push
(
output_data
,
self
.
_name
)
_profiler
.
record
(
"{}-push_1"
.
format
(
self
.
_name
))
def
_log
(
self
,
info_str
):
return
"[{}] {}"
.
format
(
self
.
_name
,
info_str
)
...
...
@@ -349,7 +398,7 @@ class GeneralPythonService(
general_python_service_pb2_grpc
.
GeneralPythonService
):
def
__init__
(
self
,
in_channel
,
out_channel
):
super
(
GeneralPythonService
,
self
).
__init__
()
self
.
_name
=
"
__GeneralPythonService__
"
self
.
_name
=
"
#G
"
self
.
set_in_channel
(
in_channel
)
self
.
set_out_channel
(
out_channel
)
logging
.
debug
(
self
.
_log
(
in_channel
.
debug
()))
...
...
@@ -437,18 +486,30 @@ class GeneralPythonService(
return
resp
def
inference
(
self
,
request
,
context
):
_profiler
.
record
(
"{}-prepack_0"
.
format
(
self
.
_name
))
data
,
data_id
=
self
.
_pack_data_for_infer
(
request
)
_profiler
.
record
(
"{}-prepack_1"
.
format
(
self
.
_name
))
logging
.
debug
(
self
.
_log
(
'push data'
))
_profiler
.
record
(
"{}-push_0"
.
format
(
self
.
_name
))
self
.
_in_channel
.
push
(
data
,
self
.
_name
)
_profiler
.
record
(
"{}-push_1"
.
format
(
self
.
_name
))
logging
.
debug
(
self
.
_log
(
'wait for infer'
))
resp_data
=
None
_profiler
.
record
(
"{}-fetch_0"
.
format
(
self
.
_name
))
resp_data
=
self
.
_get_data_in_globel_resp_dict
(
data_id
)
_profiler
.
record
(
"{}-fetch_1"
.
format
(
self
.
_name
))
_profiler
.
record
(
"{}-postpack_0"
.
format
(
self
.
_name
))
resp
=
self
.
_pack_data_for_resp
(
resp_data
)
_profiler
.
record
(
"{}-postpack_1"
.
format
(
self
.
_name
))
_profiler
.
print_profile
()
return
resp
class
PyServer
(
object
):
def
__init__
(
self
):
def
__init__
(
self
,
profile
=
False
):
self
.
_channels
=
[]
self
.
_ops
=
[]
self
.
_op_threads
=
[]
...
...
@@ -456,6 +517,7 @@ class PyServer(object):
self
.
_worker_num
=
None
self
.
_in_channel
=
None
self
.
_out_channel
=
None
_profiler
.
enable
(
profile
)
def
add_channel
(
self
,
channel
):
self
.
_channels
.
append
(
channel
)
...
...
@@ -496,7 +558,7 @@ class PyServer(object):
logging
.
debug
(
"run op: {}, op_concurrency: {}"
.
format
(
op
.
_name
,
op_concurrency
))
for
c
in
range
(
op_concurrency
):
# th = multiprocessing.Process(
target=self._op_start_wrapper, args=(op, ))
# th = multiprocessing.Process(
th
=
threading
.
Thread
(
target
=
self
.
_op_start_wrapper
,
args
=
(
op
,
))
th
.
start
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录