benchmark.sh 1.0 KB
Newer Older
M
MRXLT 已提交
1
rm profile_log
M
MRXLT 已提交
2 3 4
export CUDA_VISIBLE_DEVICES=0,1,2,3
export FLAGS_profile_server=1
export FLAGS_profile_client=1
M
MRXLT 已提交
5
python -m paddle_serving_server_gpu.serve --model $1 --port 9292 --thread 4 --gpu_ids 0,1,2,3 --mem_optim --ir_optim  2> elog > stdlog &
M
MRXLT 已提交
6 7 8 9 10 11

sleep 5

#warm up
$PYTHONROOT/bin/python benchmark.py --thread 8 --batch_size 1 --model $2/serving_client_conf.prototxt --request rpc > profile 2>&1

M
MRXLT 已提交
12
for thread_num in 1 4 8 16
M
MRXLT 已提交
13
do
M
MRXLT 已提交
14
for batch_size in 1 4 16 64
M
MRXLT 已提交
15 16 17 18 19 20 21 22
do
    $PYTHONROOT/bin/python benchmark.py --thread $thread_num --batch_size $batch_size --model $2/serving_client_conf.prototxt --request rpc > profile 2>&1
    echo "model name :" $1
    echo "thread num :" $thread_num
    echo "batch size :" $batch_size
    echo "=================Done===================="
    echo "model name :$1" >> profile_log
    echo "batch size :$batch_size" >> profile_log
M
MRXLT 已提交
23
    $PYTHONROOT/bin/python ../util/show_profile.py profile $thread_num >> profile_log
M
MRXLT 已提交
24 25
    tail -n 8 profile >> profile_log
done
M
MRXLT 已提交
26
done
M
MRXLT 已提交
27 28

ps -ef|grep 'serving'|grep -v grep|cut -c 9-15 | xargs kill -9