-
Notifications
You must be signed in to change notification settings - Fork 690
feat: Remove Duplicate Multimodal Nixl Connect Example #2622
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
feat: Remove Duplicate Multimodal Nixl Connect Example #2622
Conversation
|
👋 Hi whoisj! Thank you for contributing to ai-dynamo/dynamo. Just a reminder: The 🚀 |
indrajit96
left a comment
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.
LGTM!
90b1ec1 to
e36eb9f
Compare
This change updates the Multimodal example to use the built-in `dynamo.nixl_connector` classes instead of the local `connect/` folder.
This change removes the deprecated `connect/` folder from the multimodal example. The multimodal example was migrated to the new `dynamo.nixl_connector` code in the previous commit.
e36eb9f to
8e8726d
Compare
|
Caution Review failedFailed to post review comments. Configuration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro 💡 Knowledge Base configuration:
You can enable these sources in your CodeRabbit configuration. 📒 Files selected for processing (6)
💤 Files with no reviewable changes (2)
🧰 Additional context used🧬 Code graph analysis (3)examples/multimodal/utils/protocol.py (1)
examples/multimodal/components/worker.py (1)
examples/multimodal/components/encode_worker.py (1)
🪛 GitHub Actions: Pre Merge Validation of (ai-dynamo/dynamo/refs/pull/2622/merge) by whoisj.examples/multimodal/utils/protocol.py[error] 1-1: isort hook modified imports in this file (auto-fix). examples/multimodal/components/worker.py[error] 1-1: isort hook modified imports in this file (auto-fix). examples/multimodal/components/encode_worker.py[error] 1-1: isort hook modified imports in this file (auto-fix). ⏰ 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). (1)
WalkthroughRefactors multimodal examples to use dynamo.nixl_connect instead of a local connect module, removes the local connect package and its README, updates protocol types from SerializedRequest to RdmaMetadata, adjusts encode_worker metadata source, and tweaks Dockerfile PYTHONPATH to avoid duplication. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant W as Worker (encode/worker)
participant C as dynamo.nixl_connect.Connector
participant R as Readable Buffer
Note over W,C: Initialization flow
W->>C: Connector()
W->>C: initialize(runtime, namespace)
Note over W,R: Encode path metadata production
W->>R: create_readable(...)
R-->>W: buffer handle
W->>R: metadata()
R-->>W: RdmaMetadata
W->>W: request.serialized_request = RdmaMetadata
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Possibly related PRs
Poem
Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. 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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
Status, Documentation and Community
|
|
LGTM as well! Please make sure the vllm multi-gpu test passed on GitLab. (Multi-gpu test will not run on GitHub). |
|
/ok to test 8e8726d |
rmccorm4
left a comment
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.
LGTM. Just triggered gitlab tests per Kris's comment: #2622 (comment)
|
There's so much noise in the log it's hard for me to tell, but if I'm reading it right it seems like the multimodal related parts actually passed: There are ton of (what look like red herring) failures like this, I'm assuming they are sending inference requests as a "health"/"ready" check: Not for this PR, but we need to reduce the noise from the logs to make it easier to read. Some ideas:
|
|
Thanks @rmccorm4 for the summary. |
Signed-off-by: Hannah Zhang <hannahz@nvidia.com>
Signed-off-by: Jason Zhou <jasonzho@jasonzho-mlt.client.nvidia.com>
Signed-off-by: Krishnan Prashanth <kprashanth@nvidia.com>
Signed-off-by: nnshah1 <neelays@nvidia.com>
This change:
dynamo.nixl_connectorclasses instead of the localconnect/folder.connect/folder from the multimodal example.DIS-223
Issue 2481
Fixes #2481
Summary by CodeRabbit
Refactor
Documentation
Chores