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

📄 mpi_keyval_create.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_Keyval_create 3OpenMPI "September 2006" "Open MPI 1.2" " ".SH NAME\fBMPI_Keyval_create\fP \- Generates a new attribute key -- use of this routine is deprecated..SH SYNTAX.ft R.SH C Syntax.nf#include <mpi.h>int MPI_Keyval_create(MPI_Copy_function *\fIcopy_fn\fP,	MPI_Delete_function *\fIdelete_fn\fP, int *\fIkeyval\fP, void *\fIextra_state\fP).SH Fortran Syntax.nfINCLUDE 'mpif.h'MPI_KEYVAL_CREATE(\fICOPY_FN, DELETE_FN, KEYVAL, EXTRA_STATE, IERROR\fP)	EXTERNAL	\fICOPY_FN, DELETE_FN\fP	INTEGER	\fIKEYVAL, EXTRA_STATE, IERROR\fP.SH INPUT PARAMETERS.ft R.TP 1icopy_fnCopy callback function for keyval..TP 1idelete_fnDelete callback function for keyval..TP 1iextra_stateExtra state for callback functions..SH OUTPUT PARAMETERS.ft R.TP 1ikeyvalKey value for future access (integer)..ft R.TP 1iIERRORFortran only: Error status (integer). .SH DESCRIPTION.ft RNote that use of this routine is \fIdeprecated\fP as of MPI-2. Please use MPI_Comm_create_keyval instead. .spThis deprecated routine is not available in C++. .spGenerates a new attribute key. Keys are locally unique in a process and opaque to the user, though they are explicitly stored in integers. Once allocated, the key value can be used to associate attributes and access them on any locally defined communicator..spThe copy_fn function is invoked when a communicator is duplicated by MPI_COMM_DUP. copy_fn should be of type MPI_Copy_function, which is defined as follows: .sp.nf  typedef int MPI_Copy_function(MPI_Comm oldcomm, int keyval,                                 void *extra_state, void *attribute_val_in,                                 void *attribute_val_out, int *flag).fiA Fortran declaration for such a function is as follows: .sp.nf  SUBROUTINE COPY_FUNCTION(OLDCOMM, KEYVAL, EXTRA_STATE, ATTRIBUTE_VAL_IN,              ATTRIBUTE_VAL_OUT, FLAG, IERR)  INTEGER OLDCOMM, KEYVAL, EXTRA_STATE,  ATTRIBUTE_VAL_IN, ATTRIBUTE_VAL_OUT, IERR   LOGICAL FLAG .fi.spThe copy callback function is invoked for each key value in oldcomm in arbitrary order. Each call to the copy callback is made with a key value and its corresponding attribute. If it returns flag = 0, then the attribute is deleted in the duplicated communicator. Otherwise ( flag = 1), the new attribute value is set to the value returned in attribute_val_out. The function returns MPI_SUCCESS on success and an error code on failure (in which case MPI_Comm_dup will fail). .spcopy_fn may be specified as MPI_NULL_COPY_FN or MPI_DUP_FN from either C orFortran; MPI_NULL_COPY_FN is a function that does nothing other than return flag = 0, and MPI_SUCCESS. MPI_DUP_FN is a simple-minded copy function that sets flag = 1, returns the value of attribute_val_in in attribute_val_out, and returns MPI_SUCCESS. .SH NOTESKey values are global (available for any and all communicators)..spThere are subtle differences between C and Fortran that require that the copy_fn be written in the same language that MPI_Keyval_create is called from. This should not be a problem for most users; only programers using both Fortran and C in the same program need to be sure that they follow this rule. .spEven though both formal arguments attribute_val_inand attribute_val_out are of type void*, their usage differs. The C copy function is passed by MPI in attribute_val_in the value of the attribute, and in attribute_val_out the address of the attribute, so as to allow the function to return the (new) attribute value. The use of type void* for both is to avoid messy type casts.  .spA valid copy function is one that completely duplicates the information by making a full duplicate copy of the data structures implied by an attribute; another might just make another reference to that data structure, while using a reference-count mechanism. Other types of attributes might not copy at all (they might be specific to oldcomm only). .spAnalogous to copy_fn is a callback deletion function, defined as follows. The delete_fn function is invoked when a communicator is deleted by MPI_Comm_free or when a call is made explicitly to MPI_Attr_delete. delete_fn should be of type MPI_Delete_function, which is defined as follows: .sp.nf  typedef int MPI_Delete_function(MPI_Comm comm, int keyval,       void *attribute_val, void *extra_state); .fi.spA Fortran declaration for such a function is as follows: .sp.nf  SUBROUTINE DELETE_FUNCTION(COMM, KEYVAL,ATTRIBUTE_VAL, EXTRA_STATE, IERR)      INTEGER COMM, KEYVAL, ATTRIBUTE_VAL, EXTRA_STATE, IERR .fi.spThis function is called by MPI_Comm_free, MPI_Attr_delete, and MPI_Attr_put to do whatever is needed to remove an attribute. The function returns MPI_SUCCESS on success and an error code on failure (in which case MPI_COMM_FREE will fail). .spdelete_fn may be specified as MPI_NULL_DELETE_FN from either C or FORTRAN; MPI_NULL_DELETE_FN is a function that does nothing, other than returning MPI_SUCCESS.  .spThe special key value MPI_KEYVAL_INVALID is never returned by MPI_Keyval_create. Therefore, it can be used for static initialization of key values. .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 handler may 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.  .SH SEE ALSOMPI_Keyval_free.br' @(#)MPI_Keyval_create.3 1.21 06/03/09   

⌨️ 快捷键说明

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