mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2026-04-23 00:17:25 +08:00
429dd2b1db
* [Intel HPU] add example benchmark scripts for hpu * Revise the code based on the copilot comments * update code based on comments * update ci ops version
65 lines
2.3 KiB
Bash
Executable File
65 lines
2.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (c) 2025 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.
|
|
|
|
# set -x
|
|
|
|
model="ERNIE-4.5-21B-A3B-Paddle"
|
|
model_log_name="ERNIE-4.5-21B-A3B-Paddle"
|
|
model_yaml="yaml/eb45-21b-a3b-32k-bf16.yaml"
|
|
# model="ERNIE-4.5-300B-A47B-Paddle"
|
|
# model_log_name="ERNIE-4.5-300B-A47B-Paddle"
|
|
# model_yaml="yaml/eb45-300b-a47b-32k-bf16.yaml"
|
|
export SERVER_PORT=8188
|
|
export no_proxy=.intel.com,intel.com,localhost,127.0.0.1,0.0.0.0,10.0.0.0/8,192.168.1.0/24
|
|
|
|
CARD_NUM=$1
|
|
|
|
if [[ "$CARD_NUM" == "1" ]]; then
|
|
batch_size=128
|
|
else
|
|
batch_size=64
|
|
fi
|
|
|
|
num_prompts=2000
|
|
|
|
workspace=$(pwd)
|
|
cd $workspace
|
|
log_home=$workspace/benchmark_fastdeploy_logs/$(TZ='Asia/Shanghai' date '+WW%V')_$(TZ='Asia/Shanghai' date +%F-%H-%M-%S)_${model_log_name}
|
|
|
|
mkdir -p ${log_home}
|
|
|
|
log_name_prefix="benchmarkdata_${model_log_name}_sharegpt"
|
|
log_name=${log_name_prefix}_$(TZ='Asia/Shanghai' date +%F-%H-%M-%S)
|
|
echo "running benchmark with sharegpt log name ${log_name}"
|
|
cmd="python ../../benchmarks/benchmark_serving.py \
|
|
--backend openai-chat \
|
|
--model $model \
|
|
--endpoint /v1/chat/completions \
|
|
--host 0.0.0.0 \
|
|
--port ${SERVER_PORT} \
|
|
--dataset-name EBChat \
|
|
--dataset-path ./filtered_sharedgpt_2000_input_1136_output_200_fd.json \
|
|
--hyperparameter-path ../../benchmarks/${model_yaml} \
|
|
--percentile-metrics ttft,tpot,itl,e2el,s_ttft,s_itl,s_e2el,s_decode,input_len,s_input_len,output_len \
|
|
--metric-percentiles 80,95,99,99.9,99.95,99.99 \
|
|
--max-concurrency ${batch_size} \
|
|
--num-prompts ${num_prompts} \
|
|
--sharegpt-output-len 4096 \
|
|
--save-result "
|
|
echo $cmd | tee -a ${log_home}/${log_name}.log
|
|
eval $cmd >> ${log_home}/${log_name}.log 2>&1
|
|
cp log/hpu_model_runner_profile.log ${log_home}/${log_name}_profile.log
|