-
Notifications
You must be signed in to change notification settings - Fork 931
ucx: adapt pml_ucx and spml_ucx to new UCX APIs #2222
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
ucx: adapt pml_ucx and spml_ucx to new UCX APIs #2222
Conversation
- pass field_mask to ucp_init(). - use non-blocking disconnect. - recv() with pre-allocated request. - call opal_progress() from iprobe() and improbe(). - use shift pattern in connect/disconnect.
|
@jladd-mlnx @miked-mellanox |
|
👍 |
1 similar comment
|
👍 |
|
bot:lanl:retest |
ompi/mca/pml/ucx/pml_ucx_component.c
Outdated
|
|
||
| ompi_pml_ucx.num_disconnect = 1; | ||
| (void) mca_base_component_var_register(&mca_pml_ucx_component.pmlm_version, "num_disconnect", | ||
| "How may disconnects go in parallel", |
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.
"How many..."
(typo)
|
@alinask thanks, fixed |
|
Is this PR needed at least partly because there was a change in the UCX API? |
|
@hppritcha yes, there were some additions to UCX API, some of them were needed to fix bugs (errors during disconnect), others are optimization and enabling forward compatibility. |
picked from #2218