File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -303,6 +303,23 @@ if [[ "$IS_AGENTIC" == "1" ]]; then
303303 echo " Error: NVIDIA/srt-slurm v1.0.27 did not resolve to $SRT_SLURM_AGENTIC_SHA " >&2
304304 exit 1
305305 fi
306+
307+ # ai-dynamo/dynamo#11303.
308+ DYNAMO_SCHEMA=" src/srtctl/core/schema.py"
309+ DYNAMO_UPSTREAM_HASH_CLONE=' f"git clone https://github.com/ai-dynamo/dynamo.git && "'
310+ DYNAMO_FORK_HASH_CLONE=' f"git clone https://github.com/esmeetu/dynamo.git && "'
311+ if [[ " $( grep -Fxc " $DYNAMO_UPSTREAM_HASH_CLONE " " $DYNAMO_SCHEMA " ) " != " 1" ]]; then
312+ echo " Error: Could not uniquely locate srt-slurm's hash-pinned Dynamo clone command" >&2
313+ exit 1
314+ fi
315+ sed -i \
316+ ' s#f"git clone https://github\.com/ai-dynamo/dynamo\.git && "#f"git clone https://github.com/esmeetu/dynamo.git \&\& "#' \
317+ " $DYNAMO_SCHEMA " || exit 1
318+ if [[ " $( grep -Fxc " $DYNAMO_FORK_HASH_CLONE " " $DYNAMO_SCHEMA " ) " != " 1" ]]; then
319+ echo " Error: Failed to redirect the hash-pinned Dynamo clone to esmeetu/dynamo" >&2
320+ exit 1
321+ fi
322+
306323 mkdir -p recipes/vllm/deepseek-v4/agentic || exit 1
307324 cp -rT " $GITHUB_WORKSPACE /benchmarks/multi_node/srt-slurm-recipes/vllm/deepseek-v4/agentic" \
308325 recipes/vllm/deepseek-v4/agentic || exit 1
You can’t perform that action at this time.
0 commit comments