Skip to content
This repository was archived by the owner on Apr 20, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/srtctl/benchmarks/scripts/sa-bench/bench.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ IS_DISAGGREGATED=${8:-false}
TOTAL_GPUS=${9:-0}
PREFILL_GPUS=${10:-0}
DECODE_GPUS=${11:-0}
RANDOM_RANGE_RATIO=${12:-0.8}

# Parse endpoint into host:port
HOST=$(echo "$ENDPOINT" | sed 's|http://||' | cut -d: -f1)
Expand Down Expand Up @@ -60,7 +61,7 @@ for concurrency in "${CONCURRENCY_LIST[@]}"; do
--num-prompts "$num_warmup_prompts" \
--random-input-len "$ISL" \
--random-output-len "$OSL" \
--random-range-ratio 0.8 \
--random-range-ratio "${RANDOM_RANGE_RATIO}" \
--ignore-eos \
--request-rate 250 \
--percentile-metrics ttft,tpot,itl,e2el \
Expand All @@ -87,7 +88,7 @@ for concurrency in "${CONCURRENCY_LIST[@]}"; do
--num-prompts "$num_prompts" \
--random-input-len "$ISL" \
--random-output-len "$OSL" \
--random-range-ratio 0.8 \
--random-range-ratio "${RANDOM_RANGE_RATIO}" \
--ignore-eos \
--request-rate "${REQ_RATE}" \
--percentile-metrics ttft,tpot,itl,e2el \
Expand Down
Loading