Upgrade macos

This commit is contained in:
Bassem Girgis
2025-03-19 08:52:56 -05:00
parent 53580cb51f
commit d29ef955f5
8041 changed files with 1936720 additions and 130842 deletions

View File

@@ -1,11 +1,21 @@
.TH MPI_Unpack 3 "6/5/2019" " " "MPI"
.TH MPI_Unpack 3 "2/3/2025" " " "MPI"
.SH NAME
MPI_Unpack \- Unpack a buffer according to a datatype into contiguous memory
.SH SYNOPSIS
.nf
int MPI_Unpack(const void *inbuf, int insize, int *position,
void *outbuf, int outcount, MPI_Datatype datatype, MPI_Comm comm)
.fi
.nf
int MPI_Unpack(const void *inbuf, int insize, int *position, void *outbuf,
int outcount, MPI_Datatype datatype, MPI_Comm comm)
.fi
.nf
int MPI_Unpack_c(const void *inbuf, MPI_Count insize, MPI_Count *position,
void *outbuf, MPI_Count outcount, MPI_Datatype datatype,
MPI_Comm comm)
.fi
.SH INPUT PARAMETERS
.PD 0
.TP
@@ -15,7 +25,7 @@ int MPI_Unpack(const void *inbuf, int insize, int *position,
.PD 0
.TP
.B insize
- size of input buffer, in bytes (integer)
- size of input buffer, in bytes (non-negative integer)
.PD 1
.PD 0
.TP
@@ -33,20 +43,19 @@ int MPI_Unpack(const void *inbuf, int insize, int *position,
- communicator for packed message (handle)
.PD 1
.SH OUTPUT PARAMETERS
.PD 0
.TP
.B outbuf
- output buffer start (choice)
.PD 1
.SH INOUT/OUTPUT PARAMETERS
.SH INPUT/OUTPUT PARAMETERS
.PD 0
.TP
.B position
- current position in bytes (integer)
.PD 1
.SH OUTPUT PARAMETERS
.PD 0
.TP
.B outbuf
- output buffer start (choice)
.PD 1
.SH THREAD AND INTERRUPT SAFETY
@@ -105,7 +114,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.
@@ -116,6 +125,14 @@ 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_COMM
- Invalid communicator. A common error is to use a null
communicator in a call (not even allowed in
@@ -139,11 +156,11 @@ 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
.SH SEE ALSO