Changing model_path to dsr1-fp8 for consistency for all STP SGLANg ac…#151
Changing model_path to dsr1-fp8 for consistency for all STP SGLANg ac…#151
Conversation
…ross GB200 and GB300
|
Caution Review failedThe pull request is closed. 📝 WalkthroughWalkthroughUpdated Changes
Sequence Diagram(s)(omitted — changes do not introduce new multi-component control flow) Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@recipes/gb300-fp8/8k1k/stp/max.yaml`:
- Around line 5-6: Several files still reference the old model path "dsfp8"
while this recipe uses "dsr1-fp8"; search the repo for all occurrences of
"dsfp8" (the 27 reported files across H100, GB200-fp8 MTP, and GB300-fp8 MTP
variants) and update them to "dsr1-fp8" where appropriate to match this PR, or
add a clear comment in the specific files that must remain on "dsfp8" explaining
why they differ; ensure you update any YAML keys, model.path references, and
documentation strings referencing "dsfp8" so they consistently use "dsr1-fp8"
(or justify exceptions).
| model: | ||
| path: "dsfp8" | ||
| path: "dsr1-fp8" |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Check for any remaining references to the old "dsfp8" model path
echo "=== Files still referencing 'dsfp8' ==="
rg -rn 'dsfp8' --type yaml
echo ""
echo "=== All model path values in recipes/ for comparison ==="
rg -n 'path:' --type yaml -g 'recipes/**' | head -50Repository: ishandhanani/srt-slurm
Length of output: 6155
🏁 Script executed:
#!/bin/bash
# More explicit search for the literal string "dsfp8"
echo "=== Direct literal search for 'dsfp8' ==="
rg 'dsfp8' --type yaml
echo ""
echo "=== GB300 fp8 recipes with STP variant ==="
fd . recipes/gb300-fp8 -type f -name "*.yaml" | grep stp
echo ""
echo "=== GB200 fp8 recipes with STP variant ==="
fd . recipes/gb200-fp8 -type f -name "*.yaml" | grep stpRepository: ishandhanani/srt-slurm
Length of output: 2205
Address remaining dsfp8 references across the codebase.
The PR changes GB300-fp8 STP variants to use "dsr1-fp8", but 27 files still reference the old "dsfp8" path: 13 H100 files, 8 GB200-fp8 MTP files, and 6 GB300-fp8 MTP files. To achieve consistency across hardware variants and FP8 recipes as claimed in the PR title, update all stale references or clarify why certain variants should remain on the old path.
🤖 Prompt for AI Agents
In `@recipes/gb300-fp8/8k1k/stp/max.yaml` around lines 5 - 6, Several files still
reference the old model path "dsfp8" while this recipe uses "dsr1-fp8"; search
the repo for all occurrences of "dsfp8" (the 27 reported files across H100,
GB200-fp8 MTP, and GB300-fp8 MTP variants) and update them to "dsr1-fp8" where
appropriate to match this PR, or add a clear comment in the specific files that
must remain on "dsfp8" explaining why they differ; ensure you update any YAML
keys, model.path references, and documentation strings referencing "dsfp8" so
they consistently use "dsr1-fp8" (or justify exceptions).
…ross GB200 and GB300
Summary by CodeRabbit