Fixed precision in thermal expansion coefficient calc.
[gromacs.git] / include / gmx_ga2la.h
blobe76d2391edc08b4f9f043807840ffac1a69e7f60
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team,
6 * check out http://www.gromacs.org for more information.
7 * Copyright (c) 2012,2013, by the GROMACS development team, led by
8 * David van der Spoel, Berk Hess, Erik Lindahl, and including many
9 * others, as listed in the AUTHORS file in the top-level source
10 * directory and at http://www.gromacs.org.
12 * GROMACS is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 2.1
15 * of the License, or (at your option) any later version.
17 * GROMACS is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with GROMACS; if not, see
24 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
25 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 * If you want to redistribute modifications to GROMACS, please
28 * consider that scientific software is very special. Version
29 * control is crucial - bugs must be traceable. We will be happy to
30 * consider code for inclusion in the official distribution, but
31 * derived work must not be called official GROMACS. Details are found
32 * in the README & COPYING files - if they are missing, get the
33 * official version at http://www.gromacs.org.
35 * To help us fund GROMACS development, we humbly ask that you cite
36 * the research papers on the package. Check out http://www.gromacs.org.
38 #ifndef _gmx_ga2la_h
39 #define _gmx_ga2la_h
41 #include "typedefs.h"
42 #include "smalloc.h"
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
48 typedef struct {
49 int la;
50 int cell;
51 } gmx_laa_t;
53 typedef struct {
54 int ga;
55 int la;
56 int cell;
57 int next;
58 } gmx_lal_t;
60 typedef struct gmx_ga2la {
61 gmx_bool bAll;
62 int mod;
63 int nalloc;
64 gmx_laa_t *laa;
65 gmx_lal_t *lal;
66 int start_space_search;
67 } t_gmx_ga2la;
69 /* Clear all the entries in the ga2la list */
70 static void ga2la_clear(gmx_ga2la_t ga2la)
72 int i;
74 if (ga2la->bAll)
76 for (i = 0; i < ga2la->nalloc; i++)
78 ga2la->laa[i].cell = -1;
81 else
83 for (i = 0; i < ga2la->nalloc; i++)
85 ga2la->lal[i].ga = -1;
86 ga2la->lal[i].next = -1;
88 ga2la->start_space_search = ga2la->mod;
92 static gmx_ga2la_t ga2la_init(int nat_tot, int nat_loc)
94 gmx_ga2la_t ga2la;
96 snew(ga2la, 1);
98 /* There are two methods implemented for finding the local atom number
99 * belonging to a global atom number:
100 * 1) a simple, direct array
101 * 2) a list of linked lists indexed with the global number modulo mod.
102 * Memory requirements:
103 * 1) nat_tot*2 ints
104 * 2) nat_loc*(2+1-2(1-e^-1/2))*4 ints
105 * where nat_loc is the number of atoms in the home + communicated zones.
106 * Method 1 is faster for low parallelization, 2 for high parallelization.
107 * We switch to method 2 when it uses less than half the memory method 1.
109 ga2la->bAll = (nat_tot < 1024 || 9*nat_loc >= nat_tot);
110 if (ga2la->bAll)
112 ga2la->nalloc = nat_tot;
113 snew(ga2la->laa, ga2la->nalloc);
115 else
117 /* Make the direct list twice as long as the number of local atoms.
118 * The fraction of entries in the list with:
119 * 0 size lists: e^-1/f
120 * >=1 size lists: 1 - e^-1/f
121 * where f is: the direct list length / #local atoms
122 * The fraction of atoms not in the direct list is: 1-f(1-e^-1/f).
124 ga2la->mod = 2*nat_loc;
125 ga2la->nalloc = over_alloc_dd(ga2la->mod);
126 snew(ga2la->lal, ga2la->nalloc);
129 ga2la_clear(ga2la);
131 return ga2la;
134 /* Set the ga2la entry for global atom a_gl to local atom a_loc and cell. */
135 static void ga2la_set(gmx_ga2la_t ga2la, int a_gl, int a_loc, int cell)
137 int ind, ind_prev, i;
139 if (ga2la->bAll)
141 ga2la->laa[a_gl].la = a_loc;
142 ga2la->laa[a_gl].cell = cell;
144 return;
147 ind = a_gl % ga2la->mod;
149 if (ga2la->lal[ind].ga >= 0)
151 /* Search the last entry in the linked list for this index */
152 ind_prev = ind;
153 while (ga2la->lal[ind_prev].next >= 0)
155 ind_prev = ga2la->lal[ind_prev].next;
157 /* Search for space in the array */
158 ind = ga2la->start_space_search;
159 while (ind < ga2la->nalloc && ga2la->lal[ind].ga >= 0)
161 ind++;
163 /* If we are at the end of the list we need to increase the size */
164 if (ind == ga2la->nalloc)
166 ga2la->nalloc = over_alloc_dd(ind+1);
167 srenew(ga2la->lal, ga2la->nalloc);
168 for (i = ind; i < ga2la->nalloc; i++)
170 ga2la->lal[i].ga = -1;
171 ga2la->lal[i].next = -1;
174 ga2la->lal[ind_prev].next = ind;
176 ga2la->start_space_search = ind + 1;
178 ga2la->lal[ind].ga = a_gl;
179 ga2la->lal[ind].la = a_loc;
180 ga2la->lal[ind].cell = cell;
183 /* Delete the ga2la entry for global atom a_gl */
184 static void ga2la_del(gmx_ga2la_t ga2la, int a_gl)
186 int ind, ind_prev;
188 if (ga2la->bAll)
190 ga2la->laa[a_gl].cell = -1;
192 return;
195 ind_prev = -1;
196 ind = a_gl % ga2la->mod;
199 if (ga2la->lal[ind].ga == a_gl)
201 if (ind_prev >= 0)
203 ga2la->lal[ind_prev].next = ga2la->lal[ind].next;
205 /* This index is a linked entry, so we free an entry.
206 * Check if we are creating the first empty space.
208 if (ind < ga2la->start_space_search)
210 ga2la->start_space_search = ind;
213 ga2la->lal[ind].ga = -1;
214 ga2la->lal[ind].cell = -1;
215 ga2la->lal[ind].next = -1;
217 return;
219 ind_prev = ind;
220 ind = ga2la->lal[ind].next;
222 while (ind >= 0);
224 return;
227 /* Change the local atom for present ga2la entry for global atom a_gl */
228 static void ga2la_change_la(gmx_ga2la_t ga2la, int a_gl, int a_loc)
230 int ind;
232 if (ga2la->bAll)
234 ga2la->laa[a_gl].la = a_loc;
236 return;
239 ind = a_gl % ga2la->mod;
242 if (ga2la->lal[ind].ga == a_gl)
244 ga2la->lal[ind].la = a_loc;
246 return;
248 ind = ga2la->lal[ind].next;
250 while (ind >= 0);
252 return;
255 /* Returns if the global atom a_gl available locally.
256 * Sets the local atom and cell,
257 * cell can be larger than the number of zones,
258 * in which case it indicates that it is more than one cell away
259 * in zone cell - #zones.
261 static gmx_bool ga2la_get(const gmx_ga2la_t ga2la, int a_gl, int *a_loc, int *cell)
263 int ind;
265 if (ga2la->bAll)
267 *a_loc = ga2la->laa[a_gl].la;
268 *cell = ga2la->laa[a_gl].cell;
270 return (ga2la->laa[a_gl].cell >= 0);
273 ind = a_gl % ga2la->mod;
276 if (ga2la->lal[ind].ga == a_gl)
278 *a_loc = ga2la->lal[ind].la;
279 *cell = ga2la->lal[ind].cell;
281 return TRUE;
283 ind = ga2la->lal[ind].next;
285 while (ind >= 0);
287 return FALSE;
290 /* Returns if the global atom a_gl is a home atom.
291 * Sets the local atom.
293 static gmx_bool ga2la_get_home(const gmx_ga2la_t ga2la, int a_gl, int *a_loc)
295 int ind;
297 if (ga2la->bAll)
299 *a_loc = ga2la->laa[a_gl].la;
301 return (ga2la->laa[a_gl].cell == 0);
304 ind = a_gl % ga2la->mod;
307 if (ga2la->lal[ind].ga == a_gl)
309 if (ga2la->lal[ind].cell == 0)
311 *a_loc = ga2la->lal[ind].la;
313 return TRUE;
315 else
317 return FALSE;
320 ind = ga2la->lal[ind].next;
322 while (ind >= 0);
324 return FALSE;
327 /* Returns if the global atom a_gl is a home atom.
329 static gmx_bool ga2la_is_home(const gmx_ga2la_t ga2la, int a_gl)
331 int ind;
333 if (ga2la->bAll)
335 return (ga2la->laa[a_gl].cell == 0);
338 ind = a_gl % ga2la->mod;
341 if (ga2la->lal[ind].ga == a_gl)
343 return (ga2la->lal[ind].cell == 0);
345 ind = ga2la->lal[ind].next;
347 while (ind >= 0);
349 return FALSE;
352 #ifdef __cplusplus
354 #endif
356 #endif /* _gmx_ga2la_h */