Skip to content

[TRTLLM-13614][fix] Enhance the dis-agg bounce buffer workflow - #16116

Merged
Shixiaowei02 merged 1 commit into
NVIDIA:mainfrom
Shixiaowei02:user/xiaoweis/transceiver-fixes
Jul 16, 2026
Merged

[TRTLLM-13614][fix] Enhance the dis-agg bounce buffer workflow#16116
Shixiaowei02 merged 1 commit into
NVIDIA:mainfrom
Shixiaowei02:user/xiaoweis/transceiver-fixes

Conversation

@Shixiaowei02

@Shixiaowei02 Shixiaowei02 commented Jul 8, 2026

Copy link
Copy Markdown
Collaborator

Description

This pull request introduces several improvements and bug fixes to the bounce (coalesced transfer) path in the disaggregated KV cache implementation. The main themes are enhanced robustness (especially around error handling and resource cleanup), improved configurability via environment variables, and stricter correctness checks for coalesced transfers. Additionally, some refactoring and logging enhancements are included to aid debugging and testing.

Bounce Path Robustness & Error Handling:

  • Added an orphan_reservation method to the bounce allocator interface and implementations, ensuring that partially completed or cancelled transfers properly quarantine (rather than leak or prematurely release) bounce regions. This is called on cancellation, teardown, or failed transfer initiation. [1] [2] [3] [4] [5]
  • Improved error handling in _deliver_kv_to_agent so that if building a coalesced send request fails, the receiver is notified and the region is not leaked.

Configurability & Tuning:

  • Introduced an environment variable (TRTLLM_KV_CACHE_BOUNCE_MIN_BLOCKS) to override the minimum block count required for the bounce path, allowing advanced/test tuning without code changes. The config logic now reads and clamps this value safely. [1] [2] [3]

Correctness & Safety of Coalesced Transfers:

  • Added stricter checks to ensure that fan-in (multi-writer) coalesced transfers only proceed when all writers have uniform per-block sizes, preventing region overruns. [1] [2]
  • Added a positive log marker when a transfer successfully engages the bounce path, aiding end-to-end testing and debugging.

Refactoring & Minor Improvements:

  • Simplified gather logic: gather is now blocking and runs under a lock, with resource cleanup on error, reducing concurrency bugs. [1] [2]
  • Batched allgather calls for consensus outcomes to reduce collective communication overhead. [1] [2]
  • Updated copyright years in agentBindings.cpp.
  • Added gil_scoped_release call guards to all pybind11 bindings for NixlTransferAgent to avoid deadlocks and improve concurrency.

These changes collectively make the bounce path more robust, configurable, and correct, while improving observability and testability.

Test Coverage

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-compatible or api-breaking. For api-breaking, include BREAKING in 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.

Summary by CodeRabbit

  • New Features

    • Added support for a faster idle path during disaggregated KV-cache coordination, reducing unnecessary work when no transfers are needed.
    • Added a new long-bounce prompt example for exercising cache transfer behavior.
  • Bug Fixes

    • Improved handling of long prompts in disaggregated runs.
    • Increased test coverage for bounce-buffer transfers to better match real runtime conditions.
  • Tests

    • Updated integration tests to use the new long-bounce prompt and validate the bounce transfer path more reliably.

@coderabbitai

coderabbitai Bot commented Jul 8, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

📝 Walkthrough

Walkthrough

This PR adds GIL release guards to additional NIXL nanobind bindings, introduces a batched consensus allgather and an env-gated idle fast-path in the disaggregation transceiver, and updates bounce-test configuration, a new long prompt fixture, and test logic to exercise the KV-cache bounce path.

Changes

NIXL Binding GIL Release

Layer / File(s) Summary
GIL release for NixlTransferAgent bindings
cpp/tensorrt_llm/executor/cache_transmission/nixl_utils/agentBindings.cpp
Adds nb::call_guard<nb::gil_scoped_release>() to multiple NixlTransferAgent bindings (register/deregister memory, load_remote_agent overloads, connection info, invalidate, notify/check operations) and updates copyright year to 2025-2026.

Consensus Fast-Path and Bounce Testing

Layer / File(s) Summary
Batched consensus allgather
tensorrt_llm/_torch/disaggregation/transceiver.py
Removes _allgather_or_passthrough and refactors _consensus_outcome to batch cancelled/failed/completed id lists into a single allgather call, unpacking them afterward.
Idle consensus fast-path
tensorrt_llm/_torch/disaggregation/transceiver.py
Adds TRTLLM_KV_CONSENSUS_FASTPATH-gated fast-path using a fixed-size allreduce over local terminal counts in check_context_transfer_status to skip variable-length consensus allgathers when idle.
Bounce test prompt and configuration
examples/disaggregated/clients/long_bounce_prompts.json, tests/integration/defs/disaggregated/test_configs/disagg_config_overlap_transceiver_runtime_python_bounce.yaml, tests/integration/defs/disaggregated/test_disaggregated.py
Adds a new long prompt fixture, tunes tokens_per_block/kv_cache_bounce_size_mb in context and generation server configs to clear the bounce gate, generalizes long-prompt detection/skip logic to any long_-prefixed file, and wires the bounce test to use the new prompt.

Estimated code review effort: 3 (Moderate) | ~25 minutes

Sequence Diagram(s)

sequenceDiagram
  participant Rank as TransceiverRank
  participant AllReduce as ReduceOp allreduce
  participant AllGather as consensus allgather

  Rank->>Rank: check_context_transfer_status
  Rank->>AllReduce: sum local terminal transfer counts
  AllReduce-->>Rank: total terminal count
  alt fastpath enabled and no terminal transfers
    Rank-->>Rank: skip consensus allgathers, return
  else consensus needed
    Rank->>AllGather: batched cancelled/failed/completed ids
    AllGather-->>Rank: outcome lists per rank
    Rank->>Rank: unpack and apply outcome
  end
Loading
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
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 matches the PR's main focus and follows the required [None][fix] format.
Description check ✅ Passed The description is detailed and mostly follows the template, but the Test Coverage section is left blank.
✨ Finishing Touches
🧪 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)
tests/integration/defs/disaggregated/test_disaggregated.py (1)

1197-1223: 📐 Maintainability & Code Quality | 🔵 Trivial | 🏗️ Heavy lift

Test wires the right prompt/config but never asserts the bounce path actually ran.

The comment block correctly explains the sizing math, and prompt_file="long_bounce_prompts.json" makes bounce coalescing likely, but the test still only verifies request success (output verification is even skipped for long_ prompts). If the 96-block gate math is ever off, or the bounce arena silently falls back to the per-block path, this test would still pass — defeating the PR's stated goal of "ensuring the dis-agg bounce buffer is tested."

Suggest adding a concrete, positive assertion that the bounce path was taken — e.g., parsing server logs for a bounce/coalesced-transfer marker, or exposing a counter/metric from TransferWorker/bounce module that the test can check. As per path instructions, please confirm whether run_disaggregated_test already performs any such log-based verification internally; if not, this coverage gap should be closed either in this PR or tracked as an explicit follow-up.

🤖 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 `@tests/integration/defs/disaggregated/test_disaggregated.py` around lines 1197
- 1223, The test in test_disaggregated_overlap_transceiver_runtime_python_bounce
only exercises a long prompt and verifies success, but it never proves the
bounce/coalesced transfer path ran. Add a positive assertion in this test (or in
run_disaggregated_test if it already centralizes verification) that checks for a
bounce-specific signal, such as a server log marker or a metric/counter from
TransferWorker or the bounce module. Keep the existing prompt/config setup, but
ensure the test explicitly fails if the transfer falls back to the per-block
path.

Source: Path instructions

🤖 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 `@tests/integration/defs/disaggregated/test_disaggregated.py`:
- Around line 1197-1223: The test in
test_disaggregated_overlap_transceiver_runtime_python_bounce only exercises a
long prompt and verifies success, but it never proves the bounce/coalesced
transfer path ran. Add a positive assertion in this test (or in
run_disaggregated_test if it already centralizes verification) that checks for a
bounce-specific signal, such as a server log marker or a metric/counter from
TransferWorker or the bounce module. Keep the existing prompt/config setup, but
ensure the test explicitly fails if the transfer falls back to the per-block
path.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 8c38d363-59ee-4abf-a399-176d00680ae4

📥 Commits

Reviewing files that changed from the base of the PR and between e7b2256 and 2744b83.

📒 Files selected for processing (5)
  • cpp/tensorrt_llm/executor/cache_transmission/nixl_utils/agentBindings.cpp
  • examples/disaggregated/clients/long_bounce_prompts.json
  • tensorrt_llm/_torch/disaggregation/transceiver.py
  • tests/integration/defs/disaggregated/test_configs/disagg_config_overlap_transceiver_runtime_python_bounce.yaml
  • tests/integration/defs/disaggregated/test_disaggregated.py

Comment thread tests/integration/defs/disaggregated/test_disaggregated.py Outdated
@Shixiaowei02
Shixiaowei02 force-pushed the user/xiaoweis/transceiver-fixes branch 2 times, most recently from cb84f78 to 8600836 Compare July 8, 2026 13:01
@Shixiaowei02
Shixiaowei02 requested a review from a team as a code owner July 8, 2026 13:01
@Shixiaowei02
Shixiaowei02 force-pushed the user/xiaoweis/transceiver-fixes branch from 8600836 to f066a1b Compare July 8, 2026 13:33
@Shixiaowei02

Copy link
Copy Markdown
Collaborator Author

/bot run --add-multi-gpu-test --disable-fail-fast

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #58238 [ run ] triggered by Bot. Commit: f066a1b Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #58238 [ run ] completed with state SUCCESS. Commit: f066a1b
/LLM/main/L0_MergeRequest_PR pipeline #46879 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

@fredricz-20070104 fredricz-20070104 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.

Approved

@Shixiaowei02

Copy link
Copy Markdown
Collaborator Author

/bot run --disable-fail-fast --stage-list "DGX_B200-PyTorch-2, DGX_B200-PyTorch-4, DGX_B200-PyTorch-5, GB200-4_GPUs-PyTorch-1, GB200-4_GPUs-PyTorch-3, DGX_B200-8_GPUs-PyTorch-4, DGX_H100-4_GPUs-PyTorch-DeepSeek-1, DGX_H100-4_GPUs-PyTorch-Others-2"

@Shixiaowei02 Shixiaowei02 changed the title [None][fix] Ensure the dis-agg bounce buffer is tested [None][fix] Enhance the dis-agg bounce buffer workflow Jul 9, 2026
@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #58422 [ run ] triggered by Bot. Commit: f066a1b Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #58422 [ run ] completed with state SUCCESS. Commit: f066a1b
/LLM/main/L0_MergeRequest_PR pipeline #47039 (Partly Tested) 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

@Shixiaowei02

Copy link
Copy Markdown
Collaborator Author

/bot run --disable-fail-fast --stage-list "DGX_B200-PyTorch-2, DGX_B200-PyTorch-4, DGX_B200-PyTorch-5, DGX_B200-8_GPUs-PyTorch-4, DGX_H100-4_GPUs-PyTorch-DeepSeek-1, DGX_H100-4_GPUs-PyTorch-Others-2"

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #58463 [ run ] triggered by Bot. Commit: f066a1b Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #58463 [ run ] completed with state SUCCESS. Commit: f066a1b
/LLM/main/L0_MergeRequest_PR pipeline #47074 (Partly Tested) completed with status: 'SUCCESS'

CI Report

Link to invocation

@Shixiaowei02
Shixiaowei02 requested a review from a team as a code owner July 14, 2026 05:48
@Shixiaowei02
Shixiaowei02 force-pushed the user/xiaoweis/transceiver-fixes branch from 6bcab6e to 9d0f18d Compare July 14, 2026 05:53
@Shixiaowei02

Copy link
Copy Markdown
Collaborator Author

/bot run --add-multi-gpu-test --disable-fail-fast

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #59124 [ run ] triggered by Bot. Commit: 9d0f18d Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #59124 [ run ] completed with state FAILURE. Commit: 9d0f18d
/LLM/main/L0_MergeRequest_PR pipeline #47635 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

@Shixiaowei02
Shixiaowei02 force-pushed the user/xiaoweis/transceiver-fixes branch from 9d0f18d to 3e22022 Compare July 14, 2026 13:39
@Shixiaowei02

Copy link
Copy Markdown
Collaborator Author

/bot run --add-multi-gpu-test --disable-fail-fast

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #59212 [ run ] triggered by Bot. Commit: 3e22022 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #59212 [ run ] completed with state FAILURE. Commit: 3e22022
/LLM/main/L0_MergeRequest_PR pipeline #47710 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

@Shixiaowei02

Copy link
Copy Markdown
Collaborator Author

/bot -h

@github-actions

Copy link
Copy Markdown

GitHub Bot Help

/bot [-h] ['run', 'kill', 'skip', 'reuse-pipeline'] ...

Provide a user friendly way for developers to interact with a Jenkins server.

Run /bot [-h|--help] to print this help message.

See details below for each supported subcommand.

Details

run [--reuse-test (optional)pipeline-id --disable-fail-fast --skip-test --stage-list "A10-PyTorch-1, xxx" --gpu-type "A30, H100_PCIe" --test-backend "pytorch, cpp" --add-multi-gpu-test --only-multi-gpu-test --disable-multi-gpu-test --post-merge --extra-stage "H100_PCIe-TensorRT-Post-Merge-1, xxx" --detailed-log --debug(experimental) --high-priority]

Launch build/test pipelines. All previously running jobs will be killed.

--reuse-test (optional)pipeline-id (OPTIONAL) : Allow the new pipeline to reuse build artifacts and skip successful test stages from a specified pipeline or the last pipeline if no pipeline-id is indicated. If the Git commit ID has changed, this option will be always ignored. The DEFAULT behavior of the bot is to reuse build artifacts and successful test results from the last pipeline.

--disable-reuse-test (OPTIONAL) : Explicitly prevent the pipeline from reusing build artifacts and skipping successful test stages from a previous pipeline. Ensure that all builds and tests are run regardless of previous successes.

--disable-fail-fast (OPTIONAL) : Disable fail fast on build/tests/infra failures.

--skip-test (OPTIONAL) : Skip all test stages, but still run build stages, package stages and sanity check stages. Note: Does NOT update GitHub check status.

--stage-list "A10-PyTorch-1, xxx" (OPTIONAL) : Only run the specified test stages. Supports wildcard * for pattern matching (e.g., "*PerfSanity*" matches all stages containing PerfSanity). Examples: "A10-PyTorch-1, xxx", "PerfSanity". Note: Does NOT update GitHub check status.

--gpu-type "A30, H100_PCIe" (OPTIONAL) : Only run the test stages on the specified GPU types. Examples: "A30, H100_PCIe". Note: Does NOT update GitHub check status.

--test-backend "pytorch, cpp" (OPTIONAL) : Skip test stages which don't match the specified backends. Only support [pytorch, cpp, tensorrt, triton]. Examples: "pytorch, cpp" (does not run test stages with tensorrt or triton backend). Note: Does NOT update GitHub pipeline status.

--only-multi-gpu-test (OPTIONAL) : Only run the multi-GPU tests. Note: Does NOT update GitHub check status.

--disable-multi-gpu-test (OPTIONAL) : Disable the multi-GPU tests. Note: Does NOT update GitHub check status.

--add-multi-gpu-test (OPTIONAL) : Force run the multi-GPU tests in addition to running L0 pre-merge pipeline.

--post-merge (OPTIONAL) : Run the L0 post-merge pipeline instead of the ordinary L0 pre-merge pipeline.

--extra-stage "H100_PCIe-TensorRT-Post-Merge-1, xxx" (OPTIONAL) : Run the ordinary L0 pre-merge pipeline and specified test stages. Supports wildcard * for pattern matching. Examples: --extra-stage "H100_PCIe-TensorRT-Post-Merge-1, xxx", --extra-stage "Post-Merge".

--detailed-log (OPTIONAL) : Enable flushing out all logs to the Jenkins console. This will significantly increase the log volume and may slow down the job.

--debug (OPTIONAL) : Experimental feature. Enable access to the CI container for debugging purpose. Note: Specify exactly one stage in the stage-list parameter to access the appropriate container environment. Note: Does NOT update GitHub check status.

--high-priority (OPTIONAL) : Run the pipeline with high priority. This option is restricted to authorized users only and will route the job to a high-priority queue.

kill

kill

Kill all running builds associated with pull request.

skip

skip --comment COMMENT

Skip testing for latest commit on pull request. --comment "Reason for skipping build/test" is required. IMPORTANT NOTE: This is dangerous since lack of user care and validation can cause top of tree to break.

reuse-pipeline

reuse-pipeline

Reuse a previous pipeline to validate current commit. This action will also kill all currently running builds associated with the pull request. IMPORTANT NOTE: This is dangerous since lack of user care and validation can cause top of tree to break.

@Shixiaowei02

Copy link
Copy Markdown
Collaborator Author

/bot run --only-multi-gpu-test --disable-fail-fast

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #59311 [ run ] triggered by Bot. Commit: 3e22022 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #59311 [ run ] completed with state SUCCESS. Commit: 3e22022
/LLM/main/L0_MergeRequest_PR pipeline #47795 (Partly Tested) 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

@Shixiaowei02

Copy link
Copy Markdown
Collaborator Author

/bot run --disable-fail-fast --stage-list "DGX_B200-PyTorch-2, DGX_B200-PyTorch-3, DGX_B200-2_GPUs-PyTorch-1, DGX_B200-8_GPUs-PyTorch-2, DGX_B200-8_GPUs-PyTorch-3, DGX_H100-4_GPUs-PyTorch-DeepSeek-1, GB200-8_GPUs-2_Nodes-PyTorch-1, GB200-8_GPUs-2_Nodes-PyTorch-2"

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #59369 [ run ] triggered by Bot. Commit: 3e22022 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #59369 [ run ] completed with state SUCCESS. Commit: 3e22022
/LLM/main/L0_MergeRequest_PR pipeline #47844 (Partly Tested) 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

@Shixiaowei02

Copy link
Copy Markdown
Collaborator Author

/bot run --disable-fail-fast --stage-list "DGX_B200-8_GPUs-PyTorch-2, DGX_B200-8_GPUs-PyTorch-3, DGX_H100-4_GPUs-PyTorch-DeepSeek-1"

…tent bounce/GIL/test fixes

Squashed set of the v2 (Python) KV-cache transceiver work.

Performance:
- Skip the idle per-step transfer-status consensus on the generation worker
  (a worker that never sends KV has nothing to reconcile), and batch the
  remaining cancelled/failed/completed consensus into a single allgather.
  This removes the per-step host collectives that were inflating the timed
  gen-worker device step, recovering C++ (v1) parity. The skip gates only on
  monotonic never-reset flags whose value flips in lockstep across all TP/PP
  ranks, so no rank can skip a collective while a peer posts it.
- Release the GIL in the NixlTransferAgent connection-setup bindings so the
  blocking connection handshake no longer starves other threads during warmup.

Bounce / data-plane:
- Fix latent correctness/leak/hang bugs in the KV-cache bounce path.
- Make the bounce min_blocks gate an environment knob instead of a public arg.

Tests:
- Fix a pre-existing single-process cache-transceiver mock deadlock under
  attention-DP + pipeline parallelism (per-group barriers instead of one
  global barrier) and a flaky zero-timeout transfer-agent poll assertion;
  drop a dangling fast-path consensus test.

Signed-off-by: Shixiaowei02 <39303645+Shixiaowei02@users.noreply.github.com>
@Shixiaowei02
Shixiaowei02 force-pushed the user/xiaoweis/transceiver-fixes branch from 3e22022 to 373c096 Compare July 16, 2026 05:25
@Shixiaowei02

Copy link
Copy Markdown
Collaborator Author

/bot skip --comment "Verified that the failed pipeline is unrelated to this change, so no retry is needed to save resources."

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #59623 [ skip ] triggered by Bot. Commit: 373c096 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #59623 [ skip ] completed with state SUCCESS. Commit: 373c096
Skipping testing for commit 373c096

Link to invocation

@Shixiaowei02
Shixiaowei02 merged commit 4a682fd into NVIDIA:main Jul 16, 2026
7 checks passed
@Shixiaowei02
Shixiaowei02 deleted the user/xiaoweis/transceiver-fixes branch July 16, 2026 05:49
@Shixiaowei02 Shixiaowei02 changed the title [None][fix] Enhance the dis-agg bounce buffer workflow [TRTLLM-13614][fix] Enhance the dis-agg bounce buffer workflow Jul 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants