mpi :: Receptacle
Subclasses of Receptacle should use the native MPI recveive function,
without using Nit serialization.
mpi :: Receptacle :: defaultinit
mpi $ Receptacle :: SELF
Type of this instance, automatically specialized in every classcore :: Object :: class_factory
Implementation used byget_class to create the specific class.
mpi :: Receptacle :: defaultinit
core :: Object :: defaultinit
core :: Object :: is_same_instance
Return true ifself and other are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself the same as other in a serialization context?
core :: Object :: is_same_type
Return true ifself and other have the same dynamic type.
core :: Object :: output_class_name
Display class name on stdout (debug only).c :: CByteArray
Wrapper around an array ofunsigned char in C (unsigned char*) with length and destroy state
c :: CCStringArray
Wrapper around an array ofCString in C (char**) with length and destroy state.
c :: CUInt16Array
Wrapper of a C array of typeuint16_t* with length and destroy state
# Something which can receive data directly and efficiently from MPI
#
# Subclasses of `Receptacle` should use the native MPI recveive function,
# without using Nit serialization.
interface Receptacle
# Type specific receive from MPI
protected fun recv(mpi: MPI, at, count: Int, source: Rank, tag: Tag, comm: Comm) is abstract
# Type specific receive and fill buffer from MPI
protected fun recv_fill(mpi: MPI, source: Rank, tag: Tag, comm: Comm) is abstract
end
lib/mpi/mpi.nit:402,1--412,3