AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
Loading...
Searching...
No Matches
messg.h
1#ifndef H_MESSG_
2#define H_MESSG_
3
4//MPI related routines
5double messg_dmax(double x /* the value */
6#ifdef _MESSG
7 , MPI_Comm ADH_COMM
8#endif
9 );
10
11double messg_dmin(double x /* the value */
12#ifdef _MESSG
13 , MPI_Comm ADH_COMM
14#endif
15 );
16
17int messg_imin(int x /* the value */
18#ifdef _MESSG
19 , MPI_Comm ADH_COMM
20#endif
21 );
22
23int messg_imax(int x /* the value */
24#ifdef _MESSG
25 , MPI_Comm ADH_COMM
26#endif
27 );
28
29double messg_dsum(double x
30#ifdef _MESSG
31 , MPI_Comm ADH_COMM
32#endif
33 );
34
35void messg_err(int ierr);
36
37void messg_buffer_init(MESSG_BUFFER * buffer, /* the message buffer */
38 int i_processor /* the target processor */
39 );
40
41void messg_buffer_free(MESSG_BUFFER * buffer /* the buffer to be packed */
42 );
43
44void messg_gather_int(int root,
45 int *my_x, /* my part of the array */
46 int *x, /* the resulting array */
47 int size /* the size of x */
48#ifdef _MESSG
49 ,MPI_Comm ADH_COMM
50#endif
51 );
52void messg_gather_dbl(int root,
53 double *my_x, /* my part of the array */
54 double *x, /* the resulting array */
55 int size /* the size of x */
56#ifdef _MESSG
57 ,MPI_Comm ADH_COMM
58#endif
59 );
60
61
62void comm_update_double(double *vec, int size_v, int npe, int rank);
63
64int comm_update_ghost(void *arr_like,
65 SMPI *smpi
66#ifdef _MESSG
67 ,MPI_Datatype data_type
68#endif
69 );
70
71#ifdef _MESSG
72void comm_update_int(int *v, /* the vector to be updated */
73 int nvalues, /* number of values to be updated per ghost node */
74 SMPI *smpi
75 );
76#endif
77
78#ifdef _MESSG
79void messg_barrier(MPI_Comm ADH_COMM);
80#endif
81
82#ifdef _MESSG
83 int messg_comm_rank(MPI_Comm comm);
84#else
85 int messg_comm_rank(void);
86#endif
87
88#ifdef _MESSG
89int messg_comm_size(MPI_Comm ADH_COMM);
90#else
91int messg_comm_size(void);
92#endif
93
94#ifdef _MESSG
95void messg_arecv(MESSG_BUFFER *buffer, /* the message */
96 int tag_1, /* the tag */
97 SMPI *smpi
98 );
99#endif
100
101void messg_buffer_alloc(int nitem, /* the number of items to be stored in the buffer */
102 size_t sizeof_item, /* the size of the items */
103 MESSG_BUFFER * buffer /* the buffer to be packed */
104 );
105
106void messg_asend(MESSG_BUFFER * buffer, /* the message */
107 int tag, /* the tag */
108 SMPI *smpi
109 );
110
111void messg_wait(SMPI *smpi);
112
113
114
115int comm_create_neighborhood(SGRID *grid);
116#endif
Definition: smpi.h:33
Definition: sgrid.h:28
Definition: smpi.h:63