Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
c64f6ddd
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看板
提交
c64f6ddd
编写于
7月 06, 2020
作者:
B
barrierye
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'pipeline-update' of
https://github.com/barrierye/Serving
into pipeline-update
上级
2f152fbf
2a3dcdd7
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
14 addition
and
28 deletion
+14
-28
python/pipeline/operator.py
python/pipeline/operator.py
+14
-28
未找到文件。
python/pipeline/operator.py
浏览文件 @
c64f6ddd
...
...
@@ -127,7 +127,7 @@ class Op(object):
channel
.
add_producer
(
self
.
name
)
self
.
_outputs
.
append
(
channel
)
def
preprocess
(
self
,
input_dicts
,
private_obj
):
def
preprocess
(
self
,
input_dicts
):
# multiple previous Op
if
len
(
input_dicts
)
!=
1
:
raise
NotImplementedError
(
...
...
@@ -137,7 +137,7 @@ class Op(object):
(
_
,
input_dict
),
=
input_dicts
.
items
()
return
input_dict
def
process
(
self
,
client_predict_handler
,
feed_dict
,
private_obj
):
def
process
(
self
,
client_predict_handler
,
feed_dict
):
err
,
err_info
=
ChannelData
.
check_npdata
(
feed_dict
)
if
err
!=
0
:
raise
NotImplementedError
(
...
...
@@ -147,7 +147,7 @@ class Op(object):
_LOGGER
.
debug
(
self
.
_log
(
"get call_result"
))
return
call_result
def
postprocess
(
self
,
input_dict
,
fetch_dict
,
private_obj
):
def
postprocess
(
self
,
input_dict
,
fetch_dict
):
return
fetch_dict
def
stop
(
self
):
...
...
@@ -198,13 +198,10 @@ class Op(object):
def
init_op
(
self
):
pass
def
load_private_obj
(
self
):
return
None
def
_run_preprocess
(
self
,
parsed_data
,
data_id
,
private_obj
,
log_func
):
def
_run_preprocess
(
self
,
parsed_data
,
data_id
,
log_func
):
preped_data
,
error_channeldata
=
None
,
None
try
:
preped_data
=
self
.
preprocess
(
parsed_data
,
private_obj
)
preped_data
=
self
.
preprocess
(
parsed_data
)
except
NotImplementedError
as
e
:
# preprocess function not implemented
error_info
=
log_func
(
e
)
...
...
@@ -231,14 +228,14 @@ class Op(object):
return
preped_data
,
error_channeldata
def
_run_process
(
self
,
client_predict_handler
,
preped_data
,
data_id
,
private_obj
,
log_func
):
log_func
):
midped_data
,
error_channeldata
=
None
,
None
if
self
.
with_serving
:
ecode
=
ChannelDataEcode
.
OK
.
value
if
self
.
_timeout
<=
0
:
try
:
midped_data
=
self
.
process
(
client_predict_handler
,
preped_data
,
private_obj
)
preped_data
)
except
Exception
as
e
:
ecode
=
ChannelDataEcode
.
UNKNOW
.
value
error_info
=
log_func
(
e
)
...
...
@@ -249,8 +246,7 @@ class Op(object):
midped_data
=
func_timeout
.
func_timeout
(
self
.
_timeout
,
self
.
process
,
args
=
(
client_predict_handler
,
preped_data
,
private_obj
))
args
=
(
client_predict_handler
,
preped_data
))
except
func_timeout
.
FunctionTimedOut
as
e
:
if
i
+
1
>=
self
.
_retry
:
ecode
=
ChannelDataEcode
.
TIMEOUT
.
value
...
...
@@ -280,12 +276,10 @@ class Op(object):
midped_data
=
preped_data
return
midped_data
,
error_channeldata
def
_run_postprocess
(
self
,
input_dict
,
midped_data
,
data_id
,
private_obj
,
log_func
):
def
_run_postprocess
(
self
,
input_dict
,
midped_data
,
data_id
,
log_func
):
output_data
,
error_channeldata
=
None
,
None
try
:
postped_data
=
self
.
postprocess
(
input_dict
,
midped_data
,
private_obj
)
postped_data
=
self
.
postprocess
(
input_dict
,
midped_data
)
except
Exception
as
e
:
error_info
=
log_func
(
e
)
_LOGGER
.
error
(
error_info
)
...
...
@@ -355,14 +349,6 @@ class Op(object):
_LOGGER
.
error
(
log
(
e
))
os
.
_exit
(
-
1
)
# load private objects (some no-thread-safe objects)
private_obj
=
None
try
:
private_obj
=
self
.
load_private_obj
()
except
Exception
as
e
:
_LOGGER
.
error
(
log
(
e
))
os
.
_exit
(
-
1
)
self
.
_is_run
=
True
while
self
.
_is_run
:
#self._profiler_record("get#{}_0".format(op_info_prefix))
...
...
@@ -380,8 +366,8 @@ class Op(object):
# preprecess
self
.
_profiler_record
(
"prep#{}_0"
.
format
(
op_info_prefix
))
preped_data
,
error_channeldata
=
self
.
_run_preprocess
(
parsed_data
,
data_id
,
private_obj
,
log
)
preped_data
,
error_channeldata
=
self
.
_run_preprocess
(
parsed_data
,
data_id
,
log
)
self
.
_profiler_record
(
"prep#{}_1"
.
format
(
op_info_prefix
))
if
error_channeldata
is
not
None
:
self
.
_push_to_output_channels
(
error_channeldata
,
...
...
@@ -391,7 +377,7 @@ class Op(object):
# process
self
.
_profiler_record
(
"midp#{}_0"
.
format
(
op_info_prefix
))
midped_data
,
error_channeldata
=
self
.
_run_process
(
client_predict_handler
,
preped_data
,
data_id
,
private_obj
,
log
)
client_predict_handler
,
preped_data
,
data_id
,
log
)
self
.
_profiler_record
(
"midp#{}_1"
.
format
(
op_info_prefix
))
if
error_channeldata
is
not
None
:
self
.
_push_to_output_channels
(
error_channeldata
,
...
...
@@ -401,7 +387,7 @@ class Op(object):
# postprocess
self
.
_profiler_record
(
"postp#{}_0"
.
format
(
op_info_prefix
))
output_data
,
error_channeldata
=
self
.
_run_postprocess
(
parsed_data
,
midped_data
,
data_id
,
private_obj
,
log
)
parsed_data
,
midped_data
,
data_id
,
log
)
self
.
_profiler_record
(
"postp#{}_1"
.
format
(
op_info_prefix
))
if
error_channeldata
is
not
None
:
self
.
_push_to_output_channels
(
error_channeldata
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录