Skip to content

[https://nvbugs/6501404][fix] Request the output window only when bufferSizeBytes >= minRegistrationThreshold - #16911

Open
trtllm-agent wants to merge 5 commits into
NVIDIA:mainfrom
tensorrt-cicd:repair-bot-bug6501404
Open

[https://nvbugs/6501404][fix] Request the output window only when bufferSizeBytes >= minRegistrationThreshold#16911
trtllm-agent wants to merge 5 commits into
NVIDIA:mainfrom
tensorrt-cicd:repair-bot-bug6501404

Conversation

@trtllm-agent

@trtllm-agent trtllm-agent commented Jul 27, 2026

Copy link
Copy Markdown
Collaborator

Summary

This PR updates the NCCL symmetric allreduce path so the output tensor no longer unconditionally requests a window-backed allocation.

Previously, runNCCLAllReduceSymmetric() applied the registration threshold when deciding whether to copy the input into a new window, but always called createNCCLWindowTensor() for the output. Small messages could skip that input allocation while still entering the output window allocation/registration path. Window allocation is a collective, so taking that path on some ranks and not others is the failure mode this change avoids.

The new behavior requests a window-backed output tensor only when:

  • bufferSizeBytes >= minRegistrationThreshold

If no valid output window is obtained, the existing torch::empty_like(...) fallback is used. The threshold still honors TLLM_NCCL_MIN_REGISTRATION.

This is not the same predicate as the input path. The input can already be window-backed for a sub-threshold message: searchBuffer() returns a valid windowBuffer0 when the caller reused a previously registered tensor, and that pointer is used as sendbuf regardless of size. The output gate does not include windowBuffer0.isValid(). In that case ncclAllReduce sees a registered send buffer and a plain recv buffer. All ranks still take the same branches when SPMD inputs match, so this is a send/recv mix on the symmetric kernel (possible degrade / fallback), not an unpaired createNCCLWindowTensor hang.

Test coverage

  • Marked test_row_linear_norm_fusion as post_merge.
  • Added the H100 2-GPU post-merge test-list entry:
    • unittest/_torch/multi_gpu -m "post_merge" TIMEOUT (90)
  • Removed the stale waiver for:
    • unittest/_torch/multi_gpu/test_linear.py::test_row_linear_norm_fusion[2-hidden:16-seqlen:2]

Test plan

  • Run the H100 2-GPU post-merge multi-GPU unittest stage, including test_row_linear_norm_fusion[2-hidden:16-seqlen:2].
  • Confirm sub-threshold messages no longer call createNCCLWindowTensor for the output.
  • Check for regressions in the NCCL symmetric allreduce path.

Links

Dev Engineer Review

  • Updated runNCCLAllReduceSymmetric to request the output window only when bufferSizeBytes >= minRegistrationThreshold. This is intentionally size-only and does not mirror the input's windowBuffer0.isValid() reuse path.
  • Preserved the torch::empty_like fallback when symmetric-memory allocation is unavailable.
  • Passed outputTensor.data_ptr() directly to ncclAllReduce.
  • Preserved the supported fast path and TLLM_NCCL_MIN_REGISTRATION behavior.
  • Removed the waiver for unittest/_torch/multi_gpu/test_linear.py::test_row_linear_norm_fusion[2-hidden:16-seqlen:2].
  • No public API or configuration changes.

QA Engineer Review

  • Removed one entry from tests/integration/test_lists/waives.txt.
  • The affected regression test is no longer skipped by this waiver.
  • CBTS coverage data is unavailable.
  • Verdict: needs follow-up.

@coderabbitai

coderabbitai Bot commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: b30ff5f3-48d9-45eb-817d-57bfb027f5bb

📥 Commits

Reviewing files that changed from the base of the PR and between 5ac2c94 and 9b71341.

📒 Files selected for processing (2)
  • cpp/tensorrt_llm/thop/allreduceOp.cpp
  • tests/integration/test_lists/waives.txt
🚧 Files skipped from review as they are similar to previous changes (2)
  • tests/integration/test_lists/waives.txt
  • cpp/tensorrt_llm/thop/allreduceOp.cpp

Walkthrough

runNCCLAllReduceSymmetric conditionally allocates a window-backed output tensor, falls back to a CUDA tensor when required, and passes the selected tensor to ncclAllReduce. A related integration-test waiver is removed.

Changes

Symmetric all-reduce output handling

Layer / File(s) Summary
Conditional output buffer allocation
cpp/tensorrt_llm/thop/allreduceOp.cpp, tests/integration/test_lists/waives.txt
Output window creation is gated by input-buffer validity or the registration threshold. Invalid or skipped allocation uses torch::empty_like(inputTensor). ncclAllReduce receives the selected tensor’s data pointer. The related test waiver is removed.

Estimated code review effort: 2 (Simple) | ~10 minutes

Suggested reviewers: crazydemo, niukuo, mzweilz, zongfeijing

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Title check ✅ Passed The title clearly identifies the bug fix and the main change: gating output-window requests by buffer size. It follows the repository’s NVBugs and fix-title format.
Description check ✅ Passed The description clearly explains the issue, solution, behavior for sub-threshold messages, fallback behavior, test coverage, and test plan. The repository checklist is not reproduced, but the core req…
Full details: Description check

Explanation

The description clearly explains the issue, solution, behavior for sub-threshold messages, fallback behavior, test coverage, and test plan. The repository checklist is not reproduced, but the core required information is complete.

✨ Finishing Touches 💡 1
⚔️ Resolve merge conflicts 💡
  • Resolve merge conflict in branch repair-bot-bug6501404
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🧹 Nitpick comments (1)
cpp/tensorrt_llm/thop/allreduceOp.cpp (1)

564-569: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Make the window allocation result const.

windowOutput and windowBuffer1 are never reassigned.

Proposed fix
-            auto [windowOutput, windowBuffer1] = createNCCLWindowTensor(rawComm, input.sizes(), input.scalar_type());
+            auto const [windowOutput, windowBuffer1]
+                = createNCCLWindowTensor(rawComm, input.sizes(), input.scalar_type());

As per coding guidelines, “declare unmodified variables const.”

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@cpp/tensorrt_llm/thop/allreduceOp.cpp` around lines 564 - 569, Declare the
structured-binding variables windowOutput and windowBuffer1 as const in the
createNCCLWindowTensor result within the surrounding allreduce operation,
preserving the existing validity check and outputTensor assignment.

Source: Coding guidelines

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@cpp/tensorrt_llm/thop/allreduceOp.cpp`:
- Around line 564-569: Declare the structured-binding variables windowOutput and
windowBuffer1 as const in the createNCCLWindowTensor result within the
surrounding allreduce operation, preserving the existing validity check and
outputTensor assignment.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 99f0fbf3-1e74-44af-92b9-b0dbc4a1acd8

📥 Commits

Reviewing files that changed from the base of the PR and between 9fe5853 and f74413d.

📒 Files selected for processing (1)
  • cpp/tensorrt_llm/thop/allreduceOp.cpp

@brnguyen2 brnguyen2 left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Making the output allocation follow the same gate as the input is the right consistency fix regardless of the bug — with a 64-byte tensor and a ~290 KB threshold at 2 ranks, the old code skipped registration for the input and then ran a full collective allocateAndRegisterBuffer for the output, which is both inconsistent and wasteful.

What I don't follow is the causal story. The failure in nvbugs/6501404 was on 2×H100, where NVLink is present, so minRegistrationThreshold is never SIZE_MAX on that path and the mechanism the new comment describes never fires there. allocateAndRegisterBuffer is also written specifically so every rank reaches the min-allreduce even when ncclMemAlloc fails asymmetrically. So this change plausibly removes a collective from the hot path, but it isn't shown to remove the one that hung — and the linked bug records that the failure could not be reproduced.

So I'd land the gating change on its own merits and keep the waiver until there's evidence the hang is actually gone. A concrete way to get that evidence without holding up this PR: open a separate draft PR that (a) removes the waiver, (b) adds instrumentation around the symmetric allreduce path (log per-rank windowBuffer0.isValid(), bufferSizeBytes, minRegistrationThreshold, and entry/exit of allocateAndRegisterBuffer), and (c) runs only the failing stage with the test list trimmed to test_row_linear_norm_fusion (and neighbors if needed) so repeated runs are cheap on capacity and turnaround. Re-run that until the hang reproduces; the instrumentation then tells you which rank diverged and why. Once you have a pre-fix hang and a post-fix pass on the same stage, dropping the waiver here is easy to justify.

Comment thread cpp/tensorrt_llm/thop/allreduceOp.cpp Outdated
// ncclAllReduce plus cudaStreamSynchronize inside allocateAndRegisterBuffer cannot
// complete, so allocating here unconditionally hangs every rank.
torch::Tensor outputTensor;
if (windowBuffer0.isValid() || bufferSizeBytes >= minRegistrationThreshold)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

This if guards a collective. createNCCLWindowTensorrequestBufferallocateAndRegisterBuffer does an ncclAllReduce on the sync flag plus ncclCommWindowRegister, so every rank has to make the same decision here or the ones that enter will wait forever for the ones that didn't.

Of the two operands, only one is safe in that role. bufferSizeBytes >= minRegistrationThreshold is computed from the same inputs on every rank, so it's uniform. windowBuffer0.isValid() is not: it comes from allocator.searchBuffer(comm, input.data_ptr()) or from a pool best-fit inside requestBuffer, both of which depend on rank-local allocator state. If the input ends up registered on rank 0 but not on rank 1 while the size is below the threshold, rank 0 calls the collective and rank 1 skips it — a hang that the old unconditional call could not produce.

If the intent is "the input is window-backed, so the output should be too", either gate on the rank-uniform condition alone, or add a comment explaining why windowBuffer0.isValid() is guaranteed to agree across ranks.

Comment thread cpp/tensorrt_llm/thop/allreduceOp.cpp Outdated
void* outputPtr = windowBuffer1.isValid() ? windowBuffer1.ptr : outputTensor.data_ptr();
if (!windowBuffer1.isValid())
// Use a window-backed output buffer under the same threshold gate as the input above.
// minRegistrationThreshold is SIZE_MAX without NVLink/MNNVL, where the collective

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

The comment explains the fix with a mechanism that can't apply to the reported failure. It says minRegistrationThreshold is SIZE_MAX without NVLink/MNNVL and that the collective inside allocateAndRegisterBuffer therefore can't complete — but the bug reproduced on 2×H100, which has NVLink, so that branch was never taken. allocateAndRegisterBuffer is also written so that all ranks reach the min-allreduce even when ncclMemAlloc fails on only some of them.

Suggest describing what the change actually does instead of asserting an unproven hang cause, e.g.: "Allocate an output window only when the input path also registered a window. This keeps window use all-or-nothing and lets small messages skip the registration collective entirely."

Comment thread tests/integration/test_lists/waives.txt Outdated
@@ -351,7 +351,6 @@ unittest/_torch/modules/moe/test_moe_backend.py::test_moe_backend[act=Relu2-e60_
unittest/_torch/modules/moe/test_moe_module.py::test_configurable_moe_single_gpu -k "TRTLLM" SKIP (https://nvbugs/6464169)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

The bug this waiver points at was never reproduced, and the fix above doesn't clearly explain the observed hang on 2×H100. Un-waiving here risks the pre-merge job going intermittently red again with no new information.

I'd keep the waiver until there's a run that hangs without this patch and passes with it. To get there cheaply: put the un-waive plus instrumentation of the symmetric allreduce path (per-rank windowBuffer0.isValid(), bufferSizeBytes, minRegistrationThreshold, entry/exit of allocateAndRegisterBuffer) in a throwaway draft PR, trim the test list for the failing stage down to this test, and run that stage repeatedly until it hangs. That keeps the capacity cost and turnaround per attempt low, and the logs will show which rank diverged. Then drop the waiver here with the before/after runs linked.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

@brnguyen2 is it okay to merge the PR first. If the hang issue still exists, we can re-open the bug.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Fair — the later commit marking the test post_merge changes my objection. With it out of the blocking pre-merge glob, un-waiving no longer risks turning pre-merge intermittently red, which was the whole basis for keeping the waiver. Merge it.

Two asks so this doesn't just go quiet: keep the bug open until a post-merge run on the 2-GPU H100 stage has actually exercised the un-waived test, and treat that stage as the signal rather than the pre-merge result on this PR. If it hangs again there, the reproduction data from that run is what we lacked the first time.

@kris1025

Copy link
Copy Markdown
Collaborator

/bot run

@kris1025
kris1025 requested a review from a team as a code owner August 10, 2026 05:07
@kris1025
kris1025 requested a review from crazydemo August 10, 2026 05:07
@coderabbitai

coderabbitai Bot commented Aug 10, 2026

Copy link
Copy Markdown
Contributor

Note

GitHub couldn't provide a complete incremental comparison for this pull request, so CodeRabbit is performing a full review instead. This review may take a little longer.

@kris1025

Copy link
Copy Markdown
Collaborator

/bot kill

@kris1025

Copy link
Copy Markdown
Collaborator

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #64957 [ run ] triggered by Bot. Commit: 28a72c6 Link to invocation

@kris1025 kris1025 self-assigned this Aug 10, 2026
@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #64957 [ run ] completed with state FAILURE. Commit: 28a72c6
/LLM/main/L0_MergeRequest_PR pipeline #52792 completed with status: 'FAILURE'

CI Report

⚠️ Action Required:

  • Please check the failed tests and fix your PR
  • If you cannot view the failures, ask the CI triggerer to share details
  • Once fixed, request an NVIDIA team member to trigger CI again

CI Agent Failure Analysis

Link to invocation

@kris1025

Copy link
Copy Markdown
Collaborator

/bot run

@kris1025

Copy link
Copy Markdown
Collaborator

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #67805 [ run ] triggered by Bot. Commit: c4470d6 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #67805 [ run ] completed with state SUCCESS. Commit: c4470d6
/LLM/main/L0_MergeRequest_PR pipeline #55285 completed with status: 'FAILURE'

CI Report

⚠️ Action Required:

  • Please check the failed tests and fix your PR
  • If you cannot view the failures, ask the CI triggerer to share details
  • Once fixed, request an NVIDIA team member to trigger CI again

CI Agent Failure Analysis

Link to invocation

@kris1025

Copy link
Copy Markdown
Collaborator

/bot run

@kris1025

Copy link
Copy Markdown
Collaborator

/bot kill

@kris1025
kris1025 force-pushed the repair-bot-bug6501404 branch from c4470d6 to 21c489f Compare August 23, 2026 09:57
@kris1025

Copy link
Copy Markdown
Collaborator

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #68563 [ run ] triggered by Bot. Commit: 6a57d86 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #68563 [ run ] completed with state SUCCESS. Commit: 6a57d86
/LLM/main/L0_MergeRequest_PR pipeline #55976 completed with status: 'FAILURE'

CI Report

⚠️ Action Required:

  • Please check the failed tests and fix your PR
  • If you cannot view the failures, ask the CI triggerer to share details
  • Once fixed, request an NVIDIA team member to trigger CI again

CI Agent Failure Analysis

Link to invocation

@crazydemo crazydemo left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Review summary - CONCERNS

Verdict: The C++ output-window gating is a reasonable consistency fix, but the PR's own validation is broken and it can't merge as-is: it is blocked/CHANGES_REQUESTED, the regression test for the bug it claims to fix stays waived, and it silently adds an unrelated waiver.

Issues

  • [MAJOR] tests/integration/test_lists/waives.txt:371 - 6501404 waiver NOT removed despite PR claim; the fix is never exercised
  • [MAJOR] tests/integration/test_lists/waives.txt:370 - new undocumented waiver for test_row_linear[2-balanced] (6507113)
  • [MINOR] cpp/tensorrt_llm/thop/allreduceOp.cpp:570 - output gate drops the windowBuffer0.isValid() branch the input path uses
  • [MINOR] cpp/tensorrt_llm/thop/allreduceOp.cpp:588 - collective now uses outputTensor.data_ptr() instead of windowBuffer1.ptr

QA view

  • Test coverage: missing - the validating test test_row_linear_norm_fusion[2-hidden:16-seqlen:2] is still SKIPped in waives.txt, so the post_merge marker and new l0_dgx_h100 entry never run it. The changed allreduce path has no active test.
  • SM coverage: touches the sm90 H100 NVLink symmetric-memory path; the intended test targets sm90 2-GPU but is blocked by the retained waiver, so no arch is actually validated.
  • Test code: contradictory (test both post_merge and waived); an unrelated waiver added instead of a fix; whole test demoted to post_merge rather than one parametrisation.
  • Test time: small - new 2-GPU post_merge stage with a 90-min timeout, post-merge only.
  • Needs /qa-verify: yes - the fix's regression test does not run, a new waive is introduced, and test-list infra changed.

Does this actually fix 6501404?

Unclear. The change makes the output allocation follow the same threshold gate as the input, which is a sound consistency improvement. But per reviewer brnguyen2 the 2xH100 config has NVLink, so minRegistrationThreshold is never SIZE_MAX on that path and the hang mechanism the comment implies never fires; the original failure was never reproduced. And because the 6501404 test remains waived, there is no run proving the hang is gone. So this lands the gating change on its own merits but does not verify the bug is fixed.

Possible new issues

  • If the input can be window-backed (windowBuffer0.isValid()) for a sub-threshold message, the input uses a registered symmetric pointer while the output falls back to a plain tensor — mixed registered/unregistered buffers on the symmetric path.
  • outputTensor.data_ptr() may not equal the previously-used registered windowBuffer1.ptr; if so NCCL writes to an unregistered address.

What I could not verify

  • The full input-side condition and whether windowBuffer0.isValid() can be true for sub-threshold messages (input block not shown in the diff).
  • Whether createNCCLWindowTensor guarantees windowOutput.data_ptr() == windowBuffer1.ptr.
  • Runtime behaviour of the symmetric allreduce with a mixed registered/plain buffer pair.

Automated review by NVCortex Lite, run by @crazydemo.

Comment thread tests/integration/test_lists/waives.txt Outdated
Comment thread tests/integration/test_lists/waives.txt Outdated
// registration threshold used by the input path. Smaller messages use a
// regular output tensor and skip the window allocation path.
torch::Tensor outputTensor;
if (bufferSizeBytes >= minRegistrationThreshold)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

[MINOR] Output gate drops the windowBuffer0.isValid() branch used by input

The output window is now requested only when bufferSizeBytes >= minRegistrationThreshold. The release notes describe the intended condition as windowBuffer0.isValid() || bufferSizeBytes >= minRegistrationThreshold, matching the input path. As written, if the input is window-backed (windowBuffer0 valid) but the message is below the threshold, the input uses a registered symmetric pointer while the output falls back to a plain torch::empty_like pointer. Mixing a registered send buffer with an unregistered recv buffer in runNCCLAllReduceSymmetric is exactly the asymmetry class this code is sensitive to and could degrade or misbehave on the symmetric kernel. Confirm whether the input path can be window-backed for sub-threshold messages; if so, mirror the full condition here.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

The description is updated now.

Comment thread cpp/tensorrt_llm/thop/allreduceOp.cpp

@crazydemo crazydemo left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Review summary - Approve (non-blocking)

Approving so this is not blocked on me. The points raised in my review comment above are non-blocking — please read them and address what you agree with before merging.

Worth doing before this is relied on: A bug fix whose regression test remains waived (so it does not reproduce or validate the original 6501404 hang), plus a newly added unrelated waiver and changes to test-list infrastructure. A human QA should confirm whether the 6501404 test should run and actually passes with the fix, and whether disabling test_row_linear[2-balanced] is intended.

Automated review by NVCortex Lite, run by @crazydemo.

@kris1025
kris1025 force-pushed the repair-bot-bug6501404 branch 3 times, most recently from 80cda7c to d9a01cc Compare August 26, 2026 08:58
@kris1025

Copy link
Copy Markdown
Collaborator

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #69417 [ run ] triggered by Bot. Commit: d9a01cc Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #69417 [ run ] completed with state FAILURE. Commit: d9a01cc
/LLM/main/L0_MergeRequest_PR pipeline #56752 completed with status: 'FAILURE'

CI Report

⚠️ Action Required:

  • Please check the failed tests and fix your PR
  • If you cannot view the failures, ask the CI triggerer to share details
  • Once fixed, request an NVIDIA team member to trigger CI again

CI Agent Failure Analysis

Link to invocation

HandongLi-01 and others added 4 commits August 31, 2026 09:40
…ration threshold

runNCCLAllReduceSymmetric allocated its window-backed output buffer with an
unconditional createNCCLWindowTensor, bypassing the minRegistrationThreshold
gate that the input path a few lines above already applies. That threshold is
set to SIZE_MAX when neither NVLink nor MNNVL is supported, so on such
topologies the collective ncclAllReduce plus cudaStreamSynchronize inside
allocateAndRegisterBuffer never completes and every rank hangs, which the CI
stage reports as "Test terminated unexpectedly".

Apply the same gate to the output allocation: request a window buffer only when
the input already obtained one or the message is at least as large as the
threshold. Gating on the threshold rather than on mIsNVLINKSupported /
mIsMNNVLSupported keeps the symmetric-memory fast path enabled wherever it
works and still honors TLLM_NCCL_MIN_REGISTRATION. The pre-existing
invalid-buffer fallback to torch::empty_like covers the skipped case, so no new
error path is introduced.

Signed-off-by: handongl <handongl@nvidia.com>
test_row_linear_norm_fusion needs 2 GPUs and has been flaky under
nvbugs/6501404. Mark it @pytest.mark.post_merge so it is dropped from the
blocking pre_merge 2-GPU glob (unittest/_torch/multi_gpu -m "not
post_merge") on l0_dgx_h100, and add a matching 2-GPU post_merge condition
block that collects it via -m "post_merge" so coverage is retained in the
non-blocking post_merge stage.

Signed-off-by: linquanh <linquanh@nvidia.com>
Signed-off-by: linquanh <linquanh@nvidia.com>
Signed-off-by: linquanh <linquanh@nvidia.com>
@kris1025
kris1025 force-pushed the repair-bot-bug6501404 branch 3 times, most recently from fa05136 to 15d744f Compare August 31, 2026 09:46
Signed-off-by: handongl <handongl@nvidia.com>

[nvbugs/6501404][chore] Sort ray_orchestrator waive entry

The file-contents-sorter pre-commit hook requires waives.txt to be
byte-sorted. The newly added ray_orchestrator waive was placed after the
sampler entry; reorder it before to satisfy the hook.

Signed-off-by: linquanh <linquanh@nvidia.com>
@kris1025
kris1025 force-pushed the repair-bot-bug6501404 branch from 15d744f to a7161f4 Compare August 31, 2026 09:48
@kris1025

Copy link
Copy Markdown
Collaborator

/bot run --disable-fail-fast

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #70322 [ run ] triggered by Bot. Commit: a7161f4 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #70322 [ run ] completed with state FAILURE. Commit: a7161f4
/LLM/main/L0_MergeRequest_PR pipeline #57560 completed with status: 'FAILURE'

CI Report

⚠️ Action Required:

  • Please check the failed tests and fix your PR
  • If you cannot view the failures, ask the CI triggerer to share details
  • Once fixed, request an NVIDIA team member to trigger CI again

CI Agent Failure Analysis

Link to invocation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.