chore(trtllm): bump NIXL to v1.3.1 - #12322
Merged
Merged
Conversation
This comment has been minimized.
This comment has been minimized.
Bump trtllm nixl_ref v1.0.1 -> v1.3.1. Stacked on the NIXL single-sourcing (#12217): this one line now drives both the source SDK wheel_builder links nixl-sys against and the pip nixl/nixl-cu13 install. v1.3.1 also moves the pip NIXL closer to the version bundled in the tensorrt-llm/release:1.3.0rc22 base, shrinking the loaded-vs-installed skew. Signed-off-by: tanmayv25 <tanmay2592@gmail.com>
tanmayv25
force-pushed
the
chore/bump-trtllm-nixl-1.3.1
branch
from
July 28, 2026 23:55
5cbe8b3 to
ad2a6b5
Compare
Contributor
Author
|
/ok to test ad2a6b5 |
Contributor
WalkthroughThe trtllm container configuration now selects NIXL v1.3.1, installs matching NIXL packages from ChangesNIXL version alignment
Estimated code review effort: 2 (Simple) | ~10 minutes 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
Comment |
Contributor
lavanyavijayk
approved these changes
Jul 28, 2026
tanmayv25
added a commit
that referenced
this pull request
Jul 29, 2026
Signed-off-by: tanmayv25 <tanmay2592@gmail.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bump the trtllm
nixl_reffromv1.0.1tov1.3.1(one line incontainer/context.yaml).Validation
Built the trtllm runtime image locally with
nixl_ref=v1.3.1:nixl-syscompiles from the v1.3.1 source;nixl/nixl-cu13install at 1.3.1; NIXL initializes cleanly (NixlTransferAgent … UCX, no undefined-symbol/version errors).examples/backends/trtllm/launch/disagg_same_gpu.sh(Qwen3-0.6B, prefill + decode on one GPU):/v1/chat/completionsreturnedstatus=successwith distinctprefill_worker_idanddecode_worker_id(elapsed 190 ms, ttft 131 ms) — the NIXL 1.3.1 prefill→decode KV handoff works over UCX.Note
The local single-host disagg run required working around a pre-existing, NIXL-independent rc22 issue:
disagg_machine_id = int(endpoint.connection_id()) % 1021(components/src/dynamo/trtllm/workers/llm_worker.py:778) can exceed TRT-LLM rc22'sNODE_ID_SPACE = 256, raisingValueError: node_id must be in range [0, 256)before the transfer runs. It derives from the runtime connection id (not NIXL), so it is unrelated to this bump. This is already fixed by #12203 (splits the 10-bitmachine_idinto rc22's 8-bitnode_id+ 6-bitprocess_id); once that lands onmain, disagg works without any workaround.Summary by CodeRabbit