⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mpi_exscan.3

📁 MPI stands for the Message Passing Interface. Written by the MPI Forum (a large committee comprising
💻 3
字号:
.\"Copyright 2006, Sun Microsystems, Inc..\" Copyright (c) 1996 Thinking Machines Corporation.TH MPI_Exscan 3OpenMPI "September 2006" "Open MPI 1.2" " ".SH NAME\fBMPI_Exscan\fP \- Computes an exclusive scan (partial reduction).SH SYNTAX.ft R.SH C Syntax.nf#include <mpi.h>int MPI_Exscan(void *\fIsendbuf\fP, void *\fIrecvbuf\fP, int \fIcount\fP, 	MPI_Datatype \fIdatatype\fP, MPI_Op \fIop\fP, MPI_Comm \fIcomm\fP).SH Fortran Syntax.nfINCLUDE 'mpif.h'MPI_SCAN(\fISENDBUF, RECVBUF, COUNT, DATATYPE, OP, COMM, IERROR\fP)	<type>	\fISENDBUF(*), RECVBUF(*)\fP	INTEGER	\fICOUNT, DATATYPE, OP, COMM, IERROR\fP .SH C++ Syntax.nf#include <mpi.h>void MPI::Intracomm::Exscan(const void* \fIsendbuf\fP, void* \fIrecvbuf\fP,	int \fIcount\fP, const MPI::Datatype& \fIdatatype\fP,	const MPI::Op& \fIop\fP) const.SH INPUT PARAMETERS.ft R.TP 1isendbufSend buffer (choice)..TP 1icountNumber of elements in input buffer (integer)..TP 1idatatypeData type of elements of input buffer (handle)..TP 1iopOperation (handle)..TP 1icommCommunicator (handle)..SH OUTPUT PARAMETERS.ft R.TP 1irecvbufReceive buffer (choice)..ft R.TP 1iIERRORFortran only: Error status (integer). .SH DESCRIPTION.ft RMPI_Exscan is used to perform an exclusive prefix reduction on datadistributed across the calling processes. The operation returns, inthe \fIrecvbuf\fP of the process with rank i, the reduction(calculated according to the function \fIop\fP) of the values in the\fIsendbuf\fPs of processes with ranks 0, ..., i-1. Compare this withthe functionality of MPI_Scan, which calculates over the range 0, ...,i (inclusive). The type of operations supported, their semantics, andthe constraints on send and receive buffers are as for MPI_Reduce..spThe value in \fIrecvbuf\fP on process 0 is undefined and unreliableas \fIrecvbuf\fP is not significant for process 0. The value of\fIrecvbuf\fP on process 1 is always the value in \fIsendbuf\fP onprocess 0..spNo MPI_IN_PLACE operation is supported..SH NOTES.ft RMPI does not specify which process computes which operation. Inparticular, both processes 0 and 1 may participate in the computationeven though the results for both processes' \fIrecvbuf\fP aredegenerate. Therefore, all processes, including 0 and 1, must providethe same \fIop\fP..spIt can be argued, from a mathematical perspective, that the definitionof MPI_Exscan is unsatisfactory because the output at process 0 isundefined.  The "mathematically correct" output for process 0 would bethe unit element of the reduction operation. However, such adefinition of an exclusive scan would not work with user-defined\fIop\fP functions as there is no way for MPI to "know" the unit valuefor these custom operations..SH NOTES ON COLLECTIVE OPERATIONS.ft RThe reduction functions of type MPI_Op do not return an error value.As a result, if the functions detect an error, all they can do iseither call MPI_Abort or silently skip the problem. Thus, if theerror handler is changed from MPI_ERRORS_ARE_FATAL to something else(e.g., MPI_ERRORS_RETURN), then no error may be indicated..spThe reason for this is the performance problems in ensuring thatall collective routines return the same error value..SH ERRORS.ft RAlmost all MPI routines return an error value; C routines asthe value of the function and Fortran routines in the last argument. C++functions do not return errors. If the default error handler is set toMPI::ERRORS_THROW_EXCEPTIONS, then on error the C++ exception mechanismwill 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 forI/O function errors. The error handler may be changed withMPI_Comm_set_errhandler; the predefined error handler MPI_ERRORS_RETURNmay be used to cause error values to be returned. Note that MPI does notguarantee that an MPI program can continue past an error. .spSee the MPI man page for a full list of MPI error codes..SH SEE ALSO.ft R.nfMPI_Op_createMPI_ReduceMPI_Scan' @(#)MPI_Exscan.3 1.4 06/03/09

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -