Skip to content

Commit 0f1cc88

Browse files
committed
set warmup-requests default is 1
1 parent ef9dc33 commit 0f1cc88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/sglang/multimodal_gen/benchmarks/bench_serving.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -991,15 +991,15 @@ async def limited_request_func(req, session, pbar):
991991
parser.add_argument(
992992
"--warmup-requests",
993993
type=int,
994-
default=0,
994+
default=1,
995995
help="Number of warmup requests to run before the benchmark. "
996-
"Warmup requests are not profiled. Default is 0 (no warmup).",
996+
"Default is 1 (warmup request).",
997997
)
998998
parser.add_argument(
999999
"--profile",
10001000
action="store_true",
10011001
help="Enable full pipeline profiling. "
1002-
"Traces are saved to the server's SGLANG_TORCH_PROFILER_DIR (default: ./logs/). ",
1002+
"Traces are saved to the server's SGLANG_TORCH_PROFILER_DIR.",
10031003
)
10041004
parser.add_argument(
10051005
"--log-level",

0 commit comments

Comments
 (0)