-
Notifications
You must be signed in to change notification settings - Fork 18
updates to v2 #11
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
Open
ryanolson
wants to merge
39
commits into
madsys-dev:main
Choose a base branch
from
ryanolson:ryan/ucx
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
updates to v2 #11
Conversation
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
Merges v0.2 branch introducing significant improvements: - Add AsyncRead/AsyncWrite support for Tag and Stream (utils feature) - Add Worker::connect_addr_vec for raw address connections - Update UCX to 1.18.1 for latest API compatibility - Introduce RequestParam builder pattern for request handling - Add stream wrapper types (WriteStream, ReadStream, etc.) - Migrate to Rust 2021 edition - Update dependencies and fix various bugs Signed-off-by: Ryan Olson <rolson@nvidia.com>
Add intelligent build system that prefers system UCX installation: - Try pkg-config first with version constraints (>= 1.19, < 2.0) - Use system installation if version requirements are met - Fall back to building from source if not found or incompatible - Support UCX_NO_PKG_CONFIG env var to force source build Benefits: - Faster builds when system UCX is available - Better integration with system package managers - Still maintains portability via source fallback Add pkg-config 0.3 as build dependency for UCX detection. Signed-off-by: Ryan Olson <rolson@nvidia.com>
Update UCX submodule from 1.18.1 to v1.19.0 release tag for latest stable version with bug fixes and improvements. Signed-off-by: Ryan Olson <rolson@nvidia.com>
When building UCX from source, the libraries are built as static archives that depend on each other. Must link all libraries explicitly: - libucp: main UCP API - libuct: UCX transport layer - libucs: UCX services and utilities - libucm: UCX memory management This fixes linker errors in CI where pkg-config is not available and the build falls back to building from source. Fixes undefined symbol errors for functions like ucp_config_read, ucp_init_version, ucp_worker_create, etc. Signed-off-by: Ryan Olson <rolson@nvidia.com>
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.
I updated the V2 PR and made a few build.rs changes to use locally installed ucx picked up from pkg-config.
I also made WorkerAddress be detachable form the Worker so it can be communicated between workers.
I can't for the life of me figure out why CI is broken.