Changes between Version 2 and Version 3 of mpich/MPI_Send


Ignore:
Timestamp:
Mar 28, 2008, 5:30:54 PM (16 years ago)
Author:
wade
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • mpich/MPI_Send

    v2 v3  
    88  itag  要送出去的資料標籤。[[BR]]
    99  MPI_COMM_WORLD  通信域。[[BR]]
     10
     11= MPI_Send =
     12Performs a basic send
     13= Synopsis =
     14
     15#include "mpi.h"
     16int MPI_Send( void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm )
     17
     18= Input Parameters =
     19{{{
     20        buf       initial address of send buffer (choice)
     21        count     number of elements in send buffer (nonnegative integer)
     22        datatype  datatype of each send buffer element (handle)
     23        dest      rank of destination (integer)
     24        tag       message tag (integer)
     25        comm      communicator (handle)
     26}}}
     27
     28Notes
     29This routine may block until the message is received.