Upgrade macos
This commit is contained in:
@@ -1,13 +1,22 @@
|
||||
.TH MPI_Unpack_external 3 "6/5/2019" " " "MPI"
|
||||
.TH MPI_Unpack_external 3 "2/3/2025" " " "MPI"
|
||||
.SH NAME
|
||||
MPI_Unpack_external \- Unpack a buffer (packed with MPI_Pack_external) according to a datatype into contiguous memory
|
||||
.SH SYNOPSIS
|
||||
.nf
|
||||
int MPI_Unpack_external(const char datarep[],
|
||||
const void *inbuf,
|
||||
MPI_Aint insize,
|
||||
MPI_Aint * position, void *outbuf, int outcount, MPI_Datatype datatype)
|
||||
.fi
|
||||
.nf
|
||||
int MPI_Unpack_external(const char datarep[], const void *inbuf,
|
||||
MPI_Aint insize, MPI_Aint *position, void *outbuf,
|
||||
int outcount, MPI_Datatype datatype)
|
||||
.fi
|
||||
|
||||
.nf
|
||||
int MPI_Unpack_external_c(const char datarep[], const void *inbuf,
|
||||
MPI_Count insize, MPI_Count *position, void *outbuf,
|
||||
MPI_Count outcount, MPI_Datatype datatype)
|
||||
.fi
|
||||
|
||||
|
||||
.SH INPUT PARAMETERS
|
||||
.PD 0
|
||||
.TP
|
||||
@@ -22,7 +31,7 @@ int MPI_Unpack_external(const char datarep[],
|
||||
.PD 0
|
||||
.TP
|
||||
.B insize
|
||||
- input buffer size, in bytes (address integer)
|
||||
- input buffer size, in bytes (integer)
|
||||
.PD 1
|
||||
.PD 0
|
||||
.TP
|
||||
@@ -39,7 +48,7 @@ int MPI_Unpack_external(const char datarep[],
|
||||
.PD 0
|
||||
.TP
|
||||
.B position
|
||||
- current position in buffer, in bytes (address integer)
|
||||
- current position in buffer, in bytes (integer)
|
||||
.PD 1
|
||||
|
||||
.SH OUTPUT PARAMETERS
|
||||
@@ -106,7 +115,7 @@ its use is deprecated. The predefined error handler
|
||||
may be used to cause error values to be returned.
|
||||
Note that MPI does
|
||||
.B not
|
||||
guarentee that an MPI program can continue past
|
||||
guarantee that an MPI program can continue past
|
||||
an error; however, MPI implementations will attempt to continue whenever
|
||||
possible.
|
||||
|
||||
@@ -117,6 +126,20 @@ possible.
|
||||
.PD 1
|
||||
.PD 0
|
||||
.TP
|
||||
.B MPI_ERR_ARG
|
||||
- Invalid argument. Some argument is invalid and is not
|
||||
identified by a specific error class (e.g.,
|
||||
.I MPI_ERR_RANK
|
||||
).
|
||||
.PD 1
|
||||
.PD 0
|
||||
.TP
|
||||
.B MPI_ERR_COUNT
|
||||
- Invalid count argument. Count arguments must be
|
||||
non-negative; a count of zero is often valid.
|
||||
.PD 1
|
||||
.PD 0
|
||||
.TP
|
||||
.B MPI_ERR_TYPE
|
||||
- Invalid datatype argument. Additionally, this error can
|
||||
occur if an uncommitted MPI_Datatype (see
|
||||
@@ -126,9 +149,10 @@ in a communication call.
|
||||
.PD 1
|
||||
.PD 0
|
||||
.TP
|
||||
.B MPI_ERR_ARG
|
||||
- Invalid argument. Some argument is invalid and is not
|
||||
identified by a specific error class (e.g.,
|
||||
.I MPI_ERR_RANK
|
||||
).
|
||||
.B MPI_ERR_OTHER
|
||||
- Other error; use
|
||||
.I MPI_Error_string
|
||||
to get more information
|
||||
about this error code.
|
||||
.PD 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user