-
Notifications
You must be signed in to change notification settings - Fork 534
UCP/CORE: Add rc_gda transport to alias list of ib
#11170
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
ef85c3e
UCP/CORE: Add `rc_gda` transport to aliases list of `ib` and `cuda`
guy-ealey-morag 1f03ecd
Merge branch 'master' into rc-gda-aliases
guy-ealey-morag a2ea158
UCP/CORE: Remove rc_gda from cuda alias
guy-ealey-morag 6bdf742
Merge branch 'master' into rc-gda-aliases
guy-ealey-morag 2e67fc2
TEST/UCP: Fix test by adding md index to comparison
guy-ealey-morag 4f078f1
UCT/GDAKI: Fix fd leaks to allow CI to pass
guy-ealey-morag bc172bf
UCT/GDAKI: Fix PR comment
guy-ealey-morag File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| /** | ||
| * Copyright (c) NVIDIA CORPORATION & AFFILIATES, 2001-2019. ALL RIGHTS RESERVED. | ||
| * Copyright (c) NVIDIA CORPORATION & AFFILIATES, 2001-2026. ALL RIGHTS RESERVED. | ||
| * Copyright (C) ARM Ltd. 2016. ALL RIGHTS RESERVED. | ||
| * Copyright (C) Intel Corporation, 2023. ALL RIGHTS RESERVED. | ||
| * | ||
|
|
@@ -715,7 +715,7 @@ static ucp_tl_alias_t ucp_tl_aliases[] = { | |
| { "shm", { "posix", "sysv", "xpmem", "knem", "cma", NULL } }, | ||
| { "ib", { "rc_verbs", "ud_verbs", "rc_mlx5", "ud_mlx5", "dc_mlx5", | ||
| "gga_mlx5", UCP_TL_AUX("ud_mlx5"), UCP_TL_AUX("ud_verbs"), | ||
| "srd", NULL } }, | ||
| "srd", "rc_gda", NULL } }, | ||
| { "ud_v", { "ud_verbs", NULL } }, | ||
| { "ud_x", { "ud_mlx5", NULL } }, | ||
| { "ud", { "ud_mlx5", "ud_verbs", NULL } }, | ||
|
|
@@ -726,7 +726,7 @@ static ucp_tl_alias_t ucp_tl_aliases[] = { | |
| { "dc", { "dc_mlx5", UCP_TL_AUX("ud_mlx5"), NULL } }, | ||
| { "dc_x", { "dc_mlx5", UCP_TL_AUX("ud_mlx5"), NULL } }, | ||
| { "ugni", { "ugni_smsg", UCP_TL_AUX("ugni_udt"), "ugni_rdma", NULL } }, | ||
| { "cuda", { "cuda_copy", "cuda_ipc", "gdr_copy", NULL } }, | ||
| { "cuda", { "cuda_copy", "cuda_ipc", "gdr_copy", "rc_gda", NULL } }, | ||
|
||
| { "rocm", { "rocm_copy", "rocm_ipc", "rocm_gdr", NULL } }, | ||
| { "ze", { "ze_copy", "ze_ipc", "ze_gdr", NULL } }, | ||
| { "gga", { "gga_mlx5", NULL } }, | ||
|
|
||
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
not sure we also want it in cuda alias. E.g. if I want to use
UCX_TLS=rc,cudait will automatically enable rc_gda (which requires a lot of resources). Also not sure if we need it inrcalias.@ofirfarjun7, @Artemy-Mellanox wdyt?
Uh oh!
There was an error while loading. Please reload this page.
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.
I don't see it in rc alias what am I'm missing?
We need to disable it if user disables ib/cuda. Do we have other conventional way to do it beside the aliases?
Regarding resources, with latest implementation it create additional transport for each NIC (NIC-GPU) transport , but just one not all combos (@Artemy-Mellanox please correct me if I'm wrong).