Skip to content

Commit 5600f84

Browse files
launch_gb300-nv.sh: check out srt-slurm main (not sa-submission-q2-2026) for dsv4+dynamo-sglang
The new 1k/1k STP recipes use benchmark: {type: custom, command: ...}, a schema feature that only exists on NVIDIA/srt-slurm main. Pinning sa-submission-q2-2026 caused srtctl to reject the recipe with "Invalid config ... {'benchmark': {'command': ['Unknown field.']}}" before any benchmark could run (see failing sweep run 28977862941). Same launcher fix PR #1697 already carries; applying it here so the dynamo-sglang + dsv4 elif clones NVIDIA/srt-slurm@main.
1 parent 437b56b commit 5600f84

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

runners/launch_gb300-nv.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,13 @@ elif [[ $FRAMEWORK == "dynamo-vllm" && $MODEL_PREFIX == "dsv4" ]]; then
162162
mkdir -p recipes/vllm/deepseek-v4
163163
cp -rT "$GITHUB_WORKSPACE/benchmarks/multi_node/srt-slurm-recipes/vllm/deepseek-v4" recipes/vllm/deepseek-v4
164164
elif [[ $FRAMEWORK == "dynamo-sglang" && $MODEL_PREFIX == "dsv4" ]]; then
165+
# NVIDIA HEAD (main), not sa-submission-q2-2026 — the new 1k/1k STP recipes
166+
# use benchmark: {type: custom, command: ...}, a schema feature that only
167+
# exists on main. sa-submission-q2-2026 rejects it with
168+
# "Invalid config … {'benchmark': {'command': ['Unknown field.']}}".
165169
git clone https://github.com/NVIDIA/srt-slurm.git "$SRT_REPO_DIR"
166170
cd "$SRT_REPO_DIR"
167-
git checkout sa-submission-q2-2026
171+
git checkout main
168172
mkdir -p recipes/sglang/deepseek-v4
169173
cp -rT "$GITHUB_WORKSPACE/benchmarks/multi_node/srt-slurm-recipes/sglang/deepseek-v4" recipes/sglang/deepseek-v4
170174
elif [[ $FRAMEWORK == "dynamo-sglang" && $MODEL_PREFIX == "glm5" ]]; then

0 commit comments

Comments
 (0)