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
For example, the MPI C code shown in https://rookiehpc.org/mpi/docs/mpi_type_vector/index.html cannot be written in Julia with MPI.jl. To be specific, I cannot find a straightforward way to re-write the following C code in Julia, if buffer[3][3] is translated as buffer = Matrix{Int32}(undef, (3, 3)) etc, then no way to use MPI.Send in MPI.jl.
int buffer[3][3] = { 0, 1, 2, 3, 4, 5, 6, 7, 8 }; // L69 in the above link
MPI_Send(&buffer[0][1], 1, column_type, RECEIVER, 0, MPI_COMM_WORLD); // L72 in the above link
The text was updated successfully, but these errors were encountered:
For example, the MPI C code shown in https://rookiehpc.org/mpi/docs/mpi_type_vector/index.html cannot be written in Julia with MPI.jl. To be specific, I cannot find a straightforward way to re-write the following C code in Julia, if
buffer[3][3]
is translated asbuffer = Matrix{Int32}(undef, (3, 3))
etc, then no way to useMPI.Send
in MPI.jl.The text was updated successfully, but these errors were encountered: