Merge branch release-4-6 into master
[alexxy/gromacs.git] / src / gromacs / legacyheaders / domdec.h
1 /* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
2  *
3  *
4  * This file is part of Gromacs        Copyright (c) 1991-2008
5  * David van der Spoel, Erik Lindahl, Berk Hess, University of Groningen.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * To help us fund GROMACS development, we humbly ask that you cite
13  * the research papers on the package. Check out http://www.gromacs.org
14  *
15  * And Hey:
16  * Gnomes, ROck Monsters And Chili Sauce
17  */
18
19 #ifndef _domdec_h
20 #define _domdec_h
21
22 #include "typedefs.h"
23 #include "types/commrec.h"
24 #include "vsite.h"
25 #include "genborn.h"
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 int ddglatnr(gmx_domdec_t *dd, int i);
32 /* Returns the global topology atom number belonging to local atom index i.
33  * This function is intended for writing ascii output
34  * and returns atom numbers starting at 1.
35  * When dd=NULL returns i+1.
36  */
37
38 t_block *dd_charge_groups_global(gmx_domdec_t *dd);
39 /* Return a block struct for the charge groups of the whole system */
40
41 gmx_bool dd_filled_nsgrid_home(gmx_domdec_t *dd);
42 /* Is the ns grid already filled with the home particles? */
43
44 void dd_store_state(gmx_domdec_t *dd, t_state *state);
45 /* Store the global cg indices of the home cgs in state,
46  * so it can be reset, even after a new DD partitioning.
47  */
48
49 gmx_domdec_zones_t *domdec_zones(gmx_domdec_t *dd);
50
51 void dd_get_ns_ranges(gmx_domdec_t *dd, int icg,
52                       int *jcg0, int *jcg1, ivec shift0, ivec shift1);
53
54 int dd_natoms_vsite(gmx_domdec_t *dd);
55
56 void dd_get_constraint_range(gmx_domdec_t *dd,
57                              int *at_start, int *at_end);
58
59 real dd_cutoff_mbody(gmx_domdec_t *dd);
60
61 real dd_cutoff_twobody(gmx_domdec_t *dd);
62
63 void get_pme_nnodes(const gmx_domdec_t *dd,
64                     int *npmenodes_x, int *npmenodes_y);
65 /* Get the number of PME nodes along x and y, can be called with dd=NULL */
66
67 gmx_bool gmx_pmeonlynode(t_commrec *cr, int nodeid);
68 /* Return if nodeid in cr->mpi_comm_mysim is a PME-only node */
69
70 void get_pme_ddnodes(t_commrec *cr, int pmenodeid,
71                      int *nmy_ddnodes, int **my_ddnodes, int *node_peer);
72 /* Returns the set of DD nodes that communicate with pme node cr->nodeid */
73
74 int dd_pme_maxshift_x(gmx_domdec_t *dd);
75 /* Returns the maximum shift for coordinate communication in PME, dim x */
76
77 int dd_pme_maxshift_y(gmx_domdec_t *dd);
78 /* Returns the maximum shift for coordinate communication in PME, dim y */
79
80 void make_dd_communicators(FILE *fplog, t_commrec *cr, int dd_node_order);
81
82 gmx_domdec_t *
83 init_domain_decomposition(FILE *fplog,
84                           t_commrec *cr,
85                           unsigned long Flags,
86                           ivec nc,
87                           real comm_distance_min, real rconstr,
88                           const char *dlb_opt, real dlb_scale,
89                           const char *sizex, const char *sizey, const char *sizez,
90                           gmx_mtop_t *mtop, t_inputrec *ir,
91                           matrix box, rvec *x,
92                           gmx_ddbox_t *ddbox,
93                           int *npme_x, int *npme_y);
94
95 void dd_init_bondeds(FILE *fplog,
96                      gmx_domdec_t *dd, gmx_mtop_t *mtop,
97                      gmx_vsite_t *vsite,
98                      t_inputrec *ir, gmx_bool bBCheck, cginfo_mb_t *cginfo_mb);
99 /* Initialize data structures for bonded interactions */
100
101 gmx_bool dd_bonded_molpbc(gmx_domdec_t *dd, int ePBC);
102 /* Returns if we need to do pbc for calculating bonded interactions */
103
104 void set_dd_parameters(FILE *fplog, gmx_domdec_t *dd, real dlb_scale,
105                        t_inputrec *ir,
106                        gmx_ddbox_t *ddbox);
107 /* Set DD grid dimensions and limits,
108  * should be called after calling dd_init_bondeds.
109  */
110
111 gmx_bool change_dd_cutoff(t_commrec *cr, t_state *state, t_inputrec *ir,
112                           real cutoff_req );
113 /* Change the DD non-bonded communication cut-off.
114  * This could fail when trying to increase the cut-off,
115  * then FALSE will be returned and the cut-off is not modified.
116  */
117
118 void change_dd_dlb_cutoff_limit(t_commrec *cr);
119 /* Domain boundary changes due to the DD dynamic load balancing can limit
120  * the cut-off distance that can be set in change_dd_cutoff. This function
121  * limits the DLB such that using the currently set cut-off should still be
122  * possible after subsequently setting a shorter cut-off with change_dd_cutoff.
123  */
124
125 void setup_dd_grid(FILE *fplog, gmx_domdec_t *dd);
126
127 void dd_collect_vec(gmx_domdec_t *dd,
128                     t_state *state_local, rvec *lv, rvec *v);
129
130 void dd_collect_state(gmx_domdec_t *dd,
131                       t_state *state_local, t_state *state);
132
133 enum {
134     ddCyclStep, ddCyclPPduringPME, ddCyclF, ddCyclPME, ddCyclNr
135 };
136
137 void dd_cycles_add(gmx_domdec_t *dd, float cycles, int ddCycl);
138 /* Add the wallcycle count to the DD counter */
139
140 void dd_force_flop_start(gmx_domdec_t *dd, t_nrnb *nrnb);
141 /* Start the force flop count */
142
143 void dd_force_flop_stop(gmx_domdec_t *dd, t_nrnb *nrnb);
144 /* Stop the force flop count */
145
146 float dd_pme_f_ratio(gmx_domdec_t *dd);
147 /* Return the PME/PP force load ratio, or -1 if nothing was measured.
148  * Should only be called on the DD master node.
149  */
150
151 void dd_move_x(gmx_domdec_t *dd, matrix box, rvec x[]);
152 /* Communicate the coordinates to the neighboring cells and do pbc. */
153
154 void dd_move_f(gmx_domdec_t *dd, rvec f[], rvec *fshift);
155 /* Sum the forces over the neighboring cells.
156  * When fshift!=NULL the shift forces are updated to obtain
157  * the correct virial from the single sum including f.
158  */
159
160 void dd_atom_spread_real(gmx_domdec_t *dd, real v[]);
161 /* Communicate a real for each atom to the neighboring cells. */
162
163 void dd_atom_sum_real(gmx_domdec_t *dd, real v[]);
164 /* Sum the contributions to a real for each atom over the neighboring cells. */
165
166 void dd_partition_system(FILE                *fplog,
167                          gmx_large_int_t      step,
168                          t_commrec           *cr,
169                          gmx_bool             bMasterState,
170                          int                  nstglobalcomm,
171                          t_state             *state_global,
172                          gmx_mtop_t          *top_global,
173                          t_inputrec          *ir,
174                          t_state             *state_local,
175                          rvec               **f,
176                          t_mdatoms           *mdatoms,
177                          gmx_localtop_t      *top_local,
178                          t_forcerec          *fr,
179                          gmx_vsite_t         *vsite,
180                          gmx_shellfc_t        shellfc,
181                          gmx_constr_t         constr,
182                          t_nrnb              *nrnb,
183                          gmx_wallcycle_t      wcycle,
184                          gmx_bool             bVerbose);
185 /* Partition the system over the nodes.
186  * step is only used for printing error messages.
187  * If bMasterState==TRUE then state_global from the master node is used,
188  * else state_local is redistributed between the nodes.
189  * When f!=NULL, *f will be reallocated to the size of state_local.
190  */
191
192 void reset_dd_statistics_counters(gmx_domdec_t *dd);
193 /* Reset all the statistics and counters for total run counting */
194
195 void print_dd_statistics(t_commrec *cr, t_inputrec *ir, FILE *fplog);
196
197 /* In domdec_con.c */
198
199 void dd_move_f_vsites(gmx_domdec_t *dd, rvec *f, rvec *fshift);
200
201 void dd_clear_f_vsites(gmx_domdec_t *dd, rvec *f);
202
203 void dd_move_x_constraints(gmx_domdec_t *dd, matrix box,
204                            rvec *x0, rvec *x1);
205 /* Move x0 and also x1 if x1!=NULL */
206
207 void dd_move_x_vsites(gmx_domdec_t *dd, matrix box, rvec *x);
208
209 int *dd_constraints_nlocalatoms(gmx_domdec_t *dd);
210
211 void dd_clear_local_constraint_indices(gmx_domdec_t *dd);
212
213 void dd_clear_local_vsite_indices(gmx_domdec_t *dd);
214
215 int dd_make_local_vsites(gmx_domdec_t *dd, int at_start, t_ilist *lil);
216
217 int dd_make_local_constraints(gmx_domdec_t *dd, int at_start,
218                               const gmx_mtop_t *mtop,
219                               const int *cginfo,
220                               gmx_constr_t constr, int nrec,
221                               t_ilist *il_local);
222
223 void init_domdec_constraints(gmx_domdec_t *dd,
224                              gmx_mtop_t   *mtop);
225
226 void init_domdec_vsites(gmx_domdec_t *dd, int n_intercg_vsite);
227
228
229 /* In domdec_top.c */
230
231 void dd_print_missing_interactions(FILE *fplog, t_commrec *cr,
232                                    int local_count,  gmx_mtop_t *top_global, t_state *state_local);
233
234 void dd_make_reverse_top(FILE *fplog,
235                          gmx_domdec_t *dd, gmx_mtop_t *mtop,
236                          gmx_vsite_t *vsite,
237                          t_inputrec *ir, gmx_bool bBCheck);
238
239 void dd_make_local_cgs(gmx_domdec_t *dd, t_block *lcgs);
240
241 void dd_make_local_top(gmx_domdec_t *dd, gmx_domdec_zones_t *zones,
242                        int npbcdim, matrix box,
243                        rvec cellsize_min, ivec npulse,
244                        t_forcerec *fr,
245                        rvec *cgcm_or_x,
246                        gmx_vsite_t *vsite,
247                        gmx_mtop_t *top, gmx_localtop_t *ltop);
248
249 void dd_sort_local_top(gmx_domdec_t *dd, t_mdatoms *mdatoms,
250                        gmx_localtop_t *ltop);
251 /* Sort ltop->ilist when we are doing free energy. */
252
253 gmx_localtop_t *dd_init_local_top(gmx_mtop_t *top_global);
254
255 void dd_init_local_state(gmx_domdec_t *dd,
256                          t_state *state_global, t_state *local_state);
257
258 t_blocka *make_charge_group_links(gmx_mtop_t *mtop, gmx_domdec_t *dd,
259                                   cginfo_mb_t *cginfo_mb);
260
261 void dd_bonded_cg_distance(FILE *fplog, gmx_mtop_t *mtop,
262                            t_inputrec *ir, rvec *x, matrix box,
263                            gmx_bool bBCheck,
264                            real *r_2b, real *r_mb);
265
266 void write_dd_pdb(const char *fn, gmx_large_int_t step, const char *title,
267                   gmx_mtop_t *mtop,
268                   t_commrec *cr,
269                   int natoms, rvec x[], matrix box);
270 /* Dump a pdb file with the current DD home + communicated atoms.
271  * When natoms=-1, dump all known atoms.
272  */
273
274
275 /* In domdec_setup.c */
276
277 real comm_box_frac(ivec dd_nc, real cutoff, gmx_ddbox_t *ddbox);
278 /* Returns the volume fraction of the system that is communicated */
279
280 real dd_choose_grid(FILE *fplog,
281                     t_commrec *cr, gmx_domdec_t *dd, t_inputrec *ir,
282                     gmx_mtop_t *mtop, matrix box, gmx_ddbox_t *ddbox,
283                     gmx_bool bDynLoadBal, real dlb_scale,
284                     real cellsize_limit, real cutoff_dd,
285                     gmx_bool bInterCGBondeds);
286 /* Determines the optimal DD cell setup dd->nc and possibly npmenodes
287  * for the system.
288  * On the master node returns the actual cellsize limit used.
289  */
290
291
292 /* In domdec_box.c */
293
294 void set_ddbox(gmx_domdec_t *dd, gmx_bool bMasterState, t_commrec *cr_sum,
295                t_inputrec *ir, matrix box,
296                gmx_bool bCalcUnboundedSize, t_block *cgs, rvec *x,
297                gmx_ddbox_t *ddbox);
298
299 void set_ddbox_cr(t_commrec *cr, ivec *dd_nc,
300                   t_inputrec *ir, matrix box, t_block *cgs, rvec *x,
301                   gmx_ddbox_t *ddbox);
302
303 #ifdef __cplusplus
304 }
305 #endif
306
307 #endif  /* _domdec_h */