1MPI_Attr_put(3) LAM/MPI MPI_Attr_put(3)
2
3
4
6 MPI_Attr_put - Stores a communicator attribute value associated with a
7 key
8
10 #include <mpi.h>
11 int MPI_Attr_put(MPI_Comm comm, int key, void *value)
12
14 comm - communicator to which attribute will be attached (handle)
15 key - key value, as returned by MPI_COMM_CREATE_KEYVAL (integer)
16 value - attribute value
17
18
19
21 This function is deprecated. It has been replaced with an MPI-2 func‐
22 tion (see the "See also" section, below), which provides the same func‐
23 tionality. This function is (or effectively is) a wrapper to the
24 replacement function, anyway. User programs should use the MPI-2
25 replacement function instead of this function.
26
27 Some functions are deprecated because their names did not conform to
28 the stricter naming conventions of MPI-2; others are deprecated because
29 they have been replaced with more flexible functionality.
30
31
33 MPI_Comm_set_attr
34
35
37 For more information, please see the official MPI Forum web site, which
38 contains the text of both the MPI-1 and MPI-2 standards. These docu‐
39 ments contain detailed information about each MPI function (most of
40 which is not duplicated in these man pages).
41
42 http://www.mpi-forum.org/
43
44
45
47 The LAM Team would like the thank the MPICH Team for the handy program
48 to generate man pages ("doctext" from ftp://ftp.mcs.anl.gov/pub/sow‐
49 ing/sowing.tar.gz ), the initial formatting, and some initial text for
50 most of the MPI-1 man pages.
51
53 attrput.c
54
55
56
57LAM/MPI 7.1.2 2/23/2006 MPI_Attr_put(3)