MOOCHO (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RTOp_mpi.h
Go to the documentation of this file.
1 /*
2 // @HEADER
3 // ***********************************************************************
4 //
5 // Moocho: Multi-functional Object-Oriented arCHitecture for Optimization
6 // Copyright (2003) Sandia Corporation
7 //
8 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
9 // license for use of this work by or on behalf of the U.S. Government.
10 //
11 // Redistribution and use in source and binary forms, with or without
12 // modification, are permitted provided that the following conditions are
13 // met:
14 //
15 // 1. Redistributions of source code must retain the above copyright
16 // notice, this list of conditions and the following disclaimer.
17 //
18 // 2. Redistributions in binary form must reproduce the above copyright
19 // notice, this list of conditions and the following disclaimer in the
20 // documentation and/or other materials provided with the distribution.
21 //
22 // 3. Neither the name of the Corporation nor the names of the
23 // contributors may be used to endorse or promote products derived from
24 // this software without specific prior written permission.
25 //
26 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
27 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
30 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 //
38 // Questions? Contact Roscoe A. Bartlett (rabartl@sandia.gov)
39 //
40 // ***********************************************************************
41 // @HEADER
42 */
43 
44 /* */
45 /* MPI declarations used by RTOp example program. */
46 /* These where taken from mpich for Windows NT. */
47 /* */
48 
49 #ifndef RTOP_MPI_H
50 #define RTOP_MPI_H
51 
52 #include "RTOp_ConfigDefs.hpp" /* This C++ file has a proper C mode */
53 
54 #ifdef __cplusplus
55 extern "C" {
56 #endif
57 
58 /* ////////////////////////// */
59 /* MPI declarations */
60 
61 #define MPI_Aint int
62 typedef int MPI_Datatype;
63 #define MPI_CHAR ((MPI_Datatype)1)
64 #define MPI_INT ((MPI_Datatype)6)
65 #define MPI_FLOAT ((MPI_Datatype)10)
66 #define MPI_DOUBLE ((MPI_Datatype)11)
67 typedef int MPI_Comm;
68 #define MPI_COMM_WORLD 91
69 #define MPI_COMM_NULL ((MPI_Comm)0)
70 typedef int MPI_Op;
71 #define MPI_OP_NULL ((MPI_Op)0)
72 #define MPI_MAX (MPI_Op)(100)
73 #define MPI_MIN (MPI_Op)(101)
74 #define MPI_SUM (MPI_Op)(102)
75 #define MPI_DATATYPE_NULL ((MPI_Datatype)0)
76 typedef struct { int MPI_SOURCE; int MPI_TAG; int MPI_ERROR; } RTOP_MPI_Status;
77 typedef void (MPI_User_function) ( void *, void *, int *, MPI_Datatype * );
78 
79 /* ////////////////////////// */
80 /* MPI functions */
81 
82 #define EXPORT_MPI_API
83 EXPORT_MPI_API int MPI_Init(int *, char ***);
85 EXPORT_MPI_API int MPI_Comm_size(MPI_Comm, int *);
86 EXPORT_MPI_API int MPI_Comm_rank(MPI_Comm, int *);
87 EXPORT_MPI_API int MPI_Type_struct(int, int *, MPI_Aint *, MPI_Datatype *, MPI_Datatype *);
88 EXPORT_MPI_API int MPI_Type_commit(MPI_Datatype *);
89 EXPORT_MPI_API int MPI_Type_free(MPI_Datatype *);
90 EXPORT_MPI_API int MPI_Op_create(MPI_User_function *, int, MPI_Op *);
91 EXPORT_MPI_API int MPI_Op_free( MPI_Op *);
92 EXPORT_MPI_API int MPI_Send(void*, int, MPI_Datatype, int, int, MPI_Comm);
93 EXPORT_MPI_API int MPI_Recv(void*, int, MPI_Datatype, int, int, MPI_Comm, RTOP_MPI_Status*);
94 EXPORT_MPI_API int MPI_Sendrecv_replace(void*, int, MPI_Datatype, int, int, int, int, MPI_Comm, RTOP_MPI_Status*);
95 EXPORT_MPI_API int MPI_Reduce(void* , void*, int, MPI_Datatype, MPI_Op, int, MPI_Comm);
96 EXPORT_MPI_API int MPI_Allreduce(void* , void*, int, MPI_Datatype, MPI_Op, MPI_Comm);
97 EXPORT_MPI_API int MPI_Barrier(MPI_Comm);
98 EXPORT_MPI_API int MPI_Bcast(void*, int, MPI_Datatype, int, MPI_Comm );
99 EXPORT_MPI_API int MPI_Gather(void* , int, MPI_Datatype, void*, int, MPI_Datatype, int, MPI_Comm);
100 
101 #ifdef __cplusplus
102 }
103 #endif
104 
105 #endif /* RTOP_MPI_H */
EXPORT_MPI_API int MPI_Sendrecv_replace(void *, int, MPI_Datatype, int, int, int, int, MPI_Comm, RTOP_MPI_Status *)
Definition: RTOp_mpi.c:146
EXPORT_MPI_API int MPI_Allreduce(void *, void *, int, MPI_Datatype, MPI_Op, MPI_Comm)
Definition: RTOp_mpi.c:164
EXPORT_MPI_API int MPI_Init(int *, char ***)
Definition: RTOp_mpi.c:61
EXPORT_MPI_API int MPI_Op_free(MPI_Op *)
Definition: RTOp_mpi.c:129
void( MPI_User_function)(void *, void *, int *, MPI_Datatype *)
Definition: RTOp_mpi.h:77
EXPORT_MPI_API int MPI_Recv(void *, int, MPI_Datatype, int, int, MPI_Comm, RTOP_MPI_Status *)
Definition: RTOp_mpi.c:140
typedef void(CALL_API *RTOp_reduct_op_func_ptr_t)(void *
EXPORT_MPI_API int MPI_Comm_size(MPI_Comm, int *)
Definition: RTOp_mpi.c:71
EXPORT_MPI_API int MPI_Op_create(MPI_User_function *, int, MPI_Op *)
Definition: RTOp_mpi.c:124
EXPORT_MPI_API int MPI_Type_commit(MPI_Datatype *)
Definition: RTOp_mpi.c:113
int MPI_Comm
Definition: RTOp_mpi.h:67
#define MPI_Aint
Definition: RTOp_mpi.h:61
EXPORT_MPI_API int MPI_Send(void *, int, MPI_Datatype, int, int, MPI_Comm)
Definition: RTOp_mpi.c:135
EXPORT_MPI_API int MPI_Comm_rank(MPI_Comm, int *)
Definition: RTOp_mpi.c:77
EXPORT_MPI_API int MPI_Bcast(void *, int, MPI_Datatype, int, MPI_Comm)
Definition: RTOp_mpi.c:181
EXPORT_MPI_API int MPI_Finalize(void)
Definition: RTOp_mpi.c:66
EXPORT_MPI_API int MPI_Type_struct(int, int *, MPI_Aint *, MPI_Datatype *, MPI_Datatype *)
Definition: RTOp_mpi.c:83
EXPORT_MPI_API int MPI_Gather(void *, int, MPI_Datatype, void *, int, MPI_Datatype, int, MPI_Comm)
Definition: RTOp_mpi.c:186
EXPORT_MPI_API int MPI_Reduce(void *, void *, int, MPI_Datatype, MPI_Op, int, MPI_Comm)
Definition: RTOp_mpi.c:152
#define EXPORT_MPI_API
Definition: RTOp_mpi.h:82
EXPORT_MPI_API int MPI_Type_free(MPI_Datatype *)
Definition: RTOp_mpi.c:118
int MPI_Op
Definition: RTOp_mpi.h:70
EXPORT_MPI_API int MPI_Barrier(MPI_Comm)
Definition: RTOp_mpi.c:176
int MPI_Datatype
Definition: RTOp_mpi.h:62