Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
957d6c81
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看板
提交
957d6c81
编写于
3月 17, 2020
作者:
G
guru4elephant
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add multiple gpu rpc service for web service startup
上级
32d1b406
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
87 addition
and
49 deletion
+87
-49
python/examples/imagenet/image_classification_service_gpu.py
python/examples/imagenet/image_classification_service_gpu.py
+3
-8
python/examples/imagenet/image_http_client.py
python/examples/imagenet/image_http_client.py
+9
-4
python/paddle_serving_server_gpu/web_service.py
python/paddle_serving_server_gpu/web_service.py
+75
-37
未找到文件。
python/examples/imagenet/image_classification_service_gpu.py
浏览文件 @
957d6c81
...
...
@@ -14,16 +14,13 @@
from
paddle_serving_server_gpu.web_service
import
WebService
import
sys
import
os
import
cv2
import
base64
import
numpy
as
np
from
image_reader
import
ImageReader
class
ImageService
(
WebService
):
"""
preprocessing function for image classification
"""
def
preprocess
(
self
,
feed
=
{},
fetch
=
[]):
reader
=
ImageReader
()
if
"image"
not
in
feed
:
...
...
@@ -37,9 +34,7 @@ class ImageService(WebService):
image_service
=
ImageService
(
name
=
"image"
)
image_service
.
load_model_config
(
sys
.
argv
[
1
])
gpu_ids
=
os
.
environ
[
"CUDA_VISIBLE_DEVICES"
]
gpus
=
[
int
(
x
)
for
x
in
gpu_ids
.
split
(
","
)]
image_service
.
set_gpus
(
gpus
)
image_service
.
set_gpus
(
"0,1,2,3"
)
image_service
.
prepare_server
(
workdir
=
sys
.
argv
[
2
],
port
=
int
(
sys
.
argv
[
3
]),
device
=
"gpu"
)
image_service
.
run_server
()
python/examples/imagenet/image_http_client.py
浏览文件 @
957d6c81
...
...
@@ -16,6 +16,7 @@ import requests
import
base64
import
json
import
time
import
os
def
predict
(
image_path
,
server
):
...
...
@@ -23,13 +24,17 @@ def predict(image_path, server):
req
=
json
.
dumps
({
"image"
:
image
,
"fetch"
:
[
"score"
]})
r
=
requests
.
post
(
server
,
data
=
req
,
headers
=
{
"Content-Type"
:
"application/json"
})
return
r
if
__name__
==
"__main__"
:
server
=
"http://127.0.0.1:9393/image/prediction"
image_path
=
"./data/n01440764_10026.JPEG"
server
=
"http://127.0.0.1:9295/image/prediction"
#image_path = "./data/n01440764_10026.JPEG"
image_list
=
os
.
listdir
(
"./data/image_data/n01440764/"
)
start
=
time
.
time
()
for
i
in
range
(
1000
):
predict
(
image_path
,
server
)
for
img
in
image_list
:
image_file
=
"./data/image_data/n01440764/"
+
img
res
=
predict
(
image_file
,
server
)
print
(
res
.
json
()[
"score"
][
0
])
end
=
time
.
time
()
print
(
end
-
start
)
python/paddle_serving_server_gpu/web_service.py
浏览文件 @
957d6c81
g
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
@@ -24,16 +24,27 @@ import time
import
random
def
producers
(
input_queue
,
output_queue
,
endpoint
):
pass
class
WebService
(
object
):
def
__init__
(
self
,
name
=
"default_service"
):
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
)
def
load_model_config
(
self
,
model_config
):
self
.
model_config
=
model_config
...
...
@@ -82,6 +93,21 @@ 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
(
...
...
@@ -90,18 +116,23 @@ class WebService(object):
gpuid
,
thread_num
=
10
))
def
producers
(
self
,
inputqueue
,
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
)
self
.
output_queue
.
put
(
fetch_map
)
def
_launch_web_service
(
self
,
gpu_num
):
app_instance
=
Flask
(
__name__
)
client_list
=
[]
if
gpu_num
>
1
:
gpu_num
=
0
for
i
in
range
(
gpu_num
):
client_service
=
Client
()
client_service
.
load_client_config
(
"{}/serving_server_conf.prototxt"
.
format
(
self
.
model_config
))
client_service
.
connect
([
"0.0.0.0:{}"
.
format
(
self
.
port
+
i
+
1
)])
client_list
.
append
(
client_service
)
time
.
sleep
(
1
)
service_name
=
"/"
+
self
.
name
+
"/prediction"
input_queues
=
[]
...
...
@@ -109,12 +140,18 @@ class WebService(object):
for
i
in
range
(
gpu_num
):
input_queues
.
append
(
Queue
())
@
app_instance
.
route
(
"{}_batch"
.
format
(
service_name
),
methods
[
'POST'
])
def
get_prediction
():
if
not
request
.
json
:
abort
(
400
)
if
"fetch"
not
in
request
.
json
:
abort
(
400
)
producer_list
=
[]
for
i
,
input_q
in
enumerate
(
input_queues
):
producer_processes
=
Process
(
target
=
self
.
producers
,
input_q
,
"0.0.0.0:{}"
.
format
(
self
.
port
+
1
+
i
))
producer_list
.
append
(
producer_processes
)
for
p
in
producer_list
:
p
.
start
()
idx
=
0
@
app_instance
.
route
(
service_name
,
methods
=
[
'POST'
])
def
get_prediction
():
...
...
@@ -122,40 +159,41 @@ class WebService(object):
abort
(
400
)
if
"fetch"
not
in
request
.
json
:
abort
(
400
)
feed
,
fetch
=
self
.
preprocess
(
request
.
json
,
request
.
json
[
"fetch"
])
i
f
"fetch"
in
feed
:
del
feed
[
"fetch"
]
fetch_map
=
client_list
[
0
].
predict
(
feed
=
feed
,
fetch
=
fetch
)
fetch_map
=
self
.
postprocess
(
feed
=
request
.
json
,
fetch
=
fetch
,
fetch_map
=
fetch_map
)
return
fetch_map
i
nput_queues
[
idx
].
put
(
request
.
json
)
result
=
output_queue
.
get
()
idx
+=
1
if
idx
>=
len
(
self
.
gpus
):
idx
=
0
return
result
app_instance
.
run
(
host
=
"0.0.0.0"
,
port
=
self
.
port
,
threaded
=
False
,
processes
=
1
)
for
p
in
producer_list
:
p
.
join
()
def
run_server
(
self
):
import
socket
localIP
=
socket
.
gethostbyname
(
socket
.
gethostname
())
print
(
"web service address:"
)
print
(
"http://{}:{}/{}/prediction"
.
format
(
localIP
,
self
.
port
,
self
.
name
))
rpc_processes
=
[]
for
idx
in
range
(
len
(
self
.
rpc_service_list
)):
p_rpc
=
Process
(
target
=
self
.
_launch_rpc_service
,
args
=
(
idx
,
))
rpc_processes
.
append
(
p_rpc
)
for
p
in
rpc_processes
:
server_pros
=
[]
for
i
,
service
in
enumerate
(
self
.
rpc_service_list
):
p
=
Process
(
target
=
_launch_rpc_service
,
args
=
(
i
,
))
server_pros
.
append
(
p
)
for
p
in
server_pros
:
p
.
start
()
p_web
=
Process
(
target
=
self
.
_launch_web_service
,
args
=
(
len
(
self
.
gpus
),
))
p_web
.
start
()
for
p
in
rpc_processes
:
p
.
join
()
p_web
.
join
()
for
p
in
server_pros
:
p
.
join
()
def
preprocess
(
self
,
feed
=
{},
fetch
=
[]):
return
feed
,
fetch
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录