Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
13534d39
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看板
提交
13534d39
编写于
3月 17, 2020
作者:
G
guru4elephant
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refine web_service.py
上级
17067a47
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
34 addition
and
46 deletion
+34
-46
python/paddle_serving_server_gpu/web_service.py
python/paddle_serving_server_gpu/web_service.py
+34
-46
未找到文件。
python/paddle_serving_server_gpu/web_service.py
浏览文件 @
13534d39
...
...
@@ -15,7 +15,7 @@
# pylint: disable=doc-string-missing
from
flask
import
Flask
,
request
,
abort
from
multiprocessing
import
Pool
,
Process
from
multiprocessing
import
Pool
,
Process
,
Queue
from
paddle_serving_server_gpu
import
OpMaker
,
OpSeqMaker
,
Server
import
paddle_serving_server_gpu
as
serving
from
paddle_serving_client
import
Client
...
...
@@ -29,27 +29,13 @@ class WebService(object):
self
.
name
=
name
self
.
gpus
=
[]
self
.
rpc_service_list
=
[]
def
producers
(
self
,
input_queue
,
output_queue
,
endpoint
):
client
=
Client
()
client
.
load_client_config
(
"{}/serving_server_conf.prototxt"
.
format
(
self
.
model_config
))
client
.
connect
([
endpoint
])
while
True
:
request_json
=
input_queue
.
get
()
feed
,
fetch
=
self
.
preprocess
(
request_json
,
request_json
[
"fetch"
])
if
"fetch"
in
feed
:
del
feed
[
"fetch"
]
fetch_map
=
client
.
predict
(
feed
=
feed
,
fetch
=
fetch
)
fetch_map
=
self
.
postprocess
(
feed
=
request
.
json
,
fetch
=
fetch
,
fetch_map
=
fetch_map
)
output_queue
.
put
(
fetch_map
)
self
.
input_queues
=
[]
def
load_model_config
(
self
,
model_config
):
self
.
model_config
=
model_config
def
set_gpus
(
self
,
gpus
):
self
.
gpus
=
gpus
self
.
gpus
=
[
int
(
x
)
for
x
in
gpus
.
split
(
","
)]
def
default_rpc_service
(
self
,
workdir
=
"conf"
,
...
...
@@ -93,21 +79,6 @@ class WebService(object):
self
.
default_rpc_service
(
self
.
workdir
,
self
.
port
+
1
,
-
1
,
thread_num
=
10
))
else
:
self
.
producer_pros
=
[]
for
i
,
gpuid
in
enumerate
(
self
.
gpus
):
producer_p
=
Process
(
target
=
self
.
producers
,
args
=
(
self
,
self
.
input_queue
[
i
],
self
.
output_queue
,
self
.
port
+
1
+
i
,
gpuid
,
))
self
.
producer_pros
.
append
(
producer_p
)
for
p
in
producer_pros
:
p
.
start
()
for
i
,
gpuid
in
enumerate
(
self
.
gpus
):
self
.
rpc_service_list
.
append
(
self
.
default_rpc_service
(
...
...
@@ -122,7 +93,7 @@ class WebService(object):
self
.
model_config
))
client
.
connect
([
endpoint
])
while
True
:
request_json
=
input
_
queue
.
get
()
request_json
=
inputqueue
.
get
()
feed
,
fetch
=
self
.
preprocess
(
request_json
,
request_json
[
"fetch"
])
if
"fetch"
in
feed
:
del
feed
[
"fetch"
]
...
...
@@ -135,23 +106,29 @@ class WebService(object):
app_instance
=
Flask
(
__name__
)
service_name
=
"/"
+
self
.
name
+
"/prediction"
input_queues
=
[]
output_queue
=
Queue
()
self
.
input_queues
=
[]
self
.
output_queue
=
Queue
()
for
i
in
range
(
gpu_num
):
input_queues
.
append
(
Queue
())
self
.
input_queues
.
append
(
Queue
())
producer_list
=
[]
for
i
,
input_q
in
enumerate
(
input_queues
):
for
i
,
input_q
in
enumerate
(
self
.
input_queues
):
producer_processes
=
Process
(
target
=
self
.
producers
,
args
=
(
input_q
,
"0.0.0.0:{}"
.
format
(
self
.
port
+
1
+
i
))
"0.0.0.0:{}"
.
format
(
self
.
port
+
1
+
i
),
))
producer_list
.
append
(
producer_processes
)
for
p
in
producer_list
:
p
.
start
()
idx
=
0
client
=
Client
()
client
.
load_client_config
(
"{}/serving_server_conf.prototxt"
.
format
(
self
.
model_config
))
client
.
connect
([
"0.0.0.0:{}"
.
format
(
self
.
port
+
1
)])
self
.
idx
=
0
@
app_instance
.
route
(
service_name
,
methods
=
[
'POST'
])
def
get_prediction
():
...
...
@@ -160,12 +137,23 @@ class WebService(object):
if
"fetch"
not
in
request
.
json
:
abort
(
400
)
input_queues
[
idx
].
put
(
request
.
json
)
result
=
output_queue
.
get
()
idx
+=
1
if
idx
>=
len
(
self
.
gpus
):
idx
=
0
self
.
input_queues
[
self
.
idx
].
put
(
request
.
json
)
#self.input_queues[0].put(request.json)
self
.
idx
+=
1
if
self
.
idx
>=
len
(
self
.
gpus
):
self
.
idx
=
0
result
=
self
.
output_queue
.
get
()
return
result
'''
feed, fetch = self.preprocess(request.json, request.json["fetch"])
if "fetch" in feed:
del feed["fetch"]
fetch_map = client.predict(feed=feed, fetch=fetch)
fetch_map = self.postprocess(
feed=request.json, fetch=fetch, fetch_map=fetch_map)
return fetch_map
'''
app_instance
.
run
(
host
=
"0.0.0.0"
,
port
=
self
.
port
,
...
...
@@ -183,7 +171,7 @@ class WebService(object):
self
.
name
))
server_pros
=
[]
for
i
,
service
in
enumerate
(
self
.
rpc_service_list
):
p
=
Process
(
target
=
_launch_rpc_service
,
args
=
(
i
,
))
p
=
Process
(
target
=
self
.
_launch_rpc_service
,
args
=
(
i
,
))
server_pros
.
append
(
p
)
for
p
in
server_pros
:
p
.
start
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录