-
Notifications
You must be signed in to change notification settings - Fork 12
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
Multi-Object (MO) UCX backend implementation (rebased over code restructuring PR) #30
Closed
Conversation
This file contains 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
Isolate header files from compile-time dependencies (may not be required if global config.h is distributed along with header files) Signed-off-by: Artem Y. Polyakov <[email protected]>
Backend Unit-test
|
3d52724
to
a8146f0
Compare
artpol84
commented
Mar 15, 2025
7f9314f
to
0f7e51e
Compare
38f7017
to
033a15a
Compare
Add new UCX-based backend that allows associating NIXL logical "devices" with different UCX workers. The primary motivation is that UCX v1.18 doesn't support more than one GPGPU per UCX context. NOTE: this is expected to be fixed in UCX v1.19 so this backend might be viewed as a workaround unless other uses will be found. Signed-off-by: Artem Y. Polyakov <[email protected]>
033a15a
to
04b2c0b
Compare
nixl example (hacked) diff --git a/test/nixl/agent_example.cpp b/test/nixl/agent_example.cpp
index c450814..59cd290 100644
--- a/test/nixl/agent_example.cpp
+++ b/test/nixl/agent_example.cpp
@@ -368,8 +368,8 @@ int main()
printParams(init2);
nixlBackendH* ucx1, *ucx2;
- ret1 = A1.createBackend("UCX", init1, ucx1);
- ret2 = A2.createBackend("UCX", init2, ucx2);
+ ret1 = A1.createBackend("UCX_MO", init1, ucx1);
+ ret2 = A2.createBackend("UCX_MO", init2, ucx2);
assert (ret1 == NIXL_SUCCESS);
assert (ret2 == NIXL_SUCCESS);
|
aranadive
reviewed
Mar 15, 2025
get_plugin_version, | ||
get_backend_options | ||
}; | ||
#ifdef STATIC_PLUGIN_UCX |
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.
If plugin name is UCX_MO the flag here should be STATIC_PLUGIN_UCX_MO
Recreated in PR 58. |
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.
No description provided.