Skip to content
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

Switch to MPI.gather #20

Open
mtfishman opened this issue Nov 6, 2023 · 1 comment
Open

Switch to MPI.gather #20

mtfishman opened this issue Nov 6, 2023 · 1 comment

Comments

@mtfishman
Copy link
Member

MPI.jl has added a few more functions that automatically serialize, including gather and scatter:

JuliaParallel/MPI.jl#756
JuliaParallel/MPI.jl#758

Should be able to drop our own implementation of gather in favor of the one in MPI.jl. @b-kloss

@b-kloss
Copy link
Collaborator

b-kloss commented Nov 6, 2023

Nice. We had count = Ref{Clong}() to accomodate very large message sizes, but I assume that just using Julia types as in MPI.jl, count = length(sendbuf), defaults to Int64 so that should be a safe switch.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants