Skip to content

[Handoff to @Oseltamivir Claude /loop] [Klaud Cold] Add dsr1-fp8-mi355x-sglang-mtp single-node MTP recipe#1521

Merged
Oseltamivir merged 5 commits into
mainfrom
add-dsr1-fp8-mi355x-sglang-mtp
May 21, 2026
Merged

[Handoff to @Oseltamivir Claude /loop] [Klaud Cold] Add dsr1-fp8-mi355x-sglang-mtp single-node MTP recipe#1521
Oseltamivir merged 5 commits into
mainfrom
add-dsr1-fp8-mi355x-sglang-mtp

Conversation

@functionstackx
Copy link
Copy Markdown
Collaborator

Summary

Add the single-node MTP/EAGLE speculative-decoding sibling for the existing dsr1-fp8-mi355x-sglang recipe.

Field Value
Recipe key dsr1-fp8-mi355x-sglang-mtp
Model deepseek-ai/DeepSeek-R1-0528 (same as the off sibling)
Image lmsysorg/sglang:v0.5.12-rocm700-mi35x (same as the off sibling)
Search space tp=8 ep=1 conc 4..64 spec-decoding=mtp on 1k1k + 8k1k

Launch script

benchmarks/single_node/dsr1_fp8_mi355x_mtp.sh clones the off variant (dsr1_fp8_mi355x.sh) and adds, modeled on the production dsr1_fp8_mi325x_mtp.sh template:

  • --ep-size $EP_SIZE
  • --speculative-algorithm EAGLE --speculative-num-steps 3 --speculative-eagle-topk 1 --speculative-num-draft-tokens 4
  • Env vars: SGLANG_AITER_MLA_PERSIST=1, SGLANG_ENABLE_SPEC_V2=1
  • --use-chat-template on the bench client

Test plan

  • YAML loads; bash -n syntax passes on the new launch script.
  • full-sweep-enabled sweep finishes green on mi355x for tp=8 ep=1 conc 4..64 spec-decoding=mtp / 1k1k + 8k1k.

New MTP/EAGLE speculative-decoding sibling for the existing
dsr1-fp8-mi355x-sglang recipe.

  Recipe key: dsr1-fp8-mi355x-sglang-mtp
  Model:      deepseek-ai/DeepSeek-R1-0528 (same as sibling)
  Image:      lmsysorg/sglang:v0.5.12-rocm700-mi35x (same as sibling)
  Search:     tp=8 ep=1 conc 4..64 spec-decoding=mtp on 1k1k + 8k1k

Launch script benchmarks/single_node/dsr1_fp8_mi355x_mtp.sh clones the
off variant (dsr1_fp8_mi355x.sh) and adds:
  --ep-size $EP_SIZE
  --speculative-algorithm EAGLE
  --speculative-num-steps 3
  --speculative-eagle-topk 1
  --speculative-num-draft-tokens 4
plus SGLANG_AITER_MLA_PERSIST=1 / SGLANG_ENABLE_SPEC_V2=1 env vars and
--use-chat-template on the bench client (mirrors dsr1_fp8_mi325x_mtp.sh,
the production sglang MTP template).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@github-actions
Copy link
Copy Markdown
Contributor

Thanks for the contribution! For vLLM & SGLang, please ensure that your recipes is similar to the official vLLM recipes and/or the SGLang cookbook

If it is not, please create a PR first before we can merge your single node PR into the master branch. Let's ensure that the documentation is first class such that the entire ML community can benefit from your hard work! Thank you

PR authors are responsible for ensuring that after merging, all GitHub Action jobs fully pass. A lot of the time, failures are just flakes and simply re-running the failed jobs will fix it. If re-running failed jobs is attempted, PR authors are responsible for ensuring it passes. See GitHub's docs on re-running failed jobs: https://docs.github.com/en/actions/how-tos/manage-workflow-runs/re-run-workflows-and-jobs#re-running-failed-jobs-in-a-workflow

As a rule of thumb, generally, PR authors should request a review & get a PR approval from the respective companies' CODEOWNERS before requesting a review from core maintainers.

If additional help is needed, PR authors can reach out to core maintainers over Slack.

@github-actions
Copy link
Copy Markdown
Contributor

Thanks for the contribution! For vLLM & SGLang, please ensure that your recipes is similar to the official vLLM recipes and/or the SGLang cookbook

If it is not, please create a PR first before we can merge your single node PR into the master branch. Let's ensure that the documentation is first class such that the entire ML community can benefit from your hard work! Thank you

PR authors are responsible for ensuring that after merging, all GitHub Action jobs fully pass. A lot of the time, failures are just flakes and simply re-running the failed jobs will fix it. If re-running failed jobs is attempted, PR authors are responsible for ensuring it passes. See GitHub's docs on re-running failed jobs: https://docs.github.com/en/actions/how-tos/manage-workflow-runs/re-run-workflows-and-jobs#re-running-failed-jobs-in-a-workflow

As a rule of thumb, generally, PR authors should request a review & get a PR approval from the respective companies' CODEOWNERS before requesting a review from core maintainers.

If additional help is needed, PR authors can reach out to core maintainers over Slack.

Copy link
Copy Markdown
Contributor

@claude claude Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM — additive single-node MTP recipe that mirrors the existing dsr1_fp8_mi325x_mtp.sh template.

Extended reasoning...

Overview

The PR adds a new dsr1-fp8-mi355x-sglang-mtp recipe entry consisting of three small additions: a YAML config block in .github/configs/amd-master.yaml, a new launch script benchmarks/single_node/dsr1_fp8_mi355x_mtp.sh, and a corresponding entry in perf-changelog.yaml. The change is purely additive — no existing recipes or scripts are modified.

Security risks

None. This PR contains only benchmark configuration data and a shell launch script that runs within an isolated benchmark container. No auth, crypto, permissions, networking changes, or anything else security-sensitive is touched.

Level of scrutiny

Low. This is a routine recipe addition that follows a well-established pattern: it clones dsr1_fp8_mi355x.sh and adds the same EAGLE speculative-decoding flags, env vars (SGLANG_AITER_MLA_PERSIST=1, SGLANG_ENABLE_SPEC_V2=1), --ep-size, and --use-chat-template that the production dsr1_fp8_mi325x_mtp.sh recipe already uses. The YAML block matches the structure of the sister entries (qwen3.5-bf16-mi355x-sglang-mtp, dsr1-fp8-mi325x-sglang-mtp, etc.) in the same file.

Other factors

The bug-hunting system found no issues. The PR includes a clear test plan (YAML loads, bash -n passes), and the full-sweep-enabled label will exercise the sweep on CI. Worst case for a bad recipe is a failing sweep that gets re-run or reverted — it cannot impact other recipes or production code paths.

@github-actions
Copy link
Copy Markdown
Contributor

2 similar comments
@github-actions
Copy link
Copy Markdown
Contributor

@github-actions
Copy link
Copy Markdown
Contributor

@functionstackx functionstackx changed the title [Klaud Cold] Add dsr1-fp8-mi355x-sglang-mtp single-node MTP recipe [Handoff to @Oseltamivir Claude /loop] [Klaud Cold] Add dsr1-fp8-mi355x-sglang-mtp single-node MTP recipe May 20, 2026
@github-actions
Copy link
Copy Markdown
Contributor

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions
Copy link
Copy Markdown
Contributor

@Oseltamivir
Copy link
Copy Markdown
Collaborator

/reuse-sweep-run

@Oseltamivir Oseltamivir merged commit c178e28 into main May 21, 2026
31 checks passed
@Oseltamivir Oseltamivir deleted the add-dsr1-fp8-mi355x-sglang-mtp branch May 21, 2026 01:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

Development

Successfully merging this pull request may close these issues.

2 participants