Bridge++  Ver. 1.2.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
communicator.h
Go to the documentation of this file.
1 
10 #ifndef __COMMUNICATOR_INCLUDED
11 #define __COMMUNICATOR_INCLUDED
12 
13 #include "configure.h"
14 #include "defs.h"
15 
16 #include <cstdio>
17 #include <cstdlib>
18 #include <cstddef>
19 #include <string>
20 using std::string;
21 
22 class Channel;
23 
25 
39 // forward declaration
40 //class Channel;
41 
42 class Communicator {
43  public:
45 
54  static int init(int *pargc, char ***pargv);
55 
57 
62  static int finalize();
63 
65 
70  static void abort();
71 
73 
80  static int setup(int ninstance = 1);
81 
82 // info about rank
83  static bool is_primary();
84  static bool is_primary_master();
85 
86  static int self();
87 
88  static int nodeid() { return self(); }
89  static int size();
90 
91 #ifdef ENABLE_MULTI_INSTANCE
92  static int self_global();
93  static int world_id();
94 
95 #endif
96 
97 // layout
98  static int ipe(const int dir);
99  static int npe(const int dir);
100 
101  static int grid_rank(int *rank, const int *grid_coord);
102  static int grid_coord(int *grid_coord, const int rank);
103  static int grid_dims(int *grid_dims);
104 
105 // synchronize
106  static int sync();
107 
108 #ifdef ENABLE_MULTI_INSTANCE
109  static int sync_global();
110 
111 #endif
112 
113 // data transfer
114  static int broadcast(int count, double *data, int sender);
115  static int broadcast(int count, int *data, int sender);
116  static int broadcast(int count, string& data, int sender);
117 
118  static int exchange(int count, double *recv_buf, double *send_buf, int idir, int ipm, int tag);
119  static int exchange(int count, int *recv_buf, int *send_buf, int idir, int ipm, int tag);
120 
121  static int send_1to1(int count, double *recv_buf, double *send_buf, int p_to, int p_from, int tag);
122  static int send_1to1(int count, int *recv_buf, int *send_buf, int p_to, int p_from, int tag);
123 
124  static int reduce_sum(int count, double *recv_buf, double *send_buf, int pattern = 0);
125  static int reduce_sum(int count, int *recv_buf, int *send_buf, int pattern = 0);
126 
127  static int reduce_max(int count, double *recv_buf, double *send_buf, int pattern = 0);
128  static int reduce_max(int count, int *recv_buf, int *send_buf, int pattern = 0);
129 
130  static int reduce_min(int count, double *recv_buf, double *send_buf, int pattern = 0);
131  static int reduce_min(int count, int *recv_buf, int *send_buf, int pattern = 0);
132 
133  static double reduce_sum(double);
134  static double reduce_max(double);
135  static double reduce_min(double);
136 
137  static double get_time();
138 
139  // async communication
140  static Channel *send_init(int count, int idir, int ipm);
141  static Channel *recv_init(int count, int idir, int ipm);
142 
143 // debug
144  static int status();
145 
147 
152  class Base {
153  public:
154  static int broadcast(size_t size, void *data, int sender);
155  static int exchange(size_t size, void *recv_buf, void *send_buf, int idir, int ipm, int tag);
156 
157  static int send_1to1(size_t size, void *recv_buf, void *send_buf, int send_to, int recv_from, int tag);
158  };
159 
160  private:
161 
163 
172 
174 };
175 #endif /* __COMMUNICATOR_INCLUDED */
static int npe(const int dir)
logical grid extent
static int reduce_max(int count, double *recv_buf, double *send_buf, int pattern=0)
find a global maximum of an array of double over the communicator. pattern specifies the dimensions t...
static void abort()
terminate communicator
static bool is_primary_master()
check if the present node is primary in global communicator.
static int init(int *pargc, char ***pargv)
initialize communicator
static int grid_coord(int *grid_coord, const int rank)
find grid coordinate from rank number.
Communication library which wraps MPI.
Definition: communicator.h:42
static int reduce_min(int count, double *recv_buf, double *send_buf, int pattern=0)
find a global minimum of an array of double over the communicator. pattern specifies the dimensions t...
Communicator()
no instance at all
Definition: communicator.h:169
Communicator(const Communicator &)
Definition: communicator.h:170
static Channel * recv_init(int count, int idir, int ipm)
static int broadcast(size_t size, void *data, int sender)
static int ipe(const int dir)
logical coordinate of current proc.
Channel class for asynchronous communication.
Definition: channel.h:16
static int finalize()
finalize communicator
static int send_1to1(int count, double *recv_buf, double *send_buf, int p_to, int p_from, int tag)
send array of double from rank p_from to rank p_to. communication distinguished by tag...
static int exchange(size_t size, void *recv_buf, void *send_buf, int idir, int ipm, int tag)
static int grid_dims(int *grid_dims)
find grid dimensions.
static int exchange(int count, double *recv_buf, double *send_buf, int idir, int ipm, int tag)
receive array of double from upstream specified by idir and ipm, and send array to downstream...
static int status()
static int grid_rank(int *rank, const int *grid_coord)
find rank number from grid coordinate.
static int setup(int ninstance=1)
setup communicator
static int send_1to1(size_t size, void *recv_buf, void *send_buf, int send_to, int recv_from, int tag)
static int size()
size of small world.
static double get_time()
obtain a wall-clock time.
static Channel * send_init(int count, int idir, int ipm)
static int reduce_sum(int count, double *recv_buf, double *send_buf, int pattern=0)
make a global sum of an array of double over the communicator. pattern specifies the dimensions to be...
static int sync()
synchronize within small world.
Communicator & operator=(const Communicator &)
static int broadcast(int count, double *data, int sender)
broadcast array of double from sender.
static int nodeid()
alternative name for self().
Definition: communicator.h:88
static bool is_primary()
check if the present node is primary in small communicator.