Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion benchmarks/single_node/qwen3.5_bf16_mi300x.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ python3 -m sglang.launch_server \
--port $PORT \
--tensor-parallel-size $TP \
--trust-remote-code \
--mem-fraction-static 0.8 $EVAL_CONTEXT_ARGS > $SERVER_LOG 2>&1 &
--mem-fraction-static 0.8 \
--disable-radix-cache $EVAL_CONTEXT_ARGS > $SERVER_LOG 2>&1 &

SERVER_PID=$!

Expand Down
3 changes: 2 additions & 1 deletion benchmarks/single_node/qwen3.5_bf16_mi325x.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ python3 -m sglang.launch_server \
--port $PORT \
--tensor-parallel-size $TP \
--trust-remote-code \
--mem-fraction-static 0.8 $EVAL_CONTEXT_ARGS > $SERVER_LOG 2>&1 &
--mem-fraction-static 0.8 \
--disable-radix-cache $EVAL_CONTEXT_ARGS > $SERVER_LOG 2>&1 &

SERVER_PID=$!

Expand Down
3 changes: 2 additions & 1 deletion benchmarks/single_node/qwen3.5_fp8_mi300x.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ python3 -m sglang.launch_server \
--port $PORT \
--tensor-parallel-size $TP \
--trust-remote-code \
--mem-fraction-static 0.8 $EVAL_CONTEXT_ARGS > $SERVER_LOG 2>&1 &
--mem-fraction-static 0.8 \
--disable-radix-cache $EVAL_CONTEXT_ARGS > $SERVER_LOG 2>&1 &

SERVER_PID=$!

Expand Down
3 changes: 2 additions & 1 deletion benchmarks/single_node/qwen3.5_fp8_mi325x.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ python3 -m sglang.launch_server \
--port $PORT \
--tensor-parallel-size $TP \
--trust-remote-code \
--mem-fraction-static 0.8 $EVAL_CONTEXT_ARGS > $SERVER_LOG 2>&1 &
--mem-fraction-static 0.8 \
--disable-radix-cache $EVAL_CONTEXT_ARGS > $SERVER_LOG 2>&1 &

SERVER_PID=$!

Expand Down
9 changes: 9 additions & 0 deletions perf-changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1189,3 +1189,12 @@
- "Separate evals, change to 8k1k, fail loudly, 5-shot, top of curve & middle of curve"
pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/911
evals-only: true

- config-keys:
- qwen3.5-bf16-mi300x-sglang
- qwen3.5-bf16-mi325x-sglang
- qwen3.5-fp8-mi300x-sglang
- qwen3.5-fp8-mi325x-sglang
description:
- "Add --disable-radix-cache to SGLang server launch command for qwen3.5 MI300X and MI325X benchmark scripts"
pr-link: https://github.com/SemiAnalysisAI/InferenceX/pull/970
Loading