forked from billishyahao/SA-PDD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenchmark_serving_rocm_sglang_sa_sharegpt.py
More file actions
229 lines (194 loc) · 10.3 KB
/
benchmark_serving_rocm_sglang_sa_sharegpt.py
File metadata and controls
229 lines (194 loc) · 10.3 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# benchmark script from https://gist.githubusercontent.com/kimbochen/15aab40c7a00613f8aa400d157d0ffd1/raw/06c2d2b67337836ec1919ccc6ffd75dae541dfed/amd_bmk.py
import json
import subprocess
import time
from argparse import ArgumentParser
from pathlib import Path
parser = ArgumentParser()
parser.add_argument('-g', '--gpu', type=str, choices=['mi300x', 'mi308x'], default="mi300x")
parser.add_argument('-p', '--print-results', action='store_true', default=False)
args = parser.parse_args()
if args.print_results:
# print(f'config, tp, conc, prompts, mnbt, isl, osl, rqr, req, goodput, e2el, ttft, tpot, itl, p90ttft, p90tpot, p90itl, output_tput, total_tput')
print(f'config, tp, conc, prompts, mnbt, rqr, req, goodput, p95ttft, p95tpot, p95itl, p99ttft, p99tpot, p99itl, output_tput, total_tput')
def launch_bmk_llama(model_name, tp_size, max_concurrency, max_num_batched_tokens, request_rate):
enable_goodput = "_goodput"
goodput_metric = "tpot:25"
# enable_goodput = ""
resultpath = "/billhe/colocate-results-sharegpt"
# outsidepath = "/root/colocate-results"
outsidepath = "/home/amd/billhe/colocate-results-sharegpt"
if model_name == '/models/amd_Llama-3.3-70B-Instruct-FP8-KV':
model_code = '70b'
elif model_name == '/models/amd_Llama-3.1-405B-Instruct-FP8-KV':
model_code = '405b'
else:
raise ValueError(f'{model_name} not supported')
result_filename = (
f'{model_code}_tp{tp_size}_'
f'c{max_concurrency}_mnbt{max_num_batched_tokens}_rps{request_rate}{enable_goodput}_{goodput_metric}'
)
result_file_path = Path(f'{outsidepath}/{result_filename}.json')
if args.print_results:
if not result_file_path.exists():
return
# fields = ['request_throughput', 'request_goodput', 'median_e2el_ms', 'median_ttft_ms', 'median_tpot_ms', 'median_itl_ms', 'p90_ttft_ms',\
# 'p90_tpot_ms', 'p90_itl_ms', 'output_throughput', 'total_token_throughput']
fields = ['request_throughput', 'request_goodput', 'p95_ttft_ms','p95_tpot_ms', 'p95_itl_ms', 'p99_ttft_ms','p99_tpot_ms', 'p99_itl_ms', 'output_throughput', 'total_token_throughput']
with open(result_file_path) as f:
results = json.load(f)
# print(f'{result_filename}, {tp_size}, {max_concurrency}, {max_concurrency*2}, {max_num_batched_tokens}, {input_len}, {output_len}, \
# {request_rate}, ', ', '.join(f'{results[f]:.3f}' for f in fields))
print(
f'{result_filename:>50}, '
f'{tp_size:>4}, '
f'{max_concurrency:>4}, '
f'{max_concurrency * 2:>4}, '
f'{max_num_batched_tokens:>6}, '
f'{request_rate:>6.1f}, ' +
', '.join(f'{results[f]:>12.3f}' for f in fields)
)
return
if result_file_path.exists():
print(f'Skipping {result_filename}')
return
network_name = 'bmk-net'
server_name = 'bmk-server'
port = 30501
image_name = 'rocm/ali-private:sglang-v0.4.7-rocm630-deepep-bcm-0625'
client_image_name = 'rocm/vllm-dev:nightly_main_20250706'
range_ratio = 0.9
metric_percentiles = ','.join([str(i) for i in range(1, 100, 1)])
script = f'''#!/usr/bin/env bash
docker network rm -f {network_name}
docker network create {network_name}
docker run --rm -d --network {network_name} --ipc host --name {server_name} \
--privileged --cap-add=CAP_SYS_ADMIN --device=/dev/kfd --device=/dev/dri --device=/dev/mem \
--group-add render --cap-add=SYS_PTRACE --security-opt seccomp=unconfined \
-e HUGGINGFACE_HUB_CACHE=/models -e MODELSCOPE_CACHE=/models \
-v /home/amd/models:/models -v /home/amd/billhe:/billhe --workdir /billhe \
{image_name} \
python3 -m sglang.launch_server \
--model {model_name} \
--trust-remote-code \
--chunked-prefill-size -1 \
--max-prefill-tokens 2048 \
--stream-output \
--host 0.0.0.0 \
--port {port} \
--mem-fraction-static 0.9 \
--disable-radix-cache \
--tp-size {tp_size} \
--base-gpu-id 0 \
--max-running-requests 1024
printf "RESULT_FILENAME=%s\n" "{result_filename}"
while ! docker logs {server_name} 2>&1 | grep -q "The server is fired up and ready to roll"; do
sleep 1
if docker logs {server_name} 2>&1 | grep -q "ERROR"; then
docker logs {server_name} >& "failed_runs/{result_filename}.log"
docker stop {server_name};docker network rm {network_name}
exit 1
fi
done
docker run --rm -t --network {network_name} --name bmk-client \
--privileged --cap-add=CAP_SYS_ADMIN --device=/dev/kfd --device=/dev/dri --device=/dev/mem \
--group-add render --cap-add=SYS_PTRACE --security-opt seccomp=unconfined \
-e HUGGINGFACE_HUB_CACHE=/models -e MODELSCOPE_CACHE=/models \
-v /home/amd/models:/models -v /home/amd/billhe:/billhe --workdir /billhe/vllm-upstream/benchmarks \
{client_image_name} \
python benchmark_serving.py \
--backend sglang \
--base-url "http://{server_name}:{port}" \
--model {model_name} \
--percentile-metrics "ttft,tpot,itl,e2el" \
--metric-percentiles {metric_percentiles} \
--request-rate {request_rate} \
--max-concurrency {max_concurrency} \
--dataset-name sharegpt \
--dataset-path /billhe/ShareGPT_V3_unfiltered_cleaned_split.json \
--num-prompts $(( {max_concurrency} * 2 )) \
--goodput {goodput_metric} \
--save-result --result-dir "{resultpath}" --result-filename "{result_filename}.json"
docker stop {server_name};docker network rm {network_name}
sleep 5
'''
print(f"Executing script: {script}")
subprocess.run(script, shell=True, check=True)
# def launch_bmk_deepseek(input_len, output_len, tp_size, max_concurrency):
# result_filename = f'dsv3_tp{tp_size}_isl{input_len}_osl{output_len}_c{max_concurrency}'
# result_file_path = Path(f'results/{result_filename}.json')
# if args.print_results:
# if not result_file_path.exists():
# return
# fields = ['median_ttft_ms', 'median_tpot_ms', 'median_itl_ms', 'median_e2el_ms', 'total_token_throughput']
# with open(result_file_path) as f:
# results = json.load(f)
# print(f'{result_filename}, {tp_size}, {max_concurrency}, -1,', ', '.join(f'{results[f]:.3f}' for f in fields))
# return
# if result_file_path.exists():
# print(f'Skipping {result_filename}')
# return
# model_name = 'deepseek-ai/DeepSeek-V3'
# network_name = 'bmk-net'
# server_name = 'bmk-server'
# port = 8000
# image_name = 'rocm/sgl-dev:upstream_20250422'
# script = f'''#!/usr/bin/env bash
# docker network create {network_name}
# docker run --rm -d --network {network_name} --ipc host --name {server_name} \
# --privileged --cap-add=CAP_SYS_ADMIN --device=/dev/kfd --device=/dev/dri --device=/dev/mem \
# --group-add render --cap-add=SYS_PTRACE --security-opt seccomp=unconfined \
# -v "$PWD/.hf_cache/":/root/hf_cache/ -v "$PWD/.inductor_cache/":/tmp/torchinductor_root/ \
# -e HF_HUB_CACHE=/root/hf_cache/ -e HF_TOKEN="$(cat hf_token.txt)" -e SGLANG_AITER_MOE=1 \
# {image_name} \
# python3 -m sglang.launch_server --model-path {model_name} --host 0.0.0.0 --port {port} --tp {tp_size} --trust-remote-code \
# --chunked-prefill-size 131072 --enable-torch-compile --torch-compile-max-bs 256
# printf "RESULT_FILENAME=%s\n" "{result_filename}"
# while ! docker logs {server_name} 2>&1 | grep -q "The server is fired up and ready to roll!"; do
# sleep 1
# done
# docker run --rm -t --network {network_name} --name bmk-client \
# --privileged --cap-add=CAP_SYS_ADMIN --device=/dev/kfd --device=/dev/dri --device=/dev/mem \
# --group-add render --cap-add=SYS_PTRACE --security-opt seccomp=unconfined \
# -v $PWD:/workspace/ -w /workspace/vllm/benchmarks/ -e HF_TOKEN=$(cat hf_token.txt) \
# rocm/vllm:rocm6.3.1_instinct_vllm0.8.3_20250410 \
# python benchmark_serving.py \
# --model {model_name} --backend vllm --base-url "http://{server_name}:{port}" \
# --dataset-name "random" --random-input-len {input_len} --random-output-len {output_len} --random-prefix-len 0 \
# --num-prompts $(( {max_concurrency} * 10 )) --max-concurrency {max_concurrency} --request-rate "inf" --ignore-eos \
# --save-result --result-dir "/workspace/results/" --result-filename "{result_filename}.json" --percentile-metrics "ttft,tpot,itl,e2el"
# docker stop {server_name}; docker network rm {network_name}
# sleep 60
# '''
# subprocess.run(script, shell=True, check=True)
if args.gpu == 'mi300x':
max_num_batched_tokens = 65536
# for input_len, output_len in [(1024, 1024), (1024, 4096), (4096, 1024)]:
# for input_len, output_len in [(3200, 800), (1024, 2048), ]:
# for input_len, output_len in list(reversed([(3200, 800), (1024, 2048), ])):
#for input_len, output_len in [(1024, 2048), ]:
t_s = time.time()
# LLaMA 70B
# for tp_size in [2, 4, 8]:
for tp_size in [4, ]:
for max_concurrency in [128, ]:
# for qps in [1, 2, 4, 6, 8, 10, 12, 14, 16]:
# for qps in list(reversed([0.1, 0.2, 0.4, 0.6, 0.8, 1.0, 1.2, 1.4, 1.6, 1.8, 2.0])):
# for qps in [0.1, 0.2, 0.4, 0.6, 0.8, 1.0, 1.2, 1.4, 1.6, 1.8, 2.0]:
# for qps in list(reversed([1, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32])):
for qps in [1, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32]:
launch_bmk_llama('/models/amd_Llama-3.3-70B-Instruct-FP8-KV', tp_size, max_concurrency, max_num_batched_tokens, qps)
# # LLaMA 405B FP8
# for tp_size in [4, 8]:
# for max_concurrency in [128, ]:
# for qps in [1, 2, 4, 6, 8, 10, 12, 14, 16]:
# launch_bmk_llama('/models/amd_Llama-3.1-405B-Instruct-FP8-KV', input_len, output_len, tp_size, max_concurrency, max_num_batched_tokens, qps)
# # DeepseekV3
# tp_size = 8
# for max_concurrency in [4, 8, 16, 32, 64, 128, 256]:
# launch_bmk_deepseek(input_len, output_len, tp_size, max_concurrency)
t_e = time.time()
if not args.print_results:
print(f'BENCHMARK TIME ELAPSED: {((t_e - t_s) / 60.0):.2f} minutes')
else:
raise ValueError(f'Unknown GPU {args.gpu}')