2 API
| (require (planet jaymccarthy/openmpi:1:0/ffi/mpi)) |
| (MPI_Abort comm errcode) → void |
| comm : MPI_Comm? |
| errcode : int? |
| (MPI_Add_error_class) → int? |
| (MPI_Add_error_code errorclass) → int? |
| errorclass : int? |
| (MPI_Add_error_string errorclass string) → void |
| errorclass : int? |
| string : string? |
| (MPI_Comm_size comm) → int? |
| comm : MPI_Comm? |
| (MPI_Comm_rank comm) → int? |
| comm : MPI_Comm? |
| (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.