3 API
(require mpi/ffi/mpi) | package: openmpi |
procedure
comm : _MPI_Comm? errcode : _int?
procedure
procedure
(MPI_Add_error_code errorclass) → _int?
errorclass : _int?
procedure
(MPI_Add_error_string errorclass string) → void
errorclass : _int? string : string?
procedure
(MPI_Finalize) → void
procedure
(MPI_Comm_size comm) → _int?
comm : _MPI_Comm?
procedure
(MPI_Comm_rank comm) → _int?
comm : _MPI_Comm?
procedure
procedure
(MPI_Get_count status datatype) → _int?
status : MPI_Status? datatype : _MPI_Datatype?
procedure
(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.
procedure
(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.