We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
cleanup_mapped_request does a check on .empty() for all the relevant maps every call. We can hoist this to optimize the common case.
cleanup_mapped_request
.empty()
for (int i=0; i<count; i++) { if (!ignore) { MPI_Status_to_WRAP_Status(&impl_statuses[i], &array_of_statuses[i]); } if (impl_requests[i] == MPI_REQUEST_NULL) { cleanup_mapped_request(CONVERT_MPI_Request(array_of_requests[i])); } array_of_requests[i] = OUTPUT_MPI_Request(impl_requests[i]); }
The text was updated successfully, but these errors were encountered:
jeffhammond
No branches or pull requests
cleanup_mapped_request
does a check on.empty()
for all the relevant maps every call. We can hoist this to optimize the common case.The text was updated successfully, but these errors were encountered: