-
Notifications
You must be signed in to change notification settings - Fork 936
OSHMEM/MCA/SPML/UCX: v1.5 implement put_signal and put_signal_nbi #13568
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
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Roie Danino <[email protected]>
| return res; | ||
| } | ||
|
|
||
| return mca_spml_ucx_signal_common(ctx, sig_addr, signal, sig_op, dst); |
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.
Don't we need a fence here?
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 according to the v1.5 spec
oshmem/mca/spml/ucx/spml_ucx.c
Outdated
|
|
||
| /* This routine is not implemented */ | ||
| static inline int mca_spml_ucx_signal_common(shmem_ctx_t ctx, | ||
| uint64_t *sig_addr, |
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.
Indent
Signed-off-by: Roie Danino <[email protected]>
What?
Implements
mca_spml_ucx_put_signalandmca_spml_ucx_put_signal_nbfor OpenSHMEM signaling operations with UCX backend.Why
The put_signal operations are part of the OpenSHMEM 1.5 specification and were previously unimplemented (returning OSHMEM_ERR_NOT_IMPLEMENTED).