close
Warning:
Can't synchronize with repository "(default)" (Unsupported version control system "svn": /usr/lib/python2.7/dist-packages/libsvn/_delta.so: failed to map segment from shared object: Cannot allocate memory). Look in the Trac log for more information.
- Timestamp:
-
Mar 28, 2008, 5:30:54 PM (18 years ago)
- Author:
-
wade
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
|
v2
|
v3
|
|
| 8 | 8 | itag 要送出去的資料標籤。[[BR]] |
| 9 | 9 | MPI_COMM_WORLD 通信域。[[BR]] |
| | 10 | |
| | 11 | = MPI_Send = |
| | 12 | Performs a basic send |
| | 13 | = Synopsis = |
| | 14 | |
| | 15 | #include "mpi.h" |
| | 16 | int 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 | |
| | 28 | Notes |
| | 29 | This routine may block until the message is received. |