On this page:
MPI_ Abort
MPI_ Add_ error_ class
MPI_ Add_ error_ code
MPI_ Add_ error_ string
MPI_ Init
MPI_ Finalize
MPI_ Comm_ size
MPI_ Comm_ rank
MPI_ Get_ processor_ name
MPI_ Get_ count
MPI_ Send: CHAR
MPI_ Recv: CHAR

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_Init args)  void
  args : (vectorof string?)
(MPI_Finalize)  void
(MPI_Comm_size comm)  int?
  comm : MPI_Comm?
(MPI_Comm_rank comm)  int?
  comm : MPI_Comm?
(MPI_Get_processor_name)  string?
(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.