-
Notifications
You must be signed in to change notification settings - Fork 900
ops: add support for user-defined big count ops #13030
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
ops: add support for user-defined big count ops #13030
Conversation
*/ | ||
if( OPAL_UNLIKELY(full_count > INT_MAX) ) { |
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.
The cast to int
I mentioned on the previous ticket is still problematic (https://github.com/open-mpi/ompi/pull/13030/files#diff-dfd595860dc4d0c9c73114bd8563c0786d063327f6e30955a3e361c3f6098e3dR519). I can file a PR to fix if you prefer handling that separately.
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.
please do.
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.
Will do once this one is in.
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.
okay moved that assert ahead of the cast.
related to open-mpi#12226 and open-mpi#9194 remove incorrect and misleading comment about ompi_3buff_op_reduce. See open-mpi#967 Signed-off-by: Howard Pritchard <[email protected]>
5e653ab
to
c484f68
Compare
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.
Should this PR also add MPI_Op_create_c
or is that separate?
nope, that's part of mega PR #12226 |
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.
Changes look good to me but @bosilca should review as well.
@bosilca please check when you have a chance |
related to #12226 and #9194
remove incorrect and misleading comment about ompi_3buff_op_reduce. See #967