Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
0ed701e6
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看板
提交
0ed701e6
编写于
5月 28, 2020
作者:
M
MRXLT
提交者:
GitHub
5月 28, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #614 from MRXLT/more-ci
add ci for multi-process and multi-fetch
上级
bd42658a
8a9f895d
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
151 addition
and
1 deletion
+151
-1
python/examples/bert/test_multi_fetch_client.py
python/examples/bert/test_multi_fetch_client.py
+43
-0
python/examples/fit_a_line/test_multi_process_client.py
python/examples/fit_a_line/test_multi_process_client.py
+36
-0
tools/serving_build.sh
tools/serving_build.sh
+72
-1
未找到文件。
python/examples/bert/test_multi_fetch_client.py
0 → 100644
浏览文件 @
0ed701e6
# 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.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
paddle_serving_client
import
Client
from
paddle_serving_app.reader
import
ChineseBertReader
import
sys
client
=
Client
()
client
.
load_client_config
(
"./bert_seq32_client/serving_client_conf.prototxt"
)
client
.
connect
([
"127.0.0.1:9292"
])
reader
=
ChineseBertReader
({
"max_seq_len"
:
32
})
fetch
=
[
"sequence_10"
,
"sequence_12"
,
"pooled_output"
]
expected_shape
=
{
"sequence_10"
:
(
4
,
32
,
768
),
"sequence_12"
:
(
4
,
32
,
768
),
"pooled_output"
:
(
4
,
768
)
}
batch_size
=
4
feed_batch
=
[]
for
line
in
sys
.
stdin
:
feed
=
reader
.
process
(
line
)
if
len
(
feed_batch
)
<
batch_size
:
feed_batch
.
append
(
feed
)
else
:
fetch_map
=
client
.
predict
(
feed
=
feed_batch
,
fetch
=
fetch
)
feed_batch
=
[]
for
var_name
in
fetch
:
if
fetch_map
[
var_name
].
shape
!=
expected_shape
[
var_name
]:
print
(
"fetch var {} shape error."
.
format
(
var_name
))
sys
.
exit
(
1
)
python/examples/fit_a_line/test_multi_process_client.py
0 → 100644
浏览文件 @
0ed701e6
# 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.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
paddle_serving_client
import
Client
from
paddle_serving_client.utils
import
MultiThreadRunner
import
paddle
def
single_func
(
idx
,
resource
):
client
=
Client
()
client
.
load_client_config
(
"./uci_housing_client/serving_client_conf.prototxt"
)
client
.
connect
([
"127.0.0.1:9293"
,
"127.0.0.1:9292"
])
test_reader
=
paddle
.
batch
(
paddle
.
reader
.
shuffle
(
paddle
.
dataset
.
uci_housing
.
test
(),
buf_size
=
500
),
batch_size
=
1
)
for
data
in
test_reader
():
fetch_map
=
client
.
predict
(
feed
=
{
"x"
:
data
[
0
][
0
]},
fetch
=
[
"price"
])
return
[[
0
]]
multi_thread_runner
=
MultiThreadRunner
()
thread_num
=
4
result
=
multi_thread_runner
.
run
(
single_func
,
thread_num
,
{})
tools/serving_build.sh
浏览文件 @
0ed701e6
...
...
@@ -331,6 +331,75 @@ function python_test_bert() {
cd
..
}
function
python_test_multi_fetch
()
{
# pwd: /Serving/python/examples
local
TYPT
=
$1
export
SERVING_BIN
=
${
SERVING_WORKDIR
}
/build-server-
${
TYPE
}
/core/general-server/serving
cd
bert
# pwd: /Serving/python/examples/bert
case
$TYPE
in
CPU
)
#download model (max_seq_len=32)
wget https://paddle-serving.bj.bcebos.com/bert_example/bert_multi_fetch.tar.gz
tar
-xzvf
bert_multi_fetch.tar.gz
check_cmd
"python -m paddle_serving_server.serve --model bert_seq32_model --port 9292 &"
sleep
5
check_cmd
"head -n 8 data-c.txt | python test_multi_fetch_client.py"
kill_server_process
echo
"bert mutli fetch RPC inference pass"
;;
GPU
)
#download model (max_seq_len=32)
wget https://paddle-serving.bj.bcebos.com/bert_example/bert_multi_fetch.tar.gz
tar
-xzvf
bert_multi_fetch.tar.gz
check_cmd
"python -m paddle_serving_server_gpu.serve --model bert_seq32_model --port 9292 --gpu_ids 0 &"
sleep
5
check_cmd
"head -n 8 data-c.txt | python test_multi_fetch_client.py"
kill_server_process
echo
"bert mutli fetch RPC inference pass"
;;
*
)
echo
"error type"
exit
1
;;
esac
echo
"test multi fetch
$TYPE
finished as expected."
unset
SERVING_BIN
cd
..
}
function
python_test_multi_process
(){
# pwd: /Serving/python/examples
local
TYPT
=
$1
export
SERVING_BIN
=
${
SERVING_WORKDIR
}
/build-server-
${
TYPE
}
/core/general-server/serving
cd
fit_a_line
# pwd: /Serving/python/examples/fit_a_line
sh get_data.sh
case
$TYPE
in
CPU
)
check_cmd
"python -m paddle_serving_server.serve --model uci_housing_model --port 9292 &"
check_cmd
"python -m paddle_serving_server.serve --model uci_housing_model --port 9293 &"
sleep
5
check_cmd
"python test_multi_process_client.py"
kill_server_process
echo
"bert mutli rpc RPC inference pass"
;;
GPU
)
check_cmd
"python -m paddle_serving_server_gpu.serve --model uci_housing_model --port 9292 --gpu_ids 0 &"
check_cmd
"python -m paddle_serving_server_gpu.serve --model uci_housing_model --port 9293 --gpu_ids 0 &"
sleep
5
check_cmd
"python test_multi_process_client.py"
kill_server_process
echo
"bert mutli process RPC inference pass"
;;
*
)
echo
"error type"
exit
1
;;
esac
echo
"test multi process
$TYPE
finished as expected."
unset
SERVING_BIN
cd
..
}
function
python_test_imdb
()
{
# pwd: /Serving/python/examples
local
TYPE
=
$1
...
...
@@ -436,7 +505,9 @@ function python_run_test() {
python_run_criteo_ctr_with_cube
$TYPE
# pwd: /Serving/python/examples
python_test_bert
$TYPE
# pwd: /Serving/python/examples
python_test_imdb
$TYPE
# pwd: /Serving/python/examples
python_test_lac
$TYPE
python_test_lac
$TYPE
# pwd: /Serving/python/examples
python_test_multi_process
$TYPE
# pwd: /Serving/python/examples
python_test_multi_fetch
$TYPE
# pwd: /Serving/python/examples
echo
"test python
$TYPE
part finished as expected."
cd
../..
# pwd: /Serving
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录