Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
09ab2fba
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看板
提交
09ab2fba
编写于
3月 19, 2020
作者:
G
guru4elephant
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refine benchmark_batch.py
上级
22dd55e4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
23 addition
and
4 deletion
+23
-4
python/examples/bert/benchmark_batch.py
python/examples/bert/benchmark_batch.py
+6
-4
python/examples/bert/benchmark_batch.sh
python/examples/bert/benchmark_batch.sh
+7
-0
python/examples/bert/benchmark_with_profile.sh
python/examples/bert/benchmark_with_profile.sh
+10
-0
未找到文件。
python/examples/bert/benchmark_batch.py
浏览文件 @
09ab2fba
...
...
@@ -41,13 +41,13 @@ def single_func(idx, resource):
client
=
Client
()
client
.
load_client_config
(
args
.
model
)
client
.
connect
([
resource
[
"endpoint"
][
idx
%
len
(
resource
[
"endpoint"
])]])
feed_batch
=
[]
for
bi
in
range
(
args
.
batch_size
):
feed_batch
.
append
(
reader
.
process
(
dataset
[
bi
]))
start
=
time
.
time
()
for
i
in
range
(
1000
):
if
args
.
batch_size
>=
1
:
feed_batch
=
[]
for
bi
in
range
(
args
.
batch_size
):
feed_batch
.
append
(
reader
.
process
(
dataset
[
i
]))
result
=
client
.
batch_predict
(
feed_batch
=
feed_batch
,
fetch
=
fetch
)
else
:
...
...
@@ -61,7 +61,9 @@ def single_func(idx, resource):
if
__name__
==
'__main__'
:
multi_thread_runner
=
MultiThreadRunner
()
endpoint_list
=
[
"127.0.0.1:9292"
]
endpoint_list
=
[
"127.0.0.1:9295"
,
"127.0.0.1:9296"
,
"127.0.0.1:9297"
,
"127.0.0.1:9298"
]
result
=
multi_thread_runner
.
run
(
single_func
,
args
.
thread
,
{
"endpoint"
:
endpoint_list
})
avg_cost
=
0
...
...
python/examples/bert/benchmark_batch.sh
浏览文件 @
09ab2fba
rm
profile_log
export
CUDA_VISIBLE_DEVICES
=
0,1,2,3
python
-m
paddle_serving_server_gpu.serve
--model
bert_seq20_model/
--port
9295
--thread
4
--gpu_ids
0,1,2,3 2> elog
>
stdlog &
sleep
5
for
thread_num
in
1 2 4 8 16
do
for
batch_size
in
1 2 4 8 16 32 64 128 256 512
do
$PYTHONROOT
/bin/python benchmark_batch.py
--thread
$thread_num
--batch_size
$batch_size
--model
serving_client_conf/serving_client_conf.prototxt
--request
rpc
>
profile 2>&1
echo
"========================================"
echo
"thread num: "
,
$thread_num
echo
"batch size: "
,
$batch_size
echo
"batch size :
$batch_size
"
>>
profile_log
$PYTHONROOT
/bin/python ../util/show_profile.py profile
$thread_num
>>
profile_log
tail
-n
1 profile
>>
profile_log
...
...
python/examples/bert/benchmark_with_profile.sh
0 → 100644
浏览文件 @
09ab2fba
export
CUDA_VISIBLE_DEVICES
=
0,1,2,3
python
-m
paddle_serving_server_gpu.serve
--model
bert_seq20_model/
--port
9295
--thread
4
--gpu_ids
0,1,2,3 2> elog
>
stdlog &
export
FLAGS_profile_client
=
1
export
FLAGS_profile_server
=
1
sleep
5
thread_num
=
4
python benchmark_batch.py
--thread
${
thread_num
}
--batch_size
64
--model
serving_client_conf/serving_client_conf.prototxt 2> profile
python show_profile.py profile
${
thread_num
}
python timeline_trace.py profile trace
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录