source: proiecte/hpl/openmpi_compiled/share/man/man3/MPI_Comm_set_name.3 @ 97

Last change on this file since 97 was 97, checked in by (none), 14 years ago

Adding compiled files

File size: 3.0 KB
Line 
1.\"Copyright 2006-2008 Sun Microsystems, Inc.
2.\"Copyright (c) 1996 Thinking Machines
3.TH MPI_Comm_set_name 3 "Dec 08, 2009" "1.4" "Open MPI"
4.SH NAME
5\fBMPI_Comm_set_name\fP \- Associates a name with a communicator.
6
7.SH SYNTAX
8.ft R
9.SH C Syntax
10.nf
11#include <mpi.h>
12int MPI_Comm_set_name(MPI_Comm \fIcomm\fP, char *\fIcomm_name\fP)
13
14.SH Fortran Syntax
15.nf
16INCLUDE 'mpif.h'
17MPI_COMM_SET_NAME(\fICOMM, COMM_NAME, IERROR\fP)
18        INTEGER \fICOMM, IERROR \fP
19        CHARACTER*(*) \fICOMM_NAME\fP
20
21.SH C++ Syntax
22.nf
23#include <mpi.h>
24void MPI::Comm::Set_name(const char* \fIcomm_name\fP)
25
26.SH INPUT/OUTPUT PARAMETER
27.ft R
28.TP 1i
29comm
30Communicator whose identifier is to be set (handle).
31
32.SH INPUT PARAMETER
33.ft R
34.TP 1i
35comm_name
36Character string to be used as the identifier for the communicator (string).
37
38.SH OUTPUT PARAMETER
39.ft R
40.TP 1i
41IERROR
42Fortran only: Error status (integer).
43
44
45.SH DESCRIPTION
46.ft R
47MPI_Comm_set_name allows a user to associate a name string with a communicator. The character string that is passed to MPI_Comm_set_name is saved inside the MPI library (so it can be freed by the caller immediately after the call, or allocated on the stack). Leading spaces in \fIname\fP are significant, but trailing ones are not.
48.sp
49MPI_Comm_set_name is a local (noncollective) operation, which affects only the name of the communicator as seen in the process that made the MPI_Comm_set_name call. There is no requirement that the same (or any) name be assigned to a communicator in every process where it exists.
50.sp
51The length of the name that can be stored is limited to the value of MPI_MAX_OBJECT_NAME in Fortran and MPI_MAX_OBJECT_NAME-1 in C and C++ (to allow for the null terminator). Attempts to set names longer than this will result in truncation of the name. MPI_MAX_OBJECT_NAME must have a value of at least 64.
52
53
54.SH NOTES
55.ft R
56Since MPI_Comm_set_name is provided to help debug code, it is sensible to give the same name to a communicator in all of the processes where it exists, to avoid confusion.
57.sp
58Regarding name length, under circumstances of store exhaustion, an attempt to set a name of any length could fail; therefore, the value of MPI_MAX_OBJECT_NAME should be viewed only as a strict upper bound on the name length, not a guarantee that setting names of less than this length will always succeed.
59
60.SH ERRORS
61Almost 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.
62.sp
63Before the error value is returned, the current MPI error handler is
64called. 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. 
65
66.SH SEE ALSO
67.ft R
68MPI_Comm_get_name
69.sp
70
71
Note: See TracBrowser for help on using the repository browser.