-
Notifications
You must be signed in to change notification settings - Fork 9
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
883: Make broadcast deliver to sender (for default group) #1225
Conversation
67c5b6f
to
d386c5c
Compare
590e018
to
5b58faf
Compare
a518499
to
647c43b
Compare
ca70159
to
ccd8b6c
Compare
ccd8b6c
to
0ec1ae8
Compare
PR tests (gcc-5, ubuntu, mpich) Build for 73b7e8c
|
PR tests (clang-3.9, ubuntu, mpich) Build for 73b7e8c
|
PR tests (clang-5.0, ubuntu, mpich) Build for 73b7e8c
|
PR tests (gcc-10, ubuntu, openmpi, no LB) Build for 73b7e8c
|
PR tests (gcc-7, ubuntu, mpich, trace runtime, LB) Build for 73b7e8c
|
PR tests (gcc-6, ubuntu, mpich) Build for 73b7e8c
|
PR tests (gcc-8, ubuntu, mpich, address sanitizer) Build for 73b7e8c
|
PR tests (gcc-9, ubuntu, mpich, zoltan) Build for 73b7e8c
|
…m sys_msg to user_msg so it can be later used in user handler
…since now sender will always execute the handler
…sent to default group should be delivered to sender
…of invoking it inline
0ec1ae8
to
c166484
Compare
PR tests (intel 19, ubuntu, mpich) Build for 73b7e8c
|
PR tests (clang-8, alpine, mpich) Build for 73b7e8c
|
@@ -98,6 +98,10 @@ struct ActiveEnvelope { | |||
/// True iff the message is considered locked. | |||
/// If locked, changes to the envelope will result in failure. | |||
bool is_locked : 1; | |||
|
|||
// Used only for broadcast to default group | |||
// Determines whether message should be send also to sender |
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.
Reword please:
"Determines whether message should also be sent to the sender"
Fixes #883