Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
3193d30a
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看板
提交
3193d30a
编写于
7月 18, 2020
作者:
B
barrierye
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix ci script
上级
ed8e44ce
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
19 addition
and
4 deletion
+19
-4
doc/PIPELINE_SERVING_CN.md
doc/PIPELINE_SERVING_CN.md
+1
-1
tools/serving_build.sh
tools/serving_build.sh
+18
-3
未找到文件。
doc/PIPELINE_SERVING_CN.md
浏览文件 @
3193d30a
...
...
@@ -130,7 +130,7 @@ def postprocess(self, input_dicts, fetch_dict):
**preprocess**
的参数是前继 Channel 中的数据
`input_dicts`
,该变量是一个以前继 OP 的 name 为 Key,对应 OP 的输出为 Value 的字典。
**process
**
的参数是 Paddle Serving Client 预测接口的输入变量
`fetch_dict`
(preprocess 函数的返回值),该变量是一个以 feed_name 为 Key,对应 ndarray 格式的数据为 Value 的字典。
**process**
的参数是 Paddle Serving Client 预测接口的输入变量
`fetch_dict`
(preprocess 函数的返回值),该变量是一个以 feed_name 为 Key,对应 ndarray 格式的数据为 Value 的字典。
**postprocess**
的参数是
`input_dicts`
和
`fetch_dict`
,
`input_dicts`
与 preprocess 的参数一致,
`fetch_dict`
是 process 函数的返回值(如果没有执行 process ,则该值为 preprocess 的返回值)。
...
...
tools/serving_build.sh
浏览文件 @
3193d30a
...
...
@@ -137,6 +137,15 @@ function kill_server_process() {
sleep
1
}
function
kill_process_by_pid
()
{
if
[
$#
!=
1
]
;
then
echo
"usage: kill_process_by_pid <PID>"
exit
1
fi
local
PID
=
$1
lsof
-i
:
$PID
|
awk
'NR == 1 {next} {print $2}'
| xargs
kill
}
function
python_test_fit_a_line
()
{
# pwd: /Serving/python/examples
cd
fit_a_line
# pwd: /Serving/python/examples/fit_a_line
...
...
@@ -521,6 +530,7 @@ function python_test_grpc_impl() {
check_cmd
"python test_batch_client.py > /dev/null"
check_cmd
"python test_timeout_client.py > /dev/null"
kill_server_process
kill_process_by_pid 9393
check_cmd
"python test_server.py uci_housing_model > /dev/null &"
sleep
5
# wait for the server to start
...
...
@@ -531,6 +541,7 @@ function python_test_grpc_impl() {
check_cmd
"python test_batch_client.py > /dev/null"
check_cmd
"python test_timeout_client.py > /dev/null"
kill_server_process
kill_process_by_pid 9393
cd
..
# pwd: /Serving/python/examples/grpc_impl_example
...
...
@@ -579,6 +590,7 @@ function python_test_grpc_impl() {
check_cmd
"python test_batch_client.py > /dev/null"
check_cmd
"python test_timeout_client.py > /dev/null"
kill_server_process
kill_process_by_pid 9393
check_cmd
"python test_server_gpu.py uci_housing_model > /dev/null &"
sleep
5
# wait for the server to start
...
...
@@ -589,7 +601,8 @@ function python_test_grpc_impl() {
check_cmd
"python test_batch_client.py > /dev/null"
check_cmd
"python test_timeout_client.py > /dev/null"
kill_server_process
ps
-ef
|
grep
"test_server_gpu"
|
grep
-v
serving_build |
grep
-v
grep
|
awk
'{print $2}'
| xargs
kill
kill_process_by_pid 9393
#ps -ef | grep "test_server_gpu" | grep -v serving_build | grep -v grep | awk '{print $2}' | xargs kill
cd
..
# pwd: /Serving/python/examples/grpc_impl_example
...
...
@@ -702,7 +715,6 @@ function python_test_pipeline(){
# start paddle serving service (brpc)
sh get_data.sh
python
-m
paddle_serving_server.serve
--model
imdb_cnn_model
--port
9292
--workdir
test9292 &> cnn.log &
sleep
5
python
-m
paddle_serving_server.serve
--model
imdb_bow_model
--port
9393
--workdir
test9393 &> bow.log &
sleep
5
...
...
@@ -771,10 +783,11 @@ EOF
ps
-ef
|
grep
"pipeline_server"
|
grep
-v
grep
|
awk
'{print $2}'
| xargs
kill
kill_server_process
kill_process_by_pid 9292
kill_process_by_pid 9393
# start paddle serving service (grpc)
python
-m
paddle_serving_server.serve
--model
imdb_cnn_model
--port
9292
--use_multilang
--workdir
test9292 &> cnn.log &
sleep
5
python
-m
paddle_serving_server.serve
--model
imdb_bow_model
--port
9393
--use_multilang
--workdir
test9393 &> bow.log &
sleep
5
python test_pipeline_server.py
>
/dev/null &
...
...
@@ -782,6 +795,8 @@ EOF
check_cmd
"python test_pipeline_client.py"
ps
-ef
|
grep
"pipeline_server"
|
grep
-v
grep
|
awk
'{print $2}'
| xargs
kill
kill_server_process
kill_process_by_pid 9292
kill_process_by_pid 9393
;;
GPU
)
echo
"pipeline ignore GPU test"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录