📄 mpi_abort.3
字号:
.\"Copyright 2006, Sun Microsystems, Inc..\" Copyright (c) 1996 Thinking Machines Corporation.TH MPI_Abort 3OpenMPI "September 2006" "Open MPI 1.2" " ".SH NAME\fBMPI_Abort\fP \- Terminates MPI execution environment..SH SYNTAX.ft R.SH C Syntax.nf#include <mpi.h>int MPI_Abort(MPI_Comm \fIcomm\fP, int\fI errorcode\fP).SH Fortran Syntax.ftR.nfINCLUDE 'mpif.h'MPI_ABORT(\fICOMM\fP, \fIERRORCODE\fP, \fIIERROR\fP) INTEGER \fICOMM\fP,\fI ERRORCODE\fP,\fI IERROR .SH C++ Syntax.nf#include <mpi.h>void Comm::Abort(int \fIerrorcode\fP).SH INPUT PARAMETERS.ft R.TP 1icomm Communicator of tasks to abort..TP 1ierrorcode Error code to return to invoking environment..SH OUTPUT PARAMETER.ft R.TP 1iIERRORFortran only: Error status (integer). .SH DESCRIPTION.ft RThis routine makes a "best attempt" to abort all tasks in the group ofcomm. This function does not require that the invoking environment take anyaction with the error code. However, a UNIX or POSIXenvironment should handle this as a return errorcode from the main programor an abort (errorcode)..spThe Open MPI implementation terminates all processes in all tasks that contain a process in \fIcomm\fP, and the error code is not returned to the invoking environment..spNote: All associated processes are sent a SIGTERM..SH ERRORSAlmost all MPI routines return an error value; C routines as the value of the function and Fortran routines in the last argument. C++ functions do not return errors. If the default error handler is set to MPI::ERRORS_THROW_EXCEPTIONS, then on error the C++ exception mechanism will be used to throw an MPI:Exception object..spBefore the error value is returned, the current MPI error handler iscalled. By default, this error handler aborts the MPI job, except for I/O function errors. The error handlermay be changed with MPI_Comm_set_errhandler; the predefined error handler MPI_ERRORS_RETURN may be used to cause error values to be returned. Note that MPI does not guarantee that an MPI program can continue past an error. ' @(#)MPI_Abort.3 1.20 06/03/09
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -