You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
MPI.jl has added a few more functions that automatically serialize, including
gather
andscatter
: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-klossThe text was updated successfully, but these errors were encountered: