[https://nvbugs/6566734][test] Unwaive test_disaggregated_qwen3_32b_fp8 and accept both greedy completions - #18319
Conversation
…p8 and accept both greedy completions The qwen3_32b_fp8 disagg check required the exact substring "Asyncio in Python is a library" in the completion of a raw greedy prompt whose top-2 first tokens are near-tied: the model either answers the question or continues it. Post-merge builds 2886/2887 (DGX_H200) produced the question-continuation byte-identically and failed; the test was then waived. Accept either observed completion via the check's existing any-of list (same shape as PR NVIDIA#6301) and remove the waive. Signed-off-by: Michal Guzek <mguzek@nvidia.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Enterprise Run ID: 📒 Files selected for processing (2)
💤 Files with no reviewable changes (1)
Included review availability: Your plan provides up to 12 included reviews per hour; 11 remain after this review. WalkthroughThe Qwen3 32B FP8 disaggregated integration test now accepts two valid completion responses and is removed from the skipped-test list. ChangesQwen3 FP8 test enablement
Estimated code review effort: 1 (Trivial) | ~5 minutes Merge Risk: ⚪ Minimal · up to The PR updates one disaggregated test to accept its two known-good greedy completions and removes the waiver; no actionable merge-blocking risk remains beyond normal checks. Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
/bot run --extra-stage "DGX_H200-8_GPUs-PyTorch-Post-Merge-1" |
|
PR_Github #69801 [ run ] triggered by Bot. Commit: |
|
PR_Github #69801 [ run ] completed with state
|
|
/bot run --extra-stage "DGX_H200-8_GPUs-PyTorch-Post-Merge-1" |
|
PR_Github #69982 [ run ] triggered by Bot. Commit: |
|
PR_Github #69982 [ run ] completed with state |
Dev Engineer Review
qwen3_32b_fp8output validation to accept both known-good greedy completion starts.tests/integration/test_lists/waives.txt.QA Engineer Review
test_disaggregated_qwen3_32b_fp8[Qwen3/Qwen3-32B-FP8].tests/integration/test_lists/waives.txt; its waiver entry was removed.Description
disaggregated/test_disaggregated.py::test_disaggregated_qwen3_32b_fp8[Qwen3/Qwen3-32B-FP8]failed in post-merge builds 2886 and 2887 onDGX_H200-8_GPUs-PyTorch-Post-Merge-1and was auto-waived in #17340 (nvbugs/6566734).Root cause: the test's output verification requires the exact substring
"Asyncio in Python is a library"in the completion of the raw prompt"What are the benefits of using asyncio in Python?"(greedy,temperature=0,--ignore-eos, 100 tokens). That prompt sits on a near-tie between two greedy continuations:" Asyncio in Python is a library..."— answers the question" I have read that it is used for asynchronous programming..."— continues the question; a coherent, on-topic raw completionBoth failing CI runs produced byte-identical mode-B text, and the other four prompts' completions were byte-identical to each other and healthy (no corruption; the
"Berlin Berlin"canary absent). The 5 prompts are sent concurrently (asyncio.gatherindisagg_client.py) into a 4x(ctx TP1) + 1x(gen TP4) cluster with Eagle3 speculation and FP8 KV cache, so batch composition — and therefore kernel-level numerics — is not run-invariant; a near-tied top-2 first token can legitimately flip.The fix mirrors the existing precedent for
deepseek_v3_lite(#6301, nvbugs/5390810): accept either known-good greedy completion via the check's existing any-of list mechanism, and remove the waive.Test Coverage
disaggregated/test_disaggregated.py::test_disaggregated_qwen3_32b_fp8[Qwen3/Qwen3-32B-FP8]— unwaived by this PR (post-mergel0_dgx_h200).output.jsoncontents captured from both failing CI runs (2886, 2887), while the old check reproduces the CI assertion on both./bot run --extra-stage "DGX_H200-8_GPUs-PyTorch-Post-Merge-1"(as a multi-GPU stage on a PR this additionally requires theci: full pre-merge approvedlabel from an NVIDIA/trt-llm-ci-approvers member).PR Checklist
Please review the following before submitting your PR:
PR description clearly explains what and why. If using CodeRabbit's summary, please make sure it makes sense.
PR Follows TRT-LLM CODING GUIDELINES to the best of your knowledge.
Test cases are provided for new code paths (see test instructions)
If PR introduces API changes, an appropriate PR label is added - either
api-compatibleorapi-breaking. Forapi-breaking, includeBREAKINGin the PR title.Any new dependencies have been scanned for license and vulnerabilities
CODEOWNERS updated if ownership changes
Documentation updated as needed
Update tava architecture diagram if there is a significant design change in PR.
The reviewers assigned automatically/manually are appropriate for the PR.
Please check this after reviewing the above items as appropriate for this PR.
GitHub Bot Help
To see a list of available CI bot commands, please comment
/bot help.🤖 Generated with Claude Code