-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlatency_throughput_curve.sh
executable file
·59 lines (53 loc) · 2.32 KB
/
latency_throughput_curve.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash
# Copyright 2024 Google Inc. 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 -o xtrace
export IP=$IP
huggingface-cli login --token "$HF_TOKEN" --add-to-git-credential
if [[ "$PROMPT_DATASET" = "sharegpt" ]]; then
PROMPT_DATASET_FILE="ShareGPT_V3_unfiltered_cleaned_split.json"
fi
PYTHON="python3"
PYTHON_OPTS="benchmark_serving.py "
for request_rate in $(echo $REQUEST_RATES | tr ',' ' '); do
echo "Benchmaking request rate: ${request_rate}"
# TODO: Check if profile already exists, if so then skip
timestamp=$(date +"%Y-%m-%d_%H-%M-%S")
output_file="latency-profile-${timestamp}.txt"
if [ ${request_rate} == 0 ]; then
request_rate="inf"
num_prompts=$MAX_NUM_PROMPTS
else
num_prompts=$(awk "BEGIN {print int($request_rate * $BENCHMARK_TIME_SECONDS)}")
fi
echo "TOTAL prompts: $num_prompts" # Output: 8
PYTHON_OPTS="$PYTHON_OPTS --save-json-results --output-bucket=$OUTPUT_BUCKET --host=$IP --port=$PORT --dataset=$PROMPT_DATASET_FILE --tokenizer=$TOKENIZER --request-rate=$request_rate --backend=$BACKEND --num-prompts=$num_prompts --max-input-length=$INPUT_LENGTH --max-output-length=$OUTPUT_LENGTH --file-prefix=$FILE_PREFIX --models=$MODELS"
if [[ "$SCRAPE_SERVER_METRICS" = "true" ]]; then
PYTHON_OPTS="$PYTHON_OPTS --scrape-server-metrics"
fi
if [[ "$SAVE_AGGREGATED_RESULT" = "true" ]]; then
PYTHON_OPTS="$PYTHON_OPTS --save-aggregated-result"
fi
if [[ "$STREAM_REQUEST" = "true" ]]; then
PYTHON_OPTS="$PYTHON_OPTS --stream-request"
fi
if [[ "$OUTPUT_BUCKET_FILEPATH" ]]; then
PYTHON_OPTS="$PYTHON_OPTS --output-bucket-filepath $OUTPUT_BUCKET_FILEPATH"
fi
$PYTHON $PYTHON_OPTS > $output_file
cat $output_file
sleep 30 # wait 30 seconds before next run to ensure metrics isolation (metrics pulled every 15s)
done
export LPG_FINISHED="true"
sleep infinity