2 API
(require (planet jaymccarthy/openmpi:1:0/ffi/mpi)) |
(MPI_Comm_size comm) → int? |
comm : MPI_Comm? |
(MPI_Comm_rank comm) → int? |
comm : MPI_Comm? |
(MPI_Get_processor_name) → bytes? |
(MPI_Get_count status datatype) → int? |
status : MPI_Status? |
datatype : MPI_Datatype? |
(MPI_Send:CHAR buf dest tag comm) → void |
buf : bytes? |
dest : int? |
tag : int? |
comm : MPI_Comm? |
A wrapper around MPI_Send for the MPI_CHAR datatype using bytes.
(MPI_Recv:CHAR maximum-len src tag comm) → bytes? |
maximum-len : int? |
src : int? |
tag : int? |
comm : MPI_Comm? |
A wrapper around MPI_Recv for the MPI_CHAR datatype using bytes.