-
-
Notifications
You must be signed in to change notification settings - Fork 123
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
add nice init function #485
Conversation
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.
Looks great! Would it be too magical/expensive to check MPI.Finalized
in MPI.Init
and MPI.Inilized
in MPI.Finalized
?
Good point. Note that we don't need to check |
julia> using MPI
julia> MPI.Finalize()
Attempting to use an MPI routine before initializing MPICH
% |
Ah I see. Any MPI operation will give an error like that, so I don't think we need to make |
See JuliaParallel/MPI.jl#485. Closes #747; closes #748
See JuliaParallel/MPI.jl#485. Closes #747; closes #748
Fixes #484.