-
-
Notifications
You must be signed in to change notification settings - Fork 122
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 MPI.Dist_graph_neighbors #707
Add MPI.Dist_graph_neighbors #707
Conversation
This patch adds `MPI.Dist_graph_neighbors` as a convenience wrapper around `MPI.Dist_graph_neighbors_count` and `MPI.Dist_graph_neighbors!` that allocates the required result vectors automatically.
d207b96
to
4b2f391
Compare
Probably unrelated to this PR, there are a few weird errors with Julia nightly, for example:
Edit: oh, and also a segmentation fault with MVAPICH which looks a lot like #684, but it hasn't crashed before here. We might need to apply the upstream patch... |
@KristofferC could that be related to your |
It could... The stacktrace is for files added in JuliaLang/Pkg.jl#3308 but not sure if it was the max_method thing that caused it to error or it already was an issue after that PR. Edit: Actually, |
Thanks! |
This patch adds
MPI.Dist_graph_neighbors
as a convenience wrapper aroundMPI.Dist_graph_neighbors_count
andMPI.Dist_graph_neighbors!
that allocates the required result vectors automatically.See #703 (comment).