-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[https://nvbugs/5543035][chore] Test on main #8906
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -96,7 +96,7 @@ l0_rtx_pro_6000: | |
| # - accuracy/test_llm_api_pytorch.py::TestDeepSeekV3Lite::test_nvfp4_4gpus_online_eplb[fp8kv=True] # Verify GDRCopy availability on Blossom pods | ||
| # - accuracy/test_llm_api_pytorch.py::TestDeepSeekV3Lite::test_bfloat16_4gpus_online_eplb[mtp_nextn=2] # Verify GDRCopy availability on Blossom pods | ||
| # - accuracy/test_disaggregated_serving.py::TestQwen3_8B::test_auto_dtype[False] # hopper only | ||
| # - accuracy/test_disaggregated_serving.py::TestQwen3_8B::test_auto_dtype[True] | ||
| - accuracy/test_disaggregated_serving.py::TestQwen3_8B::test_auto_dtype[True] | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chainVerify the scope of changes matches the AI summary. The AI summary claims the test is uncommented "across two locations," but the annotated code shows only one marked change at line 99. Confirm whether this is the only modification or if another location was changed outside the provided context. 🏁 Script executed: #!/bin/bash
# Description: Verify all uncommented occurrences of TestQwen3_8B::test_auto_dtype[True] in l0_rtx_pro_6000.yml
# Find all non-commented occurrences of the test
rg -n 'TestQwen3_8B::test_auto_dtype\[True\]' tests/integration/test_lists/test-db/l0_rtx_pro_6000.yml | grep -v '^\s*#'
# Also show surrounding context to confirm uncommenting
rg -B2 -A2 'TestQwen3_8B::test_auto_dtype\[True\]' tests/integration/test_lists/test-db/l0_rtx_pro_6000.ymlLength of output: 624 🏁 Script executed: #!/bin/bash
# Get precise line numbers and full context for all occurrences
cat -n tests/integration/test_lists/test-db/l0_rtx_pro_6000.yml | grep -A5 -B5 'TestQwen3_8B::test_auto_dtype\[True\]'Length of output: 88 Length of output: 3083 🏁 Script executed: #!/bin/bash
# Search entire file for all uncommented occurrences of the test
echo "=== All lines matching test_auto_dtype[True] (excluding comments) ==="
rg -n 'TestQwen3_8B::test_auto_dtype\[True\]' tests/integration/test_lists/test-db/l0_rtx_pro_6000.yml | grep -v '^\s*#'
echo ""
echo "=== Total count of uncommented occurrences ==="
rg -n 'TestQwen3_8B::test_auto_dtype\[True\]' tests/integration/test_lists/test-db/l0_rtx_pro_6000.yml | grep -v '^\s*#' | wc -lLength of output: 202 Remove incorrect AI summary claim and add required explanation for the uncommented test. Verification confirms the AI summary is incorrect: there is only ONE uncommented instance at line 99, not "across two locations." However, this uncommented test lacks explanation or context. Related code (line 98) includes a helpful inline comment ("# hopper only"), but the newly uncommented test has no annotation explaining why it's being re-enabled in response to NVBUG 5543035. Add an inline comment clarifying the reason for uncommenting this test case. 🤖 Prompt for AI Agents |
||
| - accuracy/test_disaggregated_serving.py::TestDeepSeekV3Lite::test_guided_decoding[xgrammar-mtp_nextn=0] | ||
| - accuracy/test_disaggregated_serving.py::TestDeepSeekV3Lite::test_guided_decoding[xgrammar-mtp_nextn=2] | ||
| - accuracy/test_disaggregated_serving.py::TestDeepSeekV3Lite::test_guided_decoding[llguidance-mtp_nextn=0] | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add context explaining why the flaky test is being re-enabled.
The uncommented test at line 99 lacks an inline comment explaining the fix or rationale, unlike nearby entries (e.g., line 98's "# hopper only" or lines 96–97's GDRCopy notes). This makes it unclear whether the underlying flaky condition has been resolved or if this is experimental re-enablement. Add a comment clarifying the fix strategy.
Suggested fix:
📝 Committable suggestion
🤖 Prompt for AI Agents