[AMD][MI35X] Qwen3.5-fp8 SGLang single-node benchmark #2626
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PR Recipe Reminder | |
| on: | |
| pull_request: | |
| types: [opened, reopened, ready_for_review, review_requested] | |
| paths: | |
| - '.github/configs/amd-master.yaml' | |
| - '.github/configs/nvidia-master.yaml' | |
| - 'benchmarks/**' | |
| - 'perf-changelog.yaml' | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| comment: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Comment recipe reminder | |
| uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 | |
| with: | |
| script: | | |
| const owner = context.repo.owner; | |
| const repo = context.repo.repo; | |
| const issue_number = context.payload.pull_request.number; | |
| // Check if we already left this comment to avoid duplicates | |
| const comments = await github.rest.issues.listComments({ owner, repo, issue_number }); | |
| const marker = '<!-- recipe-reminder -->'; | |
| const alreadyCommented = comments.data.some(c => c.body.includes(marker)); | |
| if (alreadyCommented) { | |
| core.info('Recipe reminder already posted, skipping.'); | |
| return; | |
| } | |
| const body = `${marker} | |
| Thanks for the contribution! For vLLM & SGLang, please ensure that your recipes is similar to the official vLLM recipes and/or the SGLang cookbook | |
| - https://docs.sglang.io/cookbook/intro | |
| - https://recipes.vllm.ai/ | |
| 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 | |
| - https://github.com/vllm-project/recipes | |
| - https://github.com/sgl-project/sglang/tree/main/docs_new | |
| **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](https://github.com/SemiAnalysisAI/InferenceX/blob/main/.github/CODEOWNERS) before requesting a review from core maintainers. | |
| If additional help is needed, PR authors can reach out to core maintainers over Slack.`.replace(/^ /gm, ''); | |
| await github.rest.issues.createComment({ owner, repo, issue_number, body }); |