-
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
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
can you pls elaborate why not needed?
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.
Also, should we use non-blocking signal 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.
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.
My bad, we do need a fence here
Signed-off-by: Roie Danino <[email protected]>
| return OSHMEM_ERROR; | ||
| } | ||
|
|
||
| return res; |
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.
maybe move the return to lines 1662/1658 directly?
| 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.
need fence before this, to ensure ordering
| 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.
Not according to the v1.5 spec
can you pls elaborate why not needed?
| 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.
Also, should we use non-blocking signal here?

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).