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