[This is preliminary documentation and is subject to change.]
An immediate (non-blocking) point-to-point send.
See ImmediateSend<(Of <(T>)>)(T, Int32, Int32).
Namespace:
MPIAssembly: MPI (in MPI.dll)
Version: 0.8.0.0 (0.8.0.0)
Syntax
| C# |
|---|
public static int MPI_Isend( IntPtr buf, int count, int datatype, int dest, int tag, int comm, out int request ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function MPI_Isend ( _ buf As IntPtr, _ count As Integer, _ datatype As Integer, _ dest As Integer, _ tag As Integer, _ comm As Integer, _ <OutAttribute> ByRef request As Integer _ ) As Integer |
| Visual C++ |
|---|
public: static int MPI_Isend( IntPtr buf, int count, int datatype, int dest, int tag, int comm, [OutAttribute] int% request ) |
Parameters
- buf
- Type: System..::.IntPtr
Buffer of data to send.
- count
- Type: System..::.Int32
The number of elements in buf.
- datatype
- Type: System..::.Int32
The type of data in buf.
- dest
- Type: System..::.Int32
Rank of the destination process.
- tag
- Type: System..::.Int32
Tag used to transmit this data.
- comm
- Type: System..::.Int32
Communicator through which this data will be sent.
- request
- Type:
System..::.Int32
%
Receives a request object that can be used to query this communication.