-
Notifications
You must be signed in to change notification settings - Fork 280
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
MPIX_Continue: the basic implementation #7164
base: main
Are you sure you want to change the base?
Conversation
ec921dc
to
2371ea8
Compare
test:mpich/ch4/ofi |
test:mpich/ch4/ofi |
test:mpich/ch4/ucx |
@yfguo I found the following error message
Am I looking at the right error message that caused the tests to fail? Why can it have a corrupt |
b558804
to
d0fbe1a
Compare
test:mpich/ch4/ucx |
d0fbe1a
to
38a472c
Compare
test:mpich/ch4/ofi |
@yfguo Could we try this again? I think I have fixed all errors. |
test:mpich/ch4/ofi |
1 similar comment
test:mpich/ch4/ofi |
Pull Request Description
The basic implementation of the MPIX continuation proposal (mpiwg-hybrid/hybrid-issues#6).
A brief overview: it introduces a new way to attach a callback function (named continuation) to a request object corresponding to a pending operation and register it with a continuation request. The callback will be invoked once the corresponding operation is complete. The continuation request provides ways to manage the execution and completion of registered continuations.
What this PR is not covered.