-
Notifications
You must be signed in to change notification settings - Fork 6
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
pdgemm #2
Comments
I can do that. It shouldn't be that hard. I have also just figured out how the redistribute functions in ScaLAPACK work so it might also be possible to use this from But I don't know what a SUMMA is. |
Thanks. SUMMA is an outer product formulation of matrix multiply that is efficient in parallel. |
I've pushed some wrapper code to the julia> using MPI
julia> @everywhere using ScaLAPACK
julia> manager = MPIManager(np = 64)
MPI.MPIManager(64,`mpirun -np 64 --output-filename /tmp/user/1021/juliaUhh3oE`,"/tmp/user/1021/juliaUhh3oE",60,Dict{Int64,Int64}(),Dict{Int64,Int64}(),RemoteRef(1,1,7852),false)
julia> addprocs(manager);
julia> @everywhere using ScaLAPACK
julia> A = drandn(5000,5000);
julia> B = drandn(5000,5000);
julia> C = dzeros(5000,5000);
julia> @time ScaLAPACK.A_mul_B!(1.0, A, B, 0.0, C, 100, 100);
elapsed time: 3.871655318 seconds (8 MB allocated) The last two arguments are the row and column size of the blocks in the block-cyclic distributions. |
Cc: @amitmurthy |
Would it be possible to hook up
pdgemm
?It would be nice to compare a Julia SUMMA implementation with the one in scalapack/elemental.
The text was updated successfully, but these errors were encountered: