Skip to content

Conversation

@nv-anants
Copy link
Contributor

@nv-anants nv-anants commented Jul 11, 2025

Overview:

add nixl update back to main branch

Summary by CodeRabbit

  • Chores
    • Updated the NIXL package version to 0.4.0 in documentation and dependencies.
    • Updated internal references to use the latest NIXL commit.

This reverts commit e9288ef.
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jul 11, 2025

Walkthrough

This change updates the NIXL component across the codebase by bumping its version from 0.3.1 to 0.4.0 in documentation and dependency specifications, and by updating the referenced commit hash in the build script. No logic or control flow is altered.

Changes

File(s) Change Summary
container/build.sh Updated NIXL_COMMIT hash to point to a newer revision.
docs/support_matrix.md Updated NIXL version from 0.3.1 to 0.4.0 in support matrix.
lib/llm/Cargo.toml Bumped nixl-sys dependency version from 0.3.1 to 0.4.0.

Possibly related PRs

Poem

A hop and a skip, a version anew,
NIXL’s grown up, now 0.4.0 for you!
Docs and dependencies, all in a row,
The build script points where the new hashes go.
With every small bump, the code’s hopping along—
🐇 Upgrades like these make the rabbit feel strong!


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (2)
lib/llm/Cargo.toml (1)

91-93: Prefer a caret requirement to ease patch upgrades

Hard-pinning to 0.4.0 forces another PR for every patch of nixl-sys.
Unless you need a very specific yanked fix, consider:

-nixl-sys = {version = "0.4.0", optional = true }
+nixl-sys = { version = "0.4", optional = true }

This still prevents breaking semver changes (0.5) while allowing 0.4.x patch updates automatically.

docs/support_matrix.md (1)

84-86: Keep the footnote numbering consistent

TensorRT-LLM footnote changed from “²” to “²” (no renumbering needed here), but if further rows are edited in future ensure the superscript references remain unique and in ascending order.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 26d7a61 and 63dc647.

⛔ Files ignored due to path filters (2)
  • Cargo.lock is excluded by !**/*.lock
  • lib/bindings/python/Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (3)
  • container/build.sh (1 hunks)
  • docs/support_matrix.md (1 hunks)
  • lib/llm/Cargo.toml (1 hunks)
🧰 Additional context used
🧠 Learnings (1)
lib/llm/Cargo.toml (1)
Learnt from: kthui
PR: ai-dynamo/dynamo#1424
File: lib/runtime/src/pipeline/network/egress/push_router.rs:204-209
Timestamp: 2025-06-13T22:07:24.843Z
Learning: The codebase uses async-nats version 0.40, not the older nats crate. Error handling should use async_nats::error::Error variants, not nats::Error variants.
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
  • GitHub Check: Build and Test - vllm
  • GitHub Check: pre-merge-rust (lib/bindings/python)
  • GitHub Check: pre-merge-rust (lib/runtime/examples)
  • GitHub Check: pre-merge-rust (.)
🔇 Additional comments (2)
lib/llm/Cargo.toml (1)

89-94: No mismatched nixl-sys versions found across the workspace

I grepped every Cargo.toml for a nixl-sys = { version = … } specification and only the bump in lib/llm/Cargo.toml to "0.4.0" shows up. There are no remaining crates depending on an older 0.3.x series.

No further changes needed here.

docs/support_matrix.md (1)

74-77: Version bump looks good

The runtime matrix now correctly reflects the 0.4.0 release of NIXL.

@nv-anants nv-anants enabled auto-merge (squash) July 11, 2025 15:58
@nv-anants nv-anants merged commit d975761 into main Jul 11, 2025
16 of 17 checks passed
@nv-anants nv-anants deleted the anants/retry-nixl-040 branch July 11, 2025 16:45
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.

4 participants