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,13 +1,22 @@
.TH MPI_Pack_external 3 "6/5/2019" " " "MPI"
.TH MPI_Pack_external 3 "2/3/2025" " " "MPI"
.SH NAME
MPI_Pack_external \- Packs a datatype into contiguous memory, using the external32 format
.SH SYNOPSIS
.nf
int MPI_Pack_external(const char datarep[],
const void *inbuf,
int incount,
MPI_Datatype datatype, void *outbuf, MPI_Aint outsize, MPI_Aint * position)
.fi
.nf
int MPI_Pack_external(const char *datarep, const void *inbuf, int incount,
MPI_Datatype datatype, void *outbuf, MPI_Aint outsize,
MPI_Aint *position)
.fi
.nf
int MPI_Pack_external_c(const char *datarep, const void *inbuf,
MPI_Count incount, MPI_Datatype datatype, void *outbuf,
MPI_Count outsize, MPI_Count *position)
.fi
.SH INPUT PARAMETERS
.PD 0
.TP
@@ -32,7 +41,14 @@ int MPI_Pack_external(const char datarep[],
.PD 0
.TP
.B outsize
- output buffer size, in bytes (address integer)
- output buffer size, in bytes (integer)
.PD 1
.SH INPUT/OUTPUT PARAMETERS
.PD 0
.TP
.B position
- current position in buffer, in bytes (integer)
.PD 1
.SH OUTPUT PARAMETERS
@@ -42,13 +58,6 @@ int MPI_Pack_external(const char datarep[],
- output buffer start (choice)
.PD 1
.SH INPUT/OUTPUT PARAMETERS
.PD 0
.TP
.B position
- current position in buffer, in bytes (address integer)
.PD 1
.SH THREAD AND INTERRUPT SAFETY
This routine is thread-safe. This means that this routine may be
@@ -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,15 +126,6 @@ possible.
.PD 1
.PD 0
.TP
.B MPI_ERR_TYPE
- Invalid datatype argument. Additionally, this error can
occur if an uncommitted MPI_Datatype (see
.I MPI_Type_commit
) is used
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.,
@@ -138,3 +138,21 @@ identified by a specific error class (e.g.,
- 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
.I MPI_Type_commit
) is used
in a communication call.
.PD 1
.PD 0
.TP
.B MPI_ERR_OTHER
- Other error; use
.I MPI_Error_string
to get more information
about this error code.
.PD 1