Skip to content

Commit 7b940f8

Browse files
committed
fix(agentic): derive B300 MTP GPU count from topology
1 parent 0b46ecb commit 7b940f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

benchmarks/single_node/agentic/dsv4_fp4_b300_vllm_mtp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ if [ "$PCP_SIZE" -gt 1 ]; then
3535
VLLM_CP_ARGS+=(--prefill-context-parallel-size "$PCP_SIZE")
3636
fi
3737

38-
GPU_COUNT="${GPU_COUNT:-$((TP * PCP_SIZE))}"
38+
GPU_COUNT=$((TP * PCP_SIZE))
3939
if [[ ! "$GPU_COUNT" =~ ^[1-9][0-9]*$ ]]; then
4040
echo "Error: GPU_COUNT must be a positive integer, got '$GPU_COUNT'" >&2
4141
exit 1

0 commit comments

Comments
 (0)