Replace misnamed nbnxn_gpu_acceleration_supported
[gromacs.git] / src / gromacs / mdlib / forcerec.cpp
blob8982c60a91d72e5ccc7dc1e91fe396a2e5e9b205
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 * Copyright (c) 2013,2014,2015,2016,2017, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
37 #include "gmxpre.h"
39 #include "forcerec.h"
41 #include "config.h"
43 #include <assert.h>
44 #include <stdlib.h>
45 #include <string.h>
47 #include <cmath>
49 #include <algorithm>
51 #include "gromacs/commandline/filenm.h"
52 #include "gromacs/domdec/domdec.h"
53 #include "gromacs/domdec/domdec_struct.h"
54 #include "gromacs/ewald/ewald.h"
55 #include "gromacs/fileio/filetypes.h"
56 #include "gromacs/gmxlib/network.h"
57 #include "gromacs/gmxlib/nonbonded/nonbonded.h"
58 #include "gromacs/gpu_utils/gpu_utils.h"
59 #include "gromacs/hardware/detecthardware.h"
60 #include "gromacs/listed-forces/manage-threading.h"
61 #include "gromacs/listed-forces/pairs.h"
62 #include "gromacs/math/calculate-ewald-splitting-coefficient.h"
63 #include "gromacs/math/functions.h"
64 #include "gromacs/math/units.h"
65 #include "gromacs/math/utilities.h"
66 #include "gromacs/math/vec.h"
67 #include "gromacs/mdlib/force.h"
68 #include "gromacs/mdlib/forcerec-threading.h"
69 #include "gromacs/mdlib/gmx_omp_nthreads.h"
70 #include "gromacs/mdlib/md_support.h"
71 #include "gromacs/mdlib/nb_verlet.h"
72 #include "gromacs/mdlib/nbnxn_atomdata.h"
73 #include "gromacs/mdlib/nbnxn_gpu_data_mgmt.h"
74 #include "gromacs/mdlib/nbnxn_search.h"
75 #include "gromacs/mdlib/nbnxn_simd.h"
76 #include "gromacs/mdlib/nbnxn_util.h"
77 #include "gromacs/mdlib/ns.h"
78 #include "gromacs/mdlib/qmmm.h"
79 #include "gromacs/mdlib/sim_util.h"
80 #include "gromacs/mdtypes/commrec.h"
81 #include "gromacs/mdtypes/fcdata.h"
82 #include "gromacs/mdtypes/group.h"
83 #include "gromacs/mdtypes/iforceprovider.h"
84 #include "gromacs/mdtypes/inputrec.h"
85 #include "gromacs/mdtypes/md_enums.h"
86 #include "gromacs/pbcutil/ishift.h"
87 #include "gromacs/pbcutil/pbc.h"
88 #include "gromacs/simd/simd.h"
89 #include "gromacs/tables/forcetable.h"
90 #include "gromacs/topology/mtop_util.h"
91 #include "gromacs/trajectory/trajectoryframe.h"
92 #include "gromacs/utility/cstringutil.h"
93 #include "gromacs/utility/exceptions.h"
94 #include "gromacs/utility/fatalerror.h"
95 #include "gromacs/utility/gmxassert.h"
96 #include "gromacs/utility/logger.h"
97 #include "gromacs/utility/pleasecite.h"
98 #include "gromacs/utility/smalloc.h"
99 #include "gromacs/utility/strconvert.h"
101 #include "nbnxn_gpu_jit_support.h"
103 const char *egrp_nm[egNR+1] = {
104 "Coul-SR", "LJ-SR", "Buck-SR",
105 "Coul-14", "LJ-14", nullptr
108 t_forcerec *mk_forcerec(void)
110 t_forcerec *fr;
112 snew(fr, 1);
114 return fr;
117 #ifdef DEBUG
118 static void pr_nbfp(FILE *fp, real *nbfp, gmx_bool bBHAM, int atnr)
120 int i, j;
122 for (i = 0; (i < atnr); i++)
124 for (j = 0; (j < atnr); j++)
126 fprintf(fp, "%2d - %2d", i, j);
127 if (bBHAM)
129 fprintf(fp, " a=%10g, b=%10g, c=%10g\n", BHAMA(nbfp, atnr, i, j),
130 BHAMB(nbfp, atnr, i, j), BHAMC(nbfp, atnr, i, j)/6.0);
132 else
134 fprintf(fp, " c6=%10g, c12=%10g\n", C6(nbfp, atnr, i, j)/6.0,
135 C12(nbfp, atnr, i, j)/12.0);
140 #endif
142 static real *mk_nbfp(const gmx_ffparams_t *idef, gmx_bool bBHAM)
144 real *nbfp;
145 int i, j, k, atnr;
147 atnr = idef->atnr;
148 if (bBHAM)
150 snew(nbfp, 3*atnr*atnr);
151 for (i = k = 0; (i < atnr); i++)
153 for (j = 0; (j < atnr); j++, k++)
155 BHAMA(nbfp, atnr, i, j) = idef->iparams[k].bham.a;
156 BHAMB(nbfp, atnr, i, j) = idef->iparams[k].bham.b;
157 /* nbfp now includes the 6.0 derivative prefactor */
158 BHAMC(nbfp, atnr, i, j) = idef->iparams[k].bham.c*6.0;
162 else
164 snew(nbfp, 2*atnr*atnr);
165 for (i = k = 0; (i < atnr); i++)
167 for (j = 0; (j < atnr); j++, k++)
169 /* nbfp now includes the 6.0/12.0 derivative prefactors */
170 C6(nbfp, atnr, i, j) = idef->iparams[k].lj.c6*6.0;
171 C12(nbfp, atnr, i, j) = idef->iparams[k].lj.c12*12.0;
176 return nbfp;
179 static real *make_ljpme_c6grid(const gmx_ffparams_t *idef, t_forcerec *fr)
181 int i, j, k, atnr;
182 real c6, c6i, c6j, c12i, c12j, epsi, epsj, sigmai, sigmaj;
183 real *grid;
185 /* For LJ-PME simulations, we correct the energies with the reciprocal space
186 * inside of the cut-off. To do this the non-bonded kernels needs to have
187 * access to the C6-values used on the reciprocal grid in pme.c
190 atnr = idef->atnr;
191 snew(grid, 2*atnr*atnr);
192 for (i = k = 0; (i < atnr); i++)
194 for (j = 0; (j < atnr); j++, k++)
196 c6i = idef->iparams[i*(atnr+1)].lj.c6;
197 c12i = idef->iparams[i*(atnr+1)].lj.c12;
198 c6j = idef->iparams[j*(atnr+1)].lj.c6;
199 c12j = idef->iparams[j*(atnr+1)].lj.c12;
200 c6 = std::sqrt(c6i * c6j);
201 if (fr->ljpme_combination_rule == eljpmeLB
202 && !gmx_numzero(c6) && !gmx_numzero(c12i) && !gmx_numzero(c12j))
204 sigmai = gmx::sixthroot(c12i / c6i);
205 sigmaj = gmx::sixthroot(c12j / c6j);
206 epsi = c6i * c6i / c12i;
207 epsj = c6j * c6j / c12j;
208 c6 = std::sqrt(epsi * epsj) * gmx::power6(0.5*(sigmai+sigmaj));
210 /* Store the elements at the same relative positions as C6 in nbfp in order
211 * to simplify access in the kernels
213 grid[2*(atnr*i+j)] = c6*6.0;
216 return grid;
219 static real *mk_nbfp_combination_rule(const gmx_ffparams_t *idef, int comb_rule)
221 real *nbfp;
222 int i, j, atnr;
223 real c6i, c6j, c12i, c12j, epsi, epsj, sigmai, sigmaj;
224 real c6, c12;
226 atnr = idef->atnr;
227 snew(nbfp, 2*atnr*atnr);
228 for (i = 0; i < atnr; ++i)
230 for (j = 0; j < atnr; ++j)
232 c6i = idef->iparams[i*(atnr+1)].lj.c6;
233 c12i = idef->iparams[i*(atnr+1)].lj.c12;
234 c6j = idef->iparams[j*(atnr+1)].lj.c6;
235 c12j = idef->iparams[j*(atnr+1)].lj.c12;
236 c6 = std::sqrt(c6i * c6j);
237 c12 = std::sqrt(c12i * c12j);
238 if (comb_rule == eCOMB_ARITHMETIC
239 && !gmx_numzero(c6) && !gmx_numzero(c12))
241 sigmai = gmx::sixthroot(c12i / c6i);
242 sigmaj = gmx::sixthroot(c12j / c6j);
243 epsi = c6i * c6i / c12i;
244 epsj = c6j * c6j / c12j;
245 c6 = std::sqrt(epsi * epsj) * gmx::power6(0.5*(sigmai+sigmaj));
246 c12 = std::sqrt(epsi * epsj) * gmx::power12(0.5*(sigmai+sigmaj));
248 C6(nbfp, atnr, i, j) = c6*6.0;
249 C12(nbfp, atnr, i, j) = c12*12.0;
252 return nbfp;
255 /* This routine sets fr->solvent_opt to the most common solvent in the
256 * system, e.g. esolSPC or esolTIP4P. It will also mark each charge group in
257 * the fr->solvent_type array with the correct type (or esolNO).
259 * Charge groups that fulfill the conditions but are not identical to the
260 * most common one will be marked as esolNO in the solvent_type array.
262 * TIP3p is identical to SPC for these purposes, so we call it
263 * SPC in the arrays (Apologies to Bill Jorgensen ;-)
265 * NOTE: QM particle should not
266 * become an optimized solvent. Not even if there is only one charge
267 * group in the Qm
270 typedef struct
272 int model;
273 int count;
274 int vdwtype[4];
275 real charge[4];
276 } solvent_parameters_t;
278 static void
279 check_solvent_cg(const gmx_moltype_t *molt,
280 int cg0,
281 int nmol,
282 const unsigned char *qm_grpnr,
283 const t_grps *qm_grps,
284 t_forcerec * fr,
285 int *n_solvent_parameters,
286 solvent_parameters_t **solvent_parameters_p,
287 int cginfo,
288 int *cg_sp)
290 t_atom *atom;
291 int j, k;
292 int j0, j1, nj;
293 gmx_bool perturbed;
294 gmx_bool has_vdw[4];
295 gmx_bool match;
296 real tmp_charge[4] = { 0.0 }; /* init to zero to make gcc4.8 happy */
297 int tmp_vdwtype[4] = { 0 }; /* init to zero to make gcc4.8 happy */
298 int tjA;
299 gmx_bool qm;
300 solvent_parameters_t *solvent_parameters;
302 /* We use a list with parameters for each solvent type.
303 * Every time we discover a new molecule that fulfills the basic
304 * conditions for a solvent we compare with the previous entries
305 * in these lists. If the parameters are the same we just increment
306 * the counter for that type, and otherwise we create a new type
307 * based on the current molecule.
309 * Once we've finished going through all molecules we check which
310 * solvent is most common, and mark all those molecules while we
311 * clear the flag on all others.
314 solvent_parameters = *solvent_parameters_p;
316 /* Mark the cg first as non optimized */
317 *cg_sp = -1;
319 /* Check if this cg has no exclusions with atoms in other charge groups
320 * and all atoms inside the charge group excluded.
321 * We only have 3 or 4 atom solvent loops.
323 if (GET_CGINFO_EXCL_INTER(cginfo) ||
324 !GET_CGINFO_EXCL_INTRA(cginfo))
326 return;
329 /* Get the indices of the first atom in this charge group */
330 j0 = molt->cgs.index[cg0];
331 j1 = molt->cgs.index[cg0+1];
333 /* Number of atoms in our molecule */
334 nj = j1 - j0;
336 if (debug)
338 fprintf(debug,
339 "Moltype '%s': there are %d atoms in this charge group\n",
340 *molt->name, nj);
343 /* Check if it could be an SPC (3 atoms) or TIP4p (4) water,
344 * otherwise skip it.
346 if (nj < 3 || nj > 4)
348 return;
351 /* Check if we are doing QM on this group */
352 qm = FALSE;
353 if (qm_grpnr != nullptr)
355 for (j = j0; j < j1 && !qm; j++)
357 qm = (qm_grpnr[j] < qm_grps->nr - 1);
360 /* Cannot use solvent optimization with QM */
361 if (qm)
363 return;
366 atom = molt->atoms.atom;
368 /* Still looks like a solvent, time to check parameters */
370 /* If it is perturbed (free energy) we can't use the solvent loops,
371 * so then we just skip to the next molecule.
373 perturbed = FALSE;
375 for (j = j0; j < j1 && !perturbed; j++)
377 perturbed = PERTURBED(atom[j]);
380 if (perturbed)
382 return;
385 /* Now it's only a question if the VdW and charge parameters
386 * are OK. Before doing the check we compare and see if they are
387 * identical to a possible previous solvent type.
388 * First we assign the current types and charges.
390 for (j = 0; j < nj; j++)
392 tmp_vdwtype[j] = atom[j0+j].type;
393 tmp_charge[j] = atom[j0+j].q;
396 /* Does it match any previous solvent type? */
397 for (k = 0; k < *n_solvent_parameters; k++)
399 match = TRUE;
402 /* We can only match SPC with 3 atoms and TIP4p with 4 atoms */
403 if ( (solvent_parameters[k].model == esolSPC && nj != 3) ||
404 (solvent_parameters[k].model == esolTIP4P && nj != 4) )
406 match = FALSE;
409 /* Check that types & charges match for all atoms in molecule */
410 for (j = 0; j < nj && match == TRUE; j++)
412 if (tmp_vdwtype[j] != solvent_parameters[k].vdwtype[j])
414 match = FALSE;
416 if (tmp_charge[j] != solvent_parameters[k].charge[j])
418 match = FALSE;
421 if (match == TRUE)
423 /* Congratulations! We have a matched solvent.
424 * Flag it with this type for later processing.
426 *cg_sp = k;
427 solvent_parameters[k].count += nmol;
429 /* We are done with this charge group */
430 return;
434 /* If we get here, we have a tentative new solvent type.
435 * Before we add it we must check that it fulfills the requirements
436 * of the solvent optimized loops. First determine which atoms have
437 * VdW interactions.
439 for (j = 0; j < nj; j++)
441 has_vdw[j] = FALSE;
442 tjA = tmp_vdwtype[j];
444 /* Go through all other tpes and see if any have non-zero
445 * VdW parameters when combined with this one.
447 for (k = 0; k < fr->ntype && (has_vdw[j] == FALSE); k++)
449 /* We already checked that the atoms weren't perturbed,
450 * so we only need to check state A now.
452 if (fr->bBHAM)
454 has_vdw[j] = (has_vdw[j] ||
455 (BHAMA(fr->nbfp, fr->ntype, tjA, k) != 0.0) ||
456 (BHAMB(fr->nbfp, fr->ntype, tjA, k) != 0.0) ||
457 (BHAMC(fr->nbfp, fr->ntype, tjA, k) != 0.0));
459 else
461 /* Standard LJ */
462 has_vdw[j] = (has_vdw[j] ||
463 (C6(fr->nbfp, fr->ntype, tjA, k) != 0.0) ||
464 (C12(fr->nbfp, fr->ntype, tjA, k) != 0.0));
469 /* Now we know all we need to make the final check and assignment. */
470 if (nj == 3)
472 /* So, is it an SPC?
473 * For this we require thatn all atoms have charge,
474 * the charges on atom 2 & 3 should be the same, and only
475 * atom 1 might have VdW.
477 if (has_vdw[1] == FALSE &&
478 has_vdw[2] == FALSE &&
479 tmp_charge[0] != 0 &&
480 tmp_charge[1] != 0 &&
481 tmp_charge[2] == tmp_charge[1])
483 srenew(solvent_parameters, *n_solvent_parameters+1);
484 solvent_parameters[*n_solvent_parameters].model = esolSPC;
485 solvent_parameters[*n_solvent_parameters].count = nmol;
486 for (k = 0; k < 3; k++)
488 solvent_parameters[*n_solvent_parameters].vdwtype[k] = tmp_vdwtype[k];
489 solvent_parameters[*n_solvent_parameters].charge[k] = tmp_charge[k];
492 *cg_sp = *n_solvent_parameters;
493 (*n_solvent_parameters)++;
496 else if (nj == 4)
498 /* Or could it be a TIP4P?
499 * For this we require thatn atoms 2,3,4 have charge, but not atom 1.
500 * Only atom 1 mght have VdW.
502 if (has_vdw[1] == FALSE &&
503 has_vdw[2] == FALSE &&
504 has_vdw[3] == FALSE &&
505 tmp_charge[0] == 0 &&
506 tmp_charge[1] != 0 &&
507 tmp_charge[2] == tmp_charge[1] &&
508 tmp_charge[3] != 0)
510 srenew(solvent_parameters, *n_solvent_parameters+1);
511 solvent_parameters[*n_solvent_parameters].model = esolTIP4P;
512 solvent_parameters[*n_solvent_parameters].count = nmol;
513 for (k = 0; k < 4; k++)
515 solvent_parameters[*n_solvent_parameters].vdwtype[k] = tmp_vdwtype[k];
516 solvent_parameters[*n_solvent_parameters].charge[k] = tmp_charge[k];
519 *cg_sp = *n_solvent_parameters;
520 (*n_solvent_parameters)++;
524 *solvent_parameters_p = solvent_parameters;
527 static void
528 check_solvent(FILE * fp,
529 const gmx_mtop_t * mtop,
530 t_forcerec * fr,
531 cginfo_mb_t *cginfo_mb)
533 const t_block * cgs;
534 const gmx_moltype_t *molt;
535 int mb, mol, cg_mol, at_offset, am, cgm, i, nmol_ch, nmol;
536 int n_solvent_parameters;
537 solvent_parameters_t *solvent_parameters;
538 int **cg_sp;
539 int bestsp, bestsol;
541 if (debug)
543 fprintf(debug, "Going to determine what solvent types we have.\n");
546 n_solvent_parameters = 0;
547 solvent_parameters = nullptr;
548 /* Allocate temporary array for solvent type */
549 snew(cg_sp, mtop->nmolblock);
551 at_offset = 0;
552 for (mb = 0; mb < mtop->nmolblock; mb++)
554 molt = &mtop->moltype[mtop->molblock[mb].type];
555 cgs = &molt->cgs;
556 /* Here we have to loop over all individual molecules
557 * because we need to check for QMMM particles.
559 snew(cg_sp[mb], cginfo_mb[mb].cg_mod);
560 nmol_ch = cginfo_mb[mb].cg_mod/cgs->nr;
561 nmol = mtop->molblock[mb].nmol/nmol_ch;
562 for (mol = 0; mol < nmol_ch; mol++)
564 cgm = mol*cgs->nr;
565 am = mol*cgs->index[cgs->nr];
566 for (cg_mol = 0; cg_mol < cgs->nr; cg_mol++)
568 check_solvent_cg(molt, cg_mol, nmol,
569 mtop->groups.grpnr[egcQMMM] ?
570 mtop->groups.grpnr[egcQMMM]+at_offset+am : nullptr,
571 &mtop->groups.grps[egcQMMM],
573 &n_solvent_parameters, &solvent_parameters,
574 cginfo_mb[mb].cginfo[cgm+cg_mol],
575 &cg_sp[mb][cgm+cg_mol]);
578 at_offset += cgs->index[cgs->nr];
581 /* Puh! We finished going through all charge groups.
582 * Now find the most common solvent model.
585 /* Most common solvent this far */
586 bestsp = -2;
587 for (i = 0; i < n_solvent_parameters; i++)
589 if (bestsp == -2 ||
590 solvent_parameters[i].count > solvent_parameters[bestsp].count)
592 bestsp = i;
596 if (bestsp >= 0)
598 bestsol = solvent_parameters[bestsp].model;
600 else
602 bestsol = esolNO;
605 fr->nWatMol = 0;
606 for (mb = 0; mb < mtop->nmolblock; mb++)
608 cgs = &mtop->moltype[mtop->molblock[mb].type].cgs;
609 nmol = (mtop->molblock[mb].nmol*cgs->nr)/cginfo_mb[mb].cg_mod;
610 for (i = 0; i < cginfo_mb[mb].cg_mod; i++)
612 if (cg_sp[mb][i] == bestsp)
614 SET_CGINFO_SOLOPT(cginfo_mb[mb].cginfo[i], bestsol);
615 fr->nWatMol += nmol;
617 else
619 SET_CGINFO_SOLOPT(cginfo_mb[mb].cginfo[i], esolNO);
622 sfree(cg_sp[mb]);
624 sfree(cg_sp);
626 if (bestsol != esolNO && fp != nullptr)
628 fprintf(fp, "\nEnabling %s-like water optimization for %d molecules.\n\n",
629 esol_names[bestsol],
630 solvent_parameters[bestsp].count);
633 sfree(solvent_parameters);
634 fr->solvent_opt = bestsol;
637 enum {
638 acNONE = 0, acCONSTRAINT, acSETTLE
641 static cginfo_mb_t *init_cginfo_mb(FILE *fplog, const gmx_mtop_t *mtop,
642 t_forcerec *fr, gmx_bool bNoSolvOpt,
643 gmx_bool *bFEP_NonBonded,
644 gmx_bool *bExcl_IntraCGAll_InterCGNone)
646 const t_block *cgs;
647 const t_blocka *excl;
648 const gmx_moltype_t *molt;
649 const gmx_molblock_t *molb;
650 cginfo_mb_t *cginfo_mb;
651 gmx_bool *type_VDW;
652 int *cginfo;
653 int cg_offset, a_offset;
654 int mb, m, cg, a0, a1, gid, ai, j, aj, excl_nalloc;
655 int *a_con;
656 int ftype;
657 int ia;
658 gmx_bool bId, *bExcl, bExclIntraAll, bExclInter, bHaveVDW, bHaveQ, bHavePerturbedAtoms;
660 snew(cginfo_mb, mtop->nmolblock);
662 snew(type_VDW, fr->ntype);
663 for (ai = 0; ai < fr->ntype; ai++)
665 type_VDW[ai] = FALSE;
666 for (j = 0; j < fr->ntype; j++)
668 type_VDW[ai] = type_VDW[ai] ||
669 fr->bBHAM ||
670 C6(fr->nbfp, fr->ntype, ai, j) != 0 ||
671 C12(fr->nbfp, fr->ntype, ai, j) != 0;
675 *bFEP_NonBonded = FALSE;
676 *bExcl_IntraCGAll_InterCGNone = TRUE;
678 excl_nalloc = 10;
679 snew(bExcl, excl_nalloc);
680 cg_offset = 0;
681 a_offset = 0;
682 for (mb = 0; mb < mtop->nmolblock; mb++)
684 molb = &mtop->molblock[mb];
685 molt = &mtop->moltype[molb->type];
686 cgs = &molt->cgs;
687 excl = &molt->excls;
689 /* Check if the cginfo is identical for all molecules in this block.
690 * If so, we only need an array of the size of one molecule.
691 * Otherwise we make an array of #mol times #cgs per molecule.
693 bId = TRUE;
694 for (m = 0; m < molb->nmol; m++)
696 int am = m*cgs->index[cgs->nr];
697 for (cg = 0; cg < cgs->nr; cg++)
699 a0 = cgs->index[cg];
700 a1 = cgs->index[cg+1];
701 if (ggrpnr(&mtop->groups, egcENER, a_offset+am+a0) !=
702 ggrpnr(&mtop->groups, egcENER, a_offset +a0))
704 bId = FALSE;
706 if (mtop->groups.grpnr[egcQMMM] != nullptr)
708 for (ai = a0; ai < a1; ai++)
710 if (mtop->groups.grpnr[egcQMMM][a_offset+am+ai] !=
711 mtop->groups.grpnr[egcQMMM][a_offset +ai])
713 bId = FALSE;
720 cginfo_mb[mb].cg_start = cg_offset;
721 cginfo_mb[mb].cg_end = cg_offset + molb->nmol*cgs->nr;
722 cginfo_mb[mb].cg_mod = (bId ? 1 : molb->nmol)*cgs->nr;
723 snew(cginfo_mb[mb].cginfo, cginfo_mb[mb].cg_mod);
724 cginfo = cginfo_mb[mb].cginfo;
726 /* Set constraints flags for constrained atoms */
727 snew(a_con, molt->atoms.nr);
728 for (ftype = 0; ftype < F_NRE; ftype++)
730 if (interaction_function[ftype].flags & IF_CONSTRAINT)
732 int nral;
734 nral = NRAL(ftype);
735 for (ia = 0; ia < molt->ilist[ftype].nr; ia += 1+nral)
737 int a;
739 for (a = 0; a < nral; a++)
741 a_con[molt->ilist[ftype].iatoms[ia+1+a]] =
742 (ftype == F_SETTLE ? acSETTLE : acCONSTRAINT);
748 for (m = 0; m < (bId ? 1 : molb->nmol); m++)
750 int cgm = m*cgs->nr;
751 int am = m*cgs->index[cgs->nr];
752 for (cg = 0; cg < cgs->nr; cg++)
754 a0 = cgs->index[cg];
755 a1 = cgs->index[cg+1];
757 /* Store the energy group in cginfo */
758 gid = ggrpnr(&mtop->groups, egcENER, a_offset+am+a0);
759 SET_CGINFO_GID(cginfo[cgm+cg], gid);
761 /* Check the intra/inter charge group exclusions */
762 if (a1-a0 > excl_nalloc)
764 excl_nalloc = a1 - a0;
765 srenew(bExcl, excl_nalloc);
767 /* bExclIntraAll: all intra cg interactions excluded
768 * bExclInter: any inter cg interactions excluded
770 bExclIntraAll = TRUE;
771 bExclInter = FALSE;
772 bHaveVDW = FALSE;
773 bHaveQ = FALSE;
774 bHavePerturbedAtoms = FALSE;
775 for (ai = a0; ai < a1; ai++)
777 /* Check VDW and electrostatic interactions */
778 bHaveVDW = bHaveVDW || (type_VDW[molt->atoms.atom[ai].type] ||
779 type_VDW[molt->atoms.atom[ai].typeB]);
780 bHaveQ = bHaveQ || (molt->atoms.atom[ai].q != 0 ||
781 molt->atoms.atom[ai].qB != 0);
783 bHavePerturbedAtoms = bHavePerturbedAtoms || (PERTURBED(molt->atoms.atom[ai]) != 0);
785 /* Clear the exclusion list for atom ai */
786 for (aj = a0; aj < a1; aj++)
788 bExcl[aj-a0] = FALSE;
790 /* Loop over all the exclusions of atom ai */
791 for (j = excl->index[ai]; j < excl->index[ai+1]; j++)
793 aj = excl->a[j];
794 if (aj < a0 || aj >= a1)
796 bExclInter = TRUE;
798 else
800 bExcl[aj-a0] = TRUE;
803 /* Check if ai excludes a0 to a1 */
804 for (aj = a0; aj < a1; aj++)
806 if (!bExcl[aj-a0])
808 bExclIntraAll = FALSE;
812 switch (a_con[ai])
814 case acCONSTRAINT:
815 SET_CGINFO_CONSTR(cginfo[cgm+cg]);
816 break;
817 case acSETTLE:
818 SET_CGINFO_SETTLE(cginfo[cgm+cg]);
819 break;
820 default:
821 break;
824 if (bExclIntraAll)
826 SET_CGINFO_EXCL_INTRA(cginfo[cgm+cg]);
828 if (bExclInter)
830 SET_CGINFO_EXCL_INTER(cginfo[cgm+cg]);
832 if (a1 - a0 > MAX_CHARGEGROUP_SIZE)
834 /* The size in cginfo is currently only read with DD */
835 gmx_fatal(FARGS, "A charge group has size %d which is larger than the limit of %d atoms", a1-a0, MAX_CHARGEGROUP_SIZE);
837 if (bHaveVDW)
839 SET_CGINFO_HAS_VDW(cginfo[cgm+cg]);
841 if (bHaveQ)
843 SET_CGINFO_HAS_Q(cginfo[cgm+cg]);
845 if (bHavePerturbedAtoms && fr->efep != efepNO)
847 SET_CGINFO_FEP(cginfo[cgm+cg]);
848 *bFEP_NonBonded = TRUE;
850 /* Store the charge group size */
851 SET_CGINFO_NATOMS(cginfo[cgm+cg], a1-a0);
853 if (!bExclIntraAll || bExclInter)
855 *bExcl_IntraCGAll_InterCGNone = FALSE;
860 sfree(a_con);
862 cg_offset += molb->nmol*cgs->nr;
863 a_offset += molb->nmol*cgs->index[cgs->nr];
865 sfree(bExcl);
867 /* the solvent optimizer is called after the QM is initialized,
868 * because we don't want to have the QM subsystemto become an
869 * optimized solvent
872 check_solvent(fplog, mtop, fr, cginfo_mb);
874 if (getenv("GMX_NO_SOLV_OPT"))
876 if (fplog)
878 fprintf(fplog, "Found environment variable GMX_NO_SOLV_OPT.\n"
879 "Disabling all solvent optimization\n");
881 fr->solvent_opt = esolNO;
883 if (bNoSolvOpt)
885 fr->solvent_opt = esolNO;
887 if (!fr->solvent_opt)
889 for (mb = 0; mb < mtop->nmolblock; mb++)
891 for (cg = 0; cg < cginfo_mb[mb].cg_mod; cg++)
893 SET_CGINFO_SOLOPT(cginfo_mb[mb].cginfo[cg], esolNO);
898 return cginfo_mb;
901 static int *cginfo_expand(int nmb, cginfo_mb_t *cgi_mb)
903 int ncg, mb, cg;
904 int *cginfo;
906 ncg = cgi_mb[nmb-1].cg_end;
907 snew(cginfo, ncg);
908 mb = 0;
909 for (cg = 0; cg < ncg; cg++)
911 while (cg >= cgi_mb[mb].cg_end)
913 mb++;
915 cginfo[cg] =
916 cgi_mb[mb].cginfo[(cg - cgi_mb[mb].cg_start) % cgi_mb[mb].cg_mod];
919 return cginfo;
922 static void set_chargesum(FILE *log, t_forcerec *fr, const gmx_mtop_t *mtop)
924 /*This now calculates sum for q and c6*/
925 double qsum, q2sum, q, c6sum, c6;
926 int mb, nmol, i;
927 const t_atoms *atoms;
929 qsum = 0;
930 q2sum = 0;
931 c6sum = 0;
932 for (mb = 0; mb < mtop->nmolblock; mb++)
934 nmol = mtop->molblock[mb].nmol;
935 atoms = &mtop->moltype[mtop->molblock[mb].type].atoms;
936 for (i = 0; i < atoms->nr; i++)
938 q = atoms->atom[i].q;
939 qsum += nmol*q;
940 q2sum += nmol*q*q;
941 c6 = mtop->ffparams.iparams[atoms->atom[i].type*(mtop->ffparams.atnr+1)].lj.c6;
942 c6sum += nmol*c6;
945 fr->qsum[0] = qsum;
946 fr->q2sum[0] = q2sum;
947 fr->c6sum[0] = c6sum;
949 if (fr->efep != efepNO)
951 qsum = 0;
952 q2sum = 0;
953 c6sum = 0;
954 for (mb = 0; mb < mtop->nmolblock; mb++)
956 nmol = mtop->molblock[mb].nmol;
957 atoms = &mtop->moltype[mtop->molblock[mb].type].atoms;
958 for (i = 0; i < atoms->nr; i++)
960 q = atoms->atom[i].qB;
961 qsum += nmol*q;
962 q2sum += nmol*q*q;
963 c6 = mtop->ffparams.iparams[atoms->atom[i].typeB*(mtop->ffparams.atnr+1)].lj.c6;
964 c6sum += nmol*c6;
966 fr->qsum[1] = qsum;
967 fr->q2sum[1] = q2sum;
968 fr->c6sum[1] = c6sum;
971 else
973 fr->qsum[1] = fr->qsum[0];
974 fr->q2sum[1] = fr->q2sum[0];
975 fr->c6sum[1] = fr->c6sum[0];
977 if (log)
979 if (fr->efep == efepNO)
981 fprintf(log, "System total charge: %.3f\n", fr->qsum[0]);
983 else
985 fprintf(log, "System total charge, top. A: %.3f top. B: %.3f\n",
986 fr->qsum[0], fr->qsum[1]);
991 void update_forcerec(t_forcerec *fr, matrix box)
993 if (fr->eeltype == eelGRF)
995 calc_rffac(nullptr, fr->eeltype, fr->epsilon_r, fr->epsilon_rf,
996 fr->rcoulomb, fr->temp, fr->zsquare, box,
997 &fr->kappa, &fr->k_rf, &fr->c_rf);
1001 void set_avcsixtwelve(FILE *fplog, t_forcerec *fr, const gmx_mtop_t *mtop)
1003 const t_atoms *atoms, *atoms_tpi;
1004 const t_blocka *excl;
1005 int mb, nmol, nmolc, i, j, tpi, tpj, j1, j2, k, nexcl, q;
1006 gmx_int64_t npair, npair_ij, tmpi, tmpj;
1007 double csix, ctwelve;
1008 int ntp, *typecount;
1009 gmx_bool bBHAM;
1010 real *nbfp;
1011 real *nbfp_comb = nullptr;
1013 ntp = fr->ntype;
1014 bBHAM = fr->bBHAM;
1015 nbfp = fr->nbfp;
1017 /* For LJ-PME, we want to correct for the difference between the
1018 * actual C6 values and the C6 values used by the LJ-PME based on
1019 * combination rules. */
1021 if (EVDW_PME(fr->vdwtype))
1023 nbfp_comb = mk_nbfp_combination_rule(&mtop->ffparams,
1024 (fr->ljpme_combination_rule == eljpmeLB) ? eCOMB_ARITHMETIC : eCOMB_GEOMETRIC);
1025 for (tpi = 0; tpi < ntp; ++tpi)
1027 for (tpj = 0; tpj < ntp; ++tpj)
1029 C6(nbfp_comb, ntp, tpi, tpj) =
1030 C6(nbfp, ntp, tpi, tpj) - C6(nbfp_comb, ntp, tpi, tpj);
1031 C12(nbfp_comb, ntp, tpi, tpj) = C12(nbfp, ntp, tpi, tpj);
1034 nbfp = nbfp_comb;
1036 for (q = 0; q < (fr->efep == efepNO ? 1 : 2); q++)
1038 csix = 0;
1039 ctwelve = 0;
1040 npair = 0;
1041 nexcl = 0;
1042 if (!fr->n_tpi)
1044 /* Count the types so we avoid natoms^2 operations */
1045 snew(typecount, ntp);
1046 gmx_mtop_count_atomtypes(mtop, q, typecount);
1048 for (tpi = 0; tpi < ntp; tpi++)
1050 for (tpj = tpi; tpj < ntp; tpj++)
1052 tmpi = typecount[tpi];
1053 tmpj = typecount[tpj];
1054 if (tpi != tpj)
1056 npair_ij = tmpi*tmpj;
1058 else
1060 npair_ij = tmpi*(tmpi - 1)/2;
1062 if (bBHAM)
1064 /* nbfp now includes the 6.0 derivative prefactor */
1065 csix += npair_ij*BHAMC(nbfp, ntp, tpi, tpj)/6.0;
1067 else
1069 /* nbfp now includes the 6.0/12.0 derivative prefactors */
1070 csix += npair_ij* C6(nbfp, ntp, tpi, tpj)/6.0;
1071 ctwelve += npair_ij* C12(nbfp, ntp, tpi, tpj)/12.0;
1073 npair += npair_ij;
1076 sfree(typecount);
1077 /* Subtract the excluded pairs.
1078 * The main reason for substracting exclusions is that in some cases
1079 * some combinations might never occur and the parameters could have
1080 * any value. These unused values should not influence the dispersion
1081 * correction.
1083 for (mb = 0; mb < mtop->nmolblock; mb++)
1085 nmol = mtop->molblock[mb].nmol;
1086 atoms = &mtop->moltype[mtop->molblock[mb].type].atoms;
1087 excl = &mtop->moltype[mtop->molblock[mb].type].excls;
1088 for (i = 0; (i < atoms->nr); i++)
1090 if (q == 0)
1092 tpi = atoms->atom[i].type;
1094 else
1096 tpi = atoms->atom[i].typeB;
1098 j1 = excl->index[i];
1099 j2 = excl->index[i+1];
1100 for (j = j1; j < j2; j++)
1102 k = excl->a[j];
1103 if (k > i)
1105 if (q == 0)
1107 tpj = atoms->atom[k].type;
1109 else
1111 tpj = atoms->atom[k].typeB;
1113 if (bBHAM)
1115 /* nbfp now includes the 6.0 derivative prefactor */
1116 csix -= nmol*BHAMC(nbfp, ntp, tpi, tpj)/6.0;
1118 else
1120 /* nbfp now includes the 6.0/12.0 derivative prefactors */
1121 csix -= nmol*C6 (nbfp, ntp, tpi, tpj)/6.0;
1122 ctwelve -= nmol*C12(nbfp, ntp, tpi, tpj)/12.0;
1124 nexcl += nmol;
1130 else
1132 /* Only correct for the interaction of the test particle
1133 * with the rest of the system.
1135 atoms_tpi =
1136 &mtop->moltype[mtop->molblock[mtop->nmolblock-1].type].atoms;
1138 npair = 0;
1139 for (mb = 0; mb < mtop->nmolblock; mb++)
1141 nmol = mtop->molblock[mb].nmol;
1142 atoms = &mtop->moltype[mtop->molblock[mb].type].atoms;
1143 for (j = 0; j < atoms->nr; j++)
1145 nmolc = nmol;
1146 /* Remove the interaction of the test charge group
1147 * with itself.
1149 if (mb == mtop->nmolblock-1)
1151 nmolc--;
1153 if (mb == 0 && nmol == 1)
1155 gmx_fatal(FARGS, "Old format tpr with TPI, please generate a new tpr file");
1158 if (q == 0)
1160 tpj = atoms->atom[j].type;
1162 else
1164 tpj = atoms->atom[j].typeB;
1166 for (i = 0; i < fr->n_tpi; i++)
1168 if (q == 0)
1170 tpi = atoms_tpi->atom[i].type;
1172 else
1174 tpi = atoms_tpi->atom[i].typeB;
1176 if (bBHAM)
1178 /* nbfp now includes the 6.0 derivative prefactor */
1179 csix += nmolc*BHAMC(nbfp, ntp, tpi, tpj)/6.0;
1181 else
1183 /* nbfp now includes the 6.0/12.0 derivative prefactors */
1184 csix += nmolc*C6 (nbfp, ntp, tpi, tpj)/6.0;
1185 ctwelve += nmolc*C12(nbfp, ntp, tpi, tpj)/12.0;
1187 npair += nmolc;
1192 if (npair - nexcl <= 0 && fplog)
1194 fprintf(fplog, "\nWARNING: There are no atom pairs for dispersion correction\n\n");
1195 csix = 0;
1196 ctwelve = 0;
1198 else
1200 csix /= npair - nexcl;
1201 ctwelve /= npair - nexcl;
1203 if (debug)
1205 fprintf(debug, "Counted %d exclusions\n", nexcl);
1206 fprintf(debug, "Average C6 parameter is: %10g\n", (double)csix);
1207 fprintf(debug, "Average C12 parameter is: %10g\n", (double)ctwelve);
1209 fr->avcsix[q] = csix;
1210 fr->avctwelve[q] = ctwelve;
1213 if (EVDW_PME(fr->vdwtype))
1215 sfree(nbfp_comb);
1218 if (fplog != nullptr)
1220 if (fr->eDispCorr == edispcAllEner ||
1221 fr->eDispCorr == edispcAllEnerPres)
1223 fprintf(fplog, "Long Range LJ corr.: <C6> %10.4e, <C12> %10.4e\n",
1224 fr->avcsix[0], fr->avctwelve[0]);
1226 else
1228 fprintf(fplog, "Long Range LJ corr.: <C6> %10.4e\n", fr->avcsix[0]);
1234 static void set_bham_b_max(FILE *fplog, t_forcerec *fr,
1235 const gmx_mtop_t *mtop)
1237 const t_atoms *at1, *at2;
1238 int mt1, mt2, i, j, tpi, tpj, ntypes;
1239 real b, bmin;
1240 real *nbfp;
1242 if (fplog)
1244 fprintf(fplog, "Determining largest Buckingham b parameter for table\n");
1246 nbfp = fr->nbfp;
1247 ntypes = fr->ntype;
1249 bmin = -1;
1250 fr->bham_b_max = 0;
1251 for (mt1 = 0; mt1 < mtop->nmoltype; mt1++)
1253 at1 = &mtop->moltype[mt1].atoms;
1254 for (i = 0; (i < at1->nr); i++)
1256 tpi = at1->atom[i].type;
1257 if (tpi >= ntypes)
1259 gmx_fatal(FARGS, "Atomtype[%d] = %d, maximum = %d", i, tpi, ntypes);
1262 for (mt2 = mt1; mt2 < mtop->nmoltype; mt2++)
1264 at2 = &mtop->moltype[mt2].atoms;
1265 for (j = 0; (j < at2->nr); j++)
1267 tpj = at2->atom[j].type;
1268 if (tpj >= ntypes)
1270 gmx_fatal(FARGS, "Atomtype[%d] = %d, maximum = %d", j, tpj, ntypes);
1272 b = BHAMB(nbfp, ntypes, tpi, tpj);
1273 if (b > fr->bham_b_max)
1275 fr->bham_b_max = b;
1277 if ((b < bmin) || (bmin == -1))
1279 bmin = b;
1285 if (fplog)
1287 fprintf(fplog, "Buckingham b parameters, min: %g, max: %g\n",
1288 bmin, fr->bham_b_max);
1292 static void make_nbf_tables(FILE *fp,
1293 t_forcerec *fr, real rtab,
1294 const char *tabfn, char *eg1, char *eg2,
1295 t_nblists *nbl)
1297 char buf[STRLEN];
1298 int i, j;
1300 if (tabfn == nullptr)
1302 if (debug)
1304 fprintf(debug, "No table file name passed, can not read table, can not do non-bonded interactions\n");
1306 return;
1309 sprintf(buf, "%s", tabfn);
1310 if (eg1 && eg2)
1312 /* Append the two energy group names */
1313 sprintf(buf + strlen(tabfn) - strlen(ftp2ext(efXVG)) - 1, "_%s_%s.%s",
1314 eg1, eg2, ftp2ext(efXVG));
1316 nbl->table_elec_vdw = make_tables(fp, fr, buf, rtab, 0);
1317 /* Copy the contents of the table to separate coulomb and LJ tables too,
1318 * to improve cache performance.
1320 /* For performance reasons we want
1321 * the table data to be aligned to 16-byte. The pointers could be freed
1322 * but currently aren't.
1324 snew(nbl->table_elec, 1);
1325 nbl->table_elec->interaction = GMX_TABLE_INTERACTION_ELEC;
1326 nbl->table_elec->format = nbl->table_elec_vdw->format;
1327 nbl->table_elec->r = nbl->table_elec_vdw->r;
1328 nbl->table_elec->n = nbl->table_elec_vdw->n;
1329 nbl->table_elec->scale = nbl->table_elec_vdw->scale;
1330 nbl->table_elec->formatsize = nbl->table_elec_vdw->formatsize;
1331 nbl->table_elec->ninteractions = 1;
1332 nbl->table_elec->stride = nbl->table_elec->formatsize * nbl->table_elec->ninteractions;
1333 snew_aligned(nbl->table_elec->data, nbl->table_elec->stride*(nbl->table_elec->n+1), 32);
1335 snew(nbl->table_vdw, 1);
1336 nbl->table_vdw->interaction = GMX_TABLE_INTERACTION_VDWREP_VDWDISP;
1337 nbl->table_vdw->format = nbl->table_elec_vdw->format;
1338 nbl->table_vdw->r = nbl->table_elec_vdw->r;
1339 nbl->table_vdw->n = nbl->table_elec_vdw->n;
1340 nbl->table_vdw->scale = nbl->table_elec_vdw->scale;
1341 nbl->table_vdw->formatsize = nbl->table_elec_vdw->formatsize;
1342 nbl->table_vdw->ninteractions = 2;
1343 nbl->table_vdw->stride = nbl->table_vdw->formatsize * nbl->table_vdw->ninteractions;
1344 snew_aligned(nbl->table_vdw->data, nbl->table_vdw->stride*(nbl->table_vdw->n+1), 32);
1346 for (i = 0; i <= nbl->table_elec_vdw->n; i++)
1348 for (j = 0; j < 4; j++)
1350 nbl->table_elec->data[4*i+j] = nbl->table_elec_vdw->data[12*i+j];
1352 for (j = 0; j < 8; j++)
1354 nbl->table_vdw->data[8*i+j] = nbl->table_elec_vdw->data[12*i+4+j];
1359 /*!\brief If there's bonded interactions of type \c ftype1 or \c
1360 * ftype2 present in the topology, build an array of the number of
1361 * interactions present for each bonded interaction index found in the
1362 * topology.
1364 * \c ftype1 or \c ftype2 may be set to -1 to disable seeking for a
1365 * valid type with that parameter.
1367 * \c count will be reallocated as necessary to fit the largest bonded
1368 * interaction index found, and its current size will be returned in
1369 * \c ncount. It will contain zero for every bonded interaction index
1370 * for which no interactions are present in the topology.
1372 static void count_tables(int ftype1, int ftype2, const gmx_mtop_t *mtop,
1373 int *ncount, int **count)
1375 const gmx_moltype_t *molt;
1376 const t_ilist *il;
1377 int mt, ftype, stride, i, j, tabnr;
1379 // Loop over all moleculetypes
1380 for (mt = 0; mt < mtop->nmoltype; mt++)
1382 molt = &mtop->moltype[mt];
1383 // Loop over all interaction types
1384 for (ftype = 0; ftype < F_NRE; ftype++)
1386 // If the current interaction type is one of the types whose tables we're trying to count...
1387 if (ftype == ftype1 || ftype == ftype2)
1389 il = &molt->ilist[ftype];
1390 stride = 1 + NRAL(ftype);
1391 // ... and there are actually some interactions for this type
1392 for (i = 0; i < il->nr; i += stride)
1394 // Find out which table index the user wanted
1395 tabnr = mtop->ffparams.iparams[il->iatoms[i]].tab.table;
1396 if (tabnr < 0)
1398 gmx_fatal(FARGS, "A bonded table number is smaller than 0: %d\n", tabnr);
1400 // Make room for this index in the data structure
1401 if (tabnr >= *ncount)
1403 srenew(*count, tabnr+1);
1404 for (j = *ncount; j < tabnr+1; j++)
1406 (*count)[j] = 0;
1408 *ncount = tabnr+1;
1410 // Record that this table index is used and must have a valid file
1411 (*count)[tabnr]++;
1418 /*!\brief If there's bonded interactions of flavour \c tabext and type
1419 * \c ftype1 or \c ftype2 present in the topology, seek them in the
1420 * list of filenames passed to mdrun, and make bonded tables from
1421 * those files.
1423 * \c ftype1 or \c ftype2 may be set to -1 to disable seeking for a
1424 * valid type with that parameter.
1426 * A fatal error occurs if no matching filename is found.
1428 static bondedtable_t *make_bonded_tables(FILE *fplog,
1429 int ftype1, int ftype2,
1430 const gmx_mtop_t *mtop,
1431 const t_filenm *tabbfnm,
1432 const char *tabext)
1434 int ncount, *count;
1435 bondedtable_t *tab;
1437 tab = nullptr;
1439 ncount = 0;
1440 count = nullptr;
1441 count_tables(ftype1, ftype2, mtop, &ncount, &count);
1443 // Are there any relevant tabulated bond interactions?
1444 if (ncount > 0)
1446 snew(tab, ncount);
1447 for (int i = 0; i < ncount; i++)
1449 // Do any interactions exist that requires this table?
1450 if (count[i] > 0)
1452 // This pattern enforces the current requirement that
1453 // table filenames end in a characteristic sequence
1454 // before the file type extension, and avoids table 13
1455 // being recognized and used for table 1.
1456 std::string patternToFind = gmx::formatString("_%s%d.%s", tabext, i, ftp2ext(efXVG));
1457 bool madeTable = false;
1458 for (int j = 0; j < tabbfnm->nfiles && !madeTable; ++j)
1460 std::string filename(tabbfnm->fns[j]);
1461 if (gmx::endsWith(filename, patternToFind))
1463 // Finally read the table from the file found
1464 tab[i] = make_bonded_table(fplog, tabbfnm->fns[j], NRAL(ftype1)-2);
1465 madeTable = true;
1468 if (!madeTable)
1470 bool isPlural = (ftype2 != -1);
1471 gmx_fatal(FARGS, "Tabulated interaction of type '%s%s%s' with index %d cannot be used because no table file whose name matched '%s' was passed via the gmx mdrun -tableb command-line option.",
1472 interaction_function[ftype1].longname,
1473 isPlural ? "' or '" : "",
1474 isPlural ? interaction_function[ftype2].longname : "",
1476 patternToFind.c_str());
1480 sfree(count);
1483 return tab;
1486 void forcerec_set_ranges(t_forcerec *fr,
1487 int ncg_home, int ncg_force,
1488 int natoms_force,
1489 int natoms_force_constr, int natoms_f_novirsum)
1491 fr->cg0 = 0;
1492 fr->hcg = ncg_home;
1494 /* fr->ncg_force is unused in the standard code,
1495 * but it can be useful for modified code dealing with charge groups.
1497 fr->ncg_force = ncg_force;
1498 fr->natoms_force = natoms_force;
1499 fr->natoms_force_constr = natoms_force_constr;
1501 if (fr->natoms_force_constr > fr->nalloc_force)
1503 fr->nalloc_force = over_alloc_dd(fr->natoms_force_constr);
1506 if (fr->bF_NoVirSum)
1508 /* TODO: remove this + 1 when padding is properly implemented */
1509 fr->forceBufferNoVirialSummation->resize(natoms_f_novirsum + 1);
1513 static real cutoff_inf(real cutoff)
1515 if (cutoff == 0)
1517 cutoff = GMX_CUTOFF_INF;
1520 return cutoff;
1523 gmx_bool can_use_allvsall(const t_inputrec *ir, gmx_bool bPrintNote, t_commrec *cr, FILE *fp)
1525 gmx_bool bAllvsAll;
1527 bAllvsAll =
1529 ir->rlist == 0 &&
1530 ir->rcoulomb == 0 &&
1531 ir->rvdw == 0 &&
1532 ir->ePBC == epbcNONE &&
1533 ir->vdwtype == evdwCUT &&
1534 ir->coulombtype == eelCUT &&
1535 ir->efep == efepNO &&
1536 (ir->implicit_solvent == eisNO ||
1537 (ir->implicit_solvent == eisGBSA && (ir->gb_algorithm == egbSTILL ||
1538 ir->gb_algorithm == egbHCT ||
1539 ir->gb_algorithm == egbOBC))) &&
1540 getenv("GMX_NO_ALLVSALL") == nullptr
1543 if (bAllvsAll && ir->opts.ngener > 1)
1545 const char *note = "NOTE: Can not use all-vs-all force loops, because there are multiple energy monitor groups; you might get significantly higher performance when using only a single energy monitor group.\n";
1547 if (bPrintNote)
1549 if (fp != nullptr)
1551 fprintf(fp, "\n%s\n", note);
1554 bAllvsAll = FALSE;
1557 if (bAllvsAll && fp && MASTER(cr))
1559 fprintf(fp, "\nUsing SIMD all-vs-all kernels.\n\n");
1562 return bAllvsAll;
1566 gmx_bool nbnxn_simd_supported(const gmx::MDLogger &mdlog,
1567 const t_inputrec *ir)
1569 if (ir->vdwtype == evdwPME && ir->ljpme_combination_rule == eljpmeLB)
1571 /* LJ PME with LB combination rule does 7 mesh operations.
1572 * This so slow that we don't compile SIMD non-bonded kernels
1573 * for that. */
1574 GMX_LOG(mdlog.warning).asParagraph().appendText("LJ-PME with Lorentz-Berthelot is not supported with SIMD kernels, falling back to plain C kernels");
1575 return FALSE;
1578 return TRUE;
1582 static void pick_nbnxn_kernel_cpu(const t_inputrec gmx_unused *ir,
1583 int *kernel_type,
1584 int *ewald_excl)
1586 *kernel_type = nbnxnk4x4_PlainC;
1587 *ewald_excl = ewaldexclTable;
1589 #if GMX_SIMD
1591 #ifdef GMX_NBNXN_SIMD_4XN
1592 *kernel_type = nbnxnk4xN_SIMD_4xN;
1593 #endif
1594 #ifdef GMX_NBNXN_SIMD_2XNN
1595 *kernel_type = nbnxnk4xN_SIMD_2xNN;
1596 #endif
1598 #if defined GMX_NBNXN_SIMD_2XNN && defined GMX_NBNXN_SIMD_4XN
1599 /* We need to choose if we want 2x(N+N) or 4xN kernels.
1600 * Currently this is based on the SIMD acceleration choice,
1601 * but it might be better to decide this at runtime based on CPU.
1603 * 4xN calculates more (zero) interactions, but has less pair-search
1604 * work and much better kernel instruction scheduling.
1606 * Up till now we have only seen that on Intel Sandy/Ivy Bridge,
1607 * which doesn't have FMA, both the analytical and tabulated Ewald
1608 * kernels have similar pair rates for 4x8 and 2x(4+4), so we choose
1609 * 2x(4+4) because it results in significantly fewer pairs.
1610 * For RF, the raw pair rate of the 4x8 kernel is higher than 2x(4+4),
1611 * 10% with HT, 50% without HT. As we currently don't detect the actual
1612 * use of HT, use 4x8 to avoid a potential performance hit.
1613 * On Intel Haswell 4x8 is always faster.
1615 *kernel_type = nbnxnk4xN_SIMD_4xN;
1617 #if !GMX_SIMD_HAVE_FMA
1618 if (EEL_PME_EWALD(ir->coulombtype) ||
1619 EVDW_PME(ir->vdwtype))
1621 /* We have Ewald kernels without FMA (Intel Sandy/Ivy Bridge).
1622 * There are enough instructions to make 2x(4+4) efficient.
1624 *kernel_type = nbnxnk4xN_SIMD_2xNN;
1626 #endif
1627 #endif /* GMX_NBNXN_SIMD_2XNN && GMX_NBNXN_SIMD_4XN */
1630 if (getenv("GMX_NBNXN_SIMD_4XN") != nullptr)
1632 #ifdef GMX_NBNXN_SIMD_4XN
1633 *kernel_type = nbnxnk4xN_SIMD_4xN;
1634 #else
1635 gmx_fatal(FARGS, "SIMD 4xN kernels requested, but GROMACS has been compiled without support for these kernels");
1636 #endif
1638 if (getenv("GMX_NBNXN_SIMD_2XNN") != nullptr)
1640 #ifdef GMX_NBNXN_SIMD_2XNN
1641 *kernel_type = nbnxnk4xN_SIMD_2xNN;
1642 #else
1643 gmx_fatal(FARGS, "SIMD 2x(N+N) kernels requested, but GROMACS has been compiled without support for these kernels");
1644 #endif
1647 /* Analytical Ewald exclusion correction is only an option in
1648 * the SIMD kernel.
1649 * Since table lookup's don't parallelize with SIMD, analytical
1650 * will probably always be faster for a SIMD width of 8 or more.
1651 * With FMA analytical is sometimes faster for a width if 4 as well.
1652 * On BlueGene/Q, this is faster regardless of precision.
1653 * In single precision, this is faster on Bulldozer.
1655 #if GMX_SIMD_REAL_WIDTH >= 8 || \
1656 (GMX_SIMD_REAL_WIDTH >= 4 && GMX_SIMD_HAVE_FMA && !GMX_DOUBLE) || GMX_SIMD_IBM_QPX
1657 *ewald_excl = ewaldexclAnalytical;
1658 #endif
1659 if (getenv("GMX_NBNXN_EWALD_TABLE") != nullptr)
1661 *ewald_excl = ewaldexclTable;
1663 if (getenv("GMX_NBNXN_EWALD_ANALYTICAL") != nullptr)
1665 *ewald_excl = ewaldexclAnalytical;
1669 #endif // GMX_SIMD
1673 const char *lookup_nbnxn_kernel_name(int kernel_type)
1675 const char *returnvalue = nullptr;
1676 switch (kernel_type)
1678 case nbnxnkNotSet:
1679 returnvalue = "not set";
1680 break;
1681 case nbnxnk4x4_PlainC:
1682 returnvalue = "plain C";
1683 break;
1684 case nbnxnk4xN_SIMD_4xN:
1685 case nbnxnk4xN_SIMD_2xNN:
1686 #if GMX_SIMD
1687 returnvalue = "SIMD";
1688 #else // GMX_SIMD
1689 returnvalue = "not available";
1690 #endif // GMX_SIMD
1691 break;
1692 case nbnxnk8x8x8_GPU: returnvalue = "GPU"; break;
1693 case nbnxnk8x8x8_PlainC: returnvalue = "plain C"; break;
1695 case nbnxnkNR:
1696 default:
1697 gmx_fatal(FARGS, "Illegal kernel type selected");
1698 returnvalue = nullptr;
1699 break;
1701 return returnvalue;
1704 static void pick_nbnxn_kernel(FILE *fp,
1705 const gmx::MDLogger &mdlog,
1706 gmx_bool use_simd_kernels,
1707 gmx_bool bUseGPU,
1708 gmx_bool bEmulateGPU,
1709 const t_inputrec *ir,
1710 int *kernel_type,
1711 int *ewald_excl,
1712 gmx_bool bDoNonbonded)
1714 assert(kernel_type);
1716 *kernel_type = nbnxnkNotSet;
1717 *ewald_excl = ewaldexclTable;
1719 if (bEmulateGPU)
1721 *kernel_type = nbnxnk8x8x8_PlainC;
1723 if (bDoNonbonded)
1725 GMX_LOG(mdlog.warning).asParagraph().appendText("Emulating a GPU run on the CPU (slow)");
1728 else if (bUseGPU)
1730 *kernel_type = nbnxnk8x8x8_GPU;
1733 if (*kernel_type == nbnxnkNotSet)
1735 if (use_simd_kernels &&
1736 nbnxn_simd_supported(mdlog, ir))
1738 pick_nbnxn_kernel_cpu(ir, kernel_type, ewald_excl);
1740 else
1742 *kernel_type = nbnxnk4x4_PlainC;
1746 if (bDoNonbonded && fp != nullptr)
1748 fprintf(fp, "\nUsing %s %dx%d non-bonded kernels\n\n",
1749 lookup_nbnxn_kernel_name(*kernel_type),
1750 nbnxn_kernel_to_cluster_i_size(*kernel_type),
1751 nbnxn_kernel_to_cluster_j_size(*kernel_type));
1753 if (nbnxnk4x4_PlainC == *kernel_type ||
1754 nbnxnk8x8x8_PlainC == *kernel_type)
1756 GMX_LOG(mdlog.warning).asParagraph().appendTextFormatted(
1757 "WARNING: Using the slow %s kernels. This should\n"
1758 "not happen during routine usage on supported platforms.",
1759 lookup_nbnxn_kernel_name(*kernel_type));
1764 static void pick_nbnxn_resources(const gmx::MDLogger &mdlog,
1765 const t_commrec *cr,
1766 const gmx_hw_info_t *hwinfo,
1767 gmx_bool bDoNonbonded,
1768 gmx_bool *bUseGPU,
1769 gmx_bool *bEmulateGPU,
1770 const gmx_gpu_opt_t *gpu_opt)
1772 gmx_bool bEmulateGPUEnvVarSet;
1773 char gpu_err_str[STRLEN];
1775 *bUseGPU = FALSE;
1777 bEmulateGPUEnvVarSet = (getenv("GMX_EMULATE_GPU") != nullptr);
1779 /* Run GPU emulation mode if GMX_EMULATE_GPU is defined. Because
1780 * GPUs (currently) only handle non-bonded calculations, we will
1781 * automatically switch to emulation if non-bonded calculations are
1782 * turned off via GMX_NO_NONBONDED - this is the simple and elegant
1783 * way to turn off GPU initialization, data movement, and cleanup.
1785 * GPU emulation can be useful to assess the performance one can expect by
1786 * adding GPU(s) to the machine. The conditional below allows this even
1787 * if mdrun is compiled without GPU acceleration support.
1788 * Note that you should freezing the system as otherwise it will explode.
1790 *bEmulateGPU = (bEmulateGPUEnvVarSet ||
1791 (!bDoNonbonded && gpu_opt->n_dev_use > 0));
1793 /* Enable GPU mode when GPUs are available or no GPU emulation is requested.
1795 if (gpu_opt->n_dev_use > 0 && !(*bEmulateGPU))
1797 /* Each PP node will use the intra-node id-th device from the
1798 * list of detected/selected GPUs. */
1799 if (!init_gpu(mdlog, cr->rank_pp_intranode, gpu_err_str,
1800 &hwinfo->gpu_info, gpu_opt))
1802 /* At this point the init should never fail as we made sure that
1803 * we have all the GPUs we need. If it still does, we'll bail. */
1804 /* TODO the decorating of gpu_err_str is nicer if it
1805 happens inside init_gpu. Out here, the decorating with
1806 the MPI rank makes sense. */
1807 gmx_fatal(FARGS, "On rank %d failed to initialize GPU #%d: %s",
1808 cr->nodeid,
1809 get_gpu_device_id(&hwinfo->gpu_info, gpu_opt,
1810 cr->rank_pp_intranode),
1811 gpu_err_str);
1814 /* Here we actually turn on hardware GPU acceleration */
1815 *bUseGPU = TRUE;
1819 gmx_bool uses_simple_tables(int cutoff_scheme,
1820 nonbonded_verlet_t *nbv,
1821 int group)
1823 gmx_bool bUsesSimpleTables = TRUE;
1824 int grp_index;
1826 switch (cutoff_scheme)
1828 case ecutsGROUP:
1829 bUsesSimpleTables = TRUE;
1830 break;
1831 case ecutsVERLET:
1832 assert(NULL != nbv && NULL != nbv->grp);
1833 grp_index = (group < 0) ? 0 : (nbv->ngrp - 1);
1834 bUsesSimpleTables = nbnxn_kernel_pairlist_simple(nbv->grp[grp_index].kernel_type);
1835 break;
1836 default:
1837 gmx_incons("unimplemented");
1839 return bUsesSimpleTables;
1842 static void init_ewald_f_table(interaction_const_t *ic,
1843 real rtab)
1845 real maxr;
1847 /* Get the Ewald table spacing based on Coulomb and/or LJ
1848 * Ewald coefficients and rtol.
1850 ic->tabq_scale = ewald_spline3_table_scale(ic);
1852 if (ic->cutoff_scheme == ecutsVERLET)
1854 maxr = ic->rcoulomb;
1856 else
1858 maxr = std::max(ic->rcoulomb, rtab);
1860 ic->tabq_size = static_cast<int>(maxr*ic->tabq_scale) + 2;
1862 sfree_aligned(ic->tabq_coul_FDV0);
1863 sfree_aligned(ic->tabq_coul_F);
1864 sfree_aligned(ic->tabq_coul_V);
1866 sfree_aligned(ic->tabq_vdw_FDV0);
1867 sfree_aligned(ic->tabq_vdw_F);
1868 sfree_aligned(ic->tabq_vdw_V);
1870 if (EEL_PME_EWALD(ic->eeltype))
1872 /* Create the original table data in FDV0 */
1873 snew_aligned(ic->tabq_coul_FDV0, ic->tabq_size*4, 32);
1874 snew_aligned(ic->tabq_coul_F, ic->tabq_size, 32);
1875 snew_aligned(ic->tabq_coul_V, ic->tabq_size, 32);
1876 table_spline3_fill_ewald_lr(ic->tabq_coul_F, ic->tabq_coul_V, ic->tabq_coul_FDV0,
1877 ic->tabq_size, 1/ic->tabq_scale, ic->ewaldcoeff_q, v_q_ewald_lr);
1880 if (EVDW_PME(ic->vdwtype))
1882 snew_aligned(ic->tabq_vdw_FDV0, ic->tabq_size*4, 32);
1883 snew_aligned(ic->tabq_vdw_F, ic->tabq_size, 32);
1884 snew_aligned(ic->tabq_vdw_V, ic->tabq_size, 32);
1885 table_spline3_fill_ewald_lr(ic->tabq_vdw_F, ic->tabq_vdw_V, ic->tabq_vdw_FDV0,
1886 ic->tabq_size, 1/ic->tabq_scale, ic->ewaldcoeff_lj, v_lj_ewald_lr);
1890 void init_interaction_const_tables(FILE *fp,
1891 interaction_const_t *ic,
1892 real rtab)
1894 if (EEL_PME_EWALD(ic->eeltype) || EVDW_PME(ic->vdwtype))
1896 init_ewald_f_table(ic, rtab);
1898 if (fp != nullptr)
1900 fprintf(fp, "Initialized non-bonded Ewald correction tables, spacing: %.2e size: %d\n\n",
1901 1/ic->tabq_scale, ic->tabq_size);
1906 static void clear_force_switch_constants(shift_consts_t *sc)
1908 sc->c2 = 0;
1909 sc->c3 = 0;
1910 sc->cpot = 0;
1913 static void force_switch_constants(real p,
1914 real rsw, real rc,
1915 shift_consts_t *sc)
1917 /* Here we determine the coefficient for shifting the force to zero
1918 * between distance rsw and the cut-off rc.
1919 * For a potential of r^-p, we have force p*r^-(p+1).
1920 * But to save flops we absorb p in the coefficient.
1921 * Thus we get:
1922 * force/p = r^-(p+1) + c2*r^2 + c3*r^3
1923 * potential = r^-p + c2/3*r^3 + c3/4*r^4 + cpot
1925 sc->c2 = ((p + 1)*rsw - (p + 4)*rc)/(pow(rc, p + 2)*gmx::square(rc - rsw));
1926 sc->c3 = -((p + 1)*rsw - (p + 3)*rc)/(pow(rc, p + 2)*gmx::power3(rc - rsw));
1927 sc->cpot = -pow(rc, -p) + p*sc->c2/3*gmx::power3(rc - rsw) + p*sc->c3/4*gmx::power4(rc - rsw);
1930 static void potential_switch_constants(real rsw, real rc,
1931 switch_consts_t *sc)
1933 /* The switch function is 1 at rsw and 0 at rc.
1934 * The derivative and second derivate are zero at both ends.
1935 * rsw = max(r - r_switch, 0)
1936 * sw = 1 + c3*rsw^3 + c4*rsw^4 + c5*rsw^5
1937 * dsw = 3*c3*rsw^2 + 4*c4*rsw^3 + 5*c5*rsw^4
1938 * force = force*dsw - potential*sw
1939 * potential *= sw
1941 sc->c3 = -10/gmx::power3(rc - rsw);
1942 sc->c4 = 15/gmx::power4(rc - rsw);
1943 sc->c5 = -6/gmx::power5(rc - rsw);
1946 /*! \brief Construct interaction constants
1948 * This data is used (particularly) by search and force code for
1949 * short-range interactions. Many of these are constant for the whole
1950 * simulation; some are constant only after PME tuning completes.
1952 static void
1953 init_interaction_const(FILE *fp,
1954 interaction_const_t **interaction_const,
1955 const t_forcerec *fr)
1957 interaction_const_t *ic;
1959 snew(ic, 1);
1961 ic->cutoff_scheme = fr->cutoff_scheme;
1963 /* Just allocate something so we can free it */
1964 snew_aligned(ic->tabq_coul_FDV0, 16, 32);
1965 snew_aligned(ic->tabq_coul_F, 16, 32);
1966 snew_aligned(ic->tabq_coul_V, 16, 32);
1968 ic->rlist = fr->rlist;
1970 /* Lennard-Jones */
1971 ic->vdwtype = fr->vdwtype;
1972 ic->vdw_modifier = fr->vdw_modifier;
1973 ic->rvdw = fr->rvdw;
1974 ic->rvdw_switch = fr->rvdw_switch;
1975 ic->ewaldcoeff_lj = fr->ewaldcoeff_lj;
1976 ic->ljpme_comb_rule = fr->ljpme_combination_rule;
1977 ic->sh_lj_ewald = 0;
1978 clear_force_switch_constants(&ic->dispersion_shift);
1979 clear_force_switch_constants(&ic->repulsion_shift);
1981 switch (ic->vdw_modifier)
1983 case eintmodPOTSHIFT:
1984 /* Only shift the potential, don't touch the force */
1985 ic->dispersion_shift.cpot = -1.0/gmx::power6(ic->rvdw);
1986 ic->repulsion_shift.cpot = -1.0/gmx::power12(ic->rvdw);
1987 if (EVDW_PME(ic->vdwtype))
1989 real crc2;
1991 crc2 = gmx::square(ic->ewaldcoeff_lj*ic->rvdw);
1992 ic->sh_lj_ewald = (std::exp(-crc2)*(1 + crc2 + 0.5*crc2*crc2) - 1)/gmx::power6(ic->rvdw);
1994 break;
1995 case eintmodFORCESWITCH:
1996 /* Switch the force, switch and shift the potential */
1997 force_switch_constants(6.0, ic->rvdw_switch, ic->rvdw,
1998 &ic->dispersion_shift);
1999 force_switch_constants(12.0, ic->rvdw_switch, ic->rvdw,
2000 &ic->repulsion_shift);
2001 break;
2002 case eintmodPOTSWITCH:
2003 /* Switch the potential and force */
2004 potential_switch_constants(ic->rvdw_switch, ic->rvdw,
2005 &ic->vdw_switch);
2006 break;
2007 case eintmodNONE:
2008 case eintmodEXACTCUTOFF:
2009 /* Nothing to do here */
2010 break;
2011 default:
2012 gmx_incons("unimplemented potential modifier");
2015 ic->sh_invrc6 = -ic->dispersion_shift.cpot;
2017 /* Electrostatics */
2018 ic->eeltype = fr->eeltype;
2019 ic->coulomb_modifier = fr->coulomb_modifier;
2020 ic->rcoulomb = fr->rcoulomb;
2021 ic->epsilon_r = fr->epsilon_r;
2022 ic->epsfac = fr->epsfac;
2023 ic->ewaldcoeff_q = fr->ewaldcoeff_q;
2025 if (fr->coulomb_modifier == eintmodPOTSHIFT)
2027 ic->sh_ewald = std::erfc(ic->ewaldcoeff_q*ic->rcoulomb);
2029 else
2031 ic->sh_ewald = 0;
2034 /* Reaction-field */
2035 if (EEL_RF(ic->eeltype))
2037 ic->epsilon_rf = fr->epsilon_rf;
2038 ic->k_rf = fr->k_rf;
2039 ic->c_rf = fr->c_rf;
2041 else
2043 /* For plain cut-off we might use the reaction-field kernels */
2044 ic->epsilon_rf = ic->epsilon_r;
2045 ic->k_rf = 0;
2046 if (fr->coulomb_modifier == eintmodPOTSHIFT)
2048 ic->c_rf = 1/ic->rcoulomb;
2050 else
2052 ic->c_rf = 0;
2056 if (fp != nullptr)
2058 real dispersion_shift;
2060 dispersion_shift = ic->dispersion_shift.cpot;
2061 if (EVDW_PME(ic->vdwtype))
2063 dispersion_shift -= ic->sh_lj_ewald;
2065 fprintf(fp, "Potential shift: LJ r^-12: %.3e r^-6: %.3e",
2066 ic->repulsion_shift.cpot, dispersion_shift);
2068 if (ic->eeltype == eelCUT)
2070 fprintf(fp, ", Coulomb %.e", -ic->c_rf);
2072 else if (EEL_PME(ic->eeltype))
2074 fprintf(fp, ", Ewald %.3e", -ic->sh_ewald);
2076 fprintf(fp, "\n");
2079 *interaction_const = ic;
2082 static void init_nb_verlet(FILE *fp,
2083 const gmx::MDLogger &mdlog,
2084 nonbonded_verlet_t **nb_verlet,
2085 gmx_bool bFEP_NonBonded,
2086 const t_inputrec *ir,
2087 const t_forcerec *fr,
2088 const t_commrec *cr,
2089 const char *nbpu_opt)
2091 nonbonded_verlet_t *nbv;
2092 int i;
2093 char *env;
2094 gmx_bool bEmulateGPU, bHybridGPURun = FALSE;
2096 nbnxn_alloc_t *nb_alloc;
2097 nbnxn_free_t *nb_free;
2099 snew(nbv, 1);
2101 pick_nbnxn_resources(mdlog, cr, fr->hwinfo,
2102 fr->bNonbonded,
2103 &nbv->bUseGPU,
2104 &bEmulateGPU,
2105 fr->gpu_opt);
2107 nbv->nbs = nullptr;
2108 nbv->min_ci_balanced = 0;
2110 nbv->ngrp = (DOMAINDECOMP(cr) ? 2 : 1);
2111 for (i = 0; i < nbv->ngrp; i++)
2113 nbv->grp[i].nbl_lists.nnbl = 0;
2114 nbv->grp[i].nbat = nullptr;
2115 nbv->grp[i].kernel_type = nbnxnkNotSet;
2117 if (i == 0) /* local */
2119 pick_nbnxn_kernel(fp, mdlog, fr->use_simd_kernels,
2120 nbv->bUseGPU, bEmulateGPU, ir,
2121 &nbv->grp[i].kernel_type,
2122 &nbv->grp[i].ewald_excl,
2123 fr->bNonbonded);
2125 else /* non-local */
2127 if (nbpu_opt != nullptr && strcmp(nbpu_opt, "gpu_cpu") == 0)
2129 /* Use GPU for local, select a CPU kernel for non-local */
2130 pick_nbnxn_kernel(fp, mdlog, fr->use_simd_kernels,
2131 FALSE, FALSE, ir,
2132 &nbv->grp[i].kernel_type,
2133 &nbv->grp[i].ewald_excl,
2134 fr->bNonbonded);
2136 bHybridGPURun = TRUE;
2138 else
2140 /* Use the same kernel for local and non-local interactions */
2141 nbv->grp[i].kernel_type = nbv->grp[0].kernel_type;
2142 nbv->grp[i].ewald_excl = nbv->grp[0].ewald_excl;
2147 nbnxn_init_search(&nbv->nbs,
2148 DOMAINDECOMP(cr) ? &cr->dd->nc : nullptr,
2149 DOMAINDECOMP(cr) ? domdec_zones(cr->dd) : nullptr,
2150 bFEP_NonBonded,
2151 gmx_omp_nthreads_get(emntPairsearch));
2153 for (i = 0; i < nbv->ngrp; i++)
2155 gpu_set_host_malloc_and_free(nbv->grp[0].kernel_type == nbnxnk8x8x8_GPU,
2156 &nb_alloc, &nb_free);
2158 nbnxn_init_pairlist_set(&nbv->grp[i].nbl_lists,
2159 nbnxn_kernel_pairlist_simple(nbv->grp[i].kernel_type),
2160 /* 8x8x8 "non-simple" lists are ATM always combined */
2161 !nbnxn_kernel_pairlist_simple(nbv->grp[i].kernel_type),
2162 nb_alloc, nb_free);
2164 if (i == 0 ||
2165 nbv->grp[0].kernel_type != nbv->grp[i].kernel_type)
2167 gmx_bool bSimpleList;
2168 int enbnxninitcombrule;
2170 bSimpleList = nbnxn_kernel_pairlist_simple(nbv->grp[i].kernel_type);
2172 if (fr->vdwtype == evdwCUT &&
2173 (fr->vdw_modifier == eintmodNONE ||
2174 fr->vdw_modifier == eintmodPOTSHIFT) &&
2175 getenv("GMX_NO_LJ_COMB_RULE") == nullptr)
2177 /* Plain LJ cut-off: we can optimize with combination rules */
2178 enbnxninitcombrule = enbnxninitcombruleDETECT;
2180 else if (fr->vdwtype == evdwPME)
2182 /* LJ-PME: we need to use a combination rule for the grid */
2183 if (fr->ljpme_combination_rule == eljpmeGEOM)
2185 enbnxninitcombrule = enbnxninitcombruleGEOM;
2187 else
2189 enbnxninitcombrule = enbnxninitcombruleLB;
2192 else
2194 /* We use a full combination matrix: no rule required */
2195 enbnxninitcombrule = enbnxninitcombruleNONE;
2199 snew(nbv->grp[i].nbat, 1);
2200 nbnxn_atomdata_init(fp,
2201 nbv->grp[i].nbat,
2202 nbv->grp[i].kernel_type,
2203 enbnxninitcombrule,
2204 fr->ntype, fr->nbfp,
2205 ir->opts.ngener,
2206 bSimpleList ? gmx_omp_nthreads_get(emntNonbonded) : 1,
2207 nb_alloc, nb_free);
2209 else
2211 nbv->grp[i].nbat = nbv->grp[0].nbat;
2215 if (nbv->bUseGPU)
2217 /* init the NxN GPU data; the last argument tells whether we'll have
2218 * both local and non-local NB calculation on GPU */
2219 nbnxn_gpu_init(&nbv->gpu_nbv,
2220 &fr->hwinfo->gpu_info,
2221 fr->gpu_opt,
2222 fr->ic,
2223 nbv->grp,
2224 cr->rank_pp_intranode,
2225 cr->nodeid,
2226 (nbv->ngrp > 1) && !bHybridGPURun);
2228 /* With tMPI + GPUs some ranks may be sharing GPU(s) and therefore
2229 * also sharing texture references. To keep the code simple, we don't
2230 * treat texture references as shared resources, but this means that
2231 * the coulomb_tab and nbfp texture refs will get updated by multiple threads.
2232 * Hence, to ensure that the non-bonded kernels don't start before all
2233 * texture binding operations are finished, we need to wait for all ranks
2234 * to arrive here before continuing.
2236 * Note that we could omit this barrier if GPUs are not shared (or
2237 * texture objects are used), but as this is initialization code, there
2238 * is no point in complicating things.
2240 #if GMX_THREAD_MPI
2241 if (PAR(cr))
2243 gmx_barrier(cr);
2245 #endif /* GMX_THREAD_MPI */
2247 if ((env = getenv("GMX_NB_MIN_CI")) != nullptr)
2249 char *end;
2251 nbv->min_ci_balanced = strtol(env, &end, 10);
2252 if (!end || (*end != 0) || nbv->min_ci_balanced < 0)
2254 gmx_fatal(FARGS, "Invalid value passed in GMX_NB_MIN_CI=%s, non-negative integer required", env);
2257 if (debug)
2259 fprintf(debug, "Neighbor-list balancing parameter: %d (passed as env. var.)\n",
2260 nbv->min_ci_balanced);
2263 else
2265 nbv->min_ci_balanced = nbnxn_gpu_min_ci_balanced(nbv->gpu_nbv);
2266 if (debug)
2268 fprintf(debug, "Neighbor-list balancing parameter: %d (auto-adjusted to the number of GPU multi-processors)\n",
2269 nbv->min_ci_balanced);
2275 *nb_verlet = nbv;
2278 gmx_bool usingGpu(nonbonded_verlet_t *nbv)
2280 return nbv != nullptr && nbv->bUseGPU;
2283 void init_forcerec(FILE *fp,
2284 const gmx::MDLogger &mdlog,
2285 t_forcerec *fr,
2286 t_fcdata *fcd,
2287 IForceProvider *forceProviders,
2288 const t_inputrec *ir,
2289 const gmx_mtop_t *mtop,
2290 const t_commrec *cr,
2291 matrix box,
2292 const char *tabfn,
2293 const char *tabpfn,
2294 const t_filenm *tabbfnm,
2295 const char *nbpu_opt,
2296 gmx_bool bNoSolvOpt,
2297 real print_force)
2299 int i, m, negp_pp, negptable, egi, egj;
2300 real rtab;
2301 char *env;
2302 double dbl;
2303 const t_block *cgs;
2304 gmx_bool bGenericKernelOnly;
2305 gmx_bool needGroupSchemeTables, bSomeNormalNbListsAreInUse;
2306 gmx_bool bFEP_NonBonded;
2307 int *nm_ind, egp_flags;
2309 if (fr->hwinfo == nullptr)
2311 /* Detect hardware, gather information.
2312 * In mdrun, hwinfo has already been set before calling init_forcerec.
2313 * Here we ignore GPUs, as tools will not use them anyhow.
2315 fr->hwinfo = gmx_detect_hardware(mdlog, cr, FALSE);
2318 /* By default we turn SIMD kernels on, but it might be turned off further down... */
2319 fr->use_simd_kernels = TRUE;
2321 fr->bDomDec = DOMAINDECOMP(cr);
2323 if (check_box(ir->ePBC, box))
2325 gmx_fatal(FARGS, check_box(ir->ePBC, box));
2328 /* Test particle insertion ? */
2329 if (EI_TPI(ir->eI))
2331 /* Set to the size of the molecule to be inserted (the last one) */
2332 /* Because of old style topologies, we have to use the last cg
2333 * instead of the last molecule type.
2335 cgs = &mtop->moltype[mtop->molblock[mtop->nmolblock-1].type].cgs;
2336 fr->n_tpi = cgs->index[cgs->nr] - cgs->index[cgs->nr-1];
2337 if (fr->n_tpi != mtop->mols.index[mtop->mols.nr] - mtop->mols.index[mtop->mols.nr-1])
2339 gmx_fatal(FARGS, "The molecule to insert can not consist of multiple charge groups.\nMake it a single charge group.");
2342 else
2344 fr->n_tpi = 0;
2347 if (ir->coulombtype == eelRF_NEC_UNSUPPORTED)
2349 gmx_fatal(FARGS, "%s electrostatics is no longer supported",
2350 eel_names[ir->coulombtype]);
2353 if (ir->bAdress)
2355 gmx_fatal(FARGS, "AdResS simulations are no longer supported");
2357 if (ir->useTwinRange)
2359 gmx_fatal(FARGS, "Twin-range simulations are no longer supported");
2361 /* Copy the user determined parameters */
2362 fr->userint1 = ir->userint1;
2363 fr->userint2 = ir->userint2;
2364 fr->userint3 = ir->userint3;
2365 fr->userint4 = ir->userint4;
2366 fr->userreal1 = ir->userreal1;
2367 fr->userreal2 = ir->userreal2;
2368 fr->userreal3 = ir->userreal3;
2369 fr->userreal4 = ir->userreal4;
2371 /* Shell stuff */
2372 fr->fc_stepsize = ir->fc_stepsize;
2374 /* Free energy */
2375 fr->efep = ir->efep;
2376 fr->sc_alphavdw = ir->fepvals->sc_alpha;
2377 if (ir->fepvals->bScCoul)
2379 fr->sc_alphacoul = ir->fepvals->sc_alpha;
2380 fr->sc_sigma6_min = gmx::power6(ir->fepvals->sc_sigma_min);
2382 else
2384 fr->sc_alphacoul = 0;
2385 fr->sc_sigma6_min = 0; /* only needed when bScCoul is on */
2387 fr->sc_power = ir->fepvals->sc_power;
2388 fr->sc_r_power = ir->fepvals->sc_r_power;
2389 fr->sc_sigma6_def = gmx::power6(ir->fepvals->sc_sigma);
2391 env = getenv("GMX_SCSIGMA_MIN");
2392 if (env != nullptr)
2394 dbl = 0;
2395 sscanf(env, "%20lf", &dbl);
2396 fr->sc_sigma6_min = gmx::power6(dbl);
2397 if (fp)
2399 fprintf(fp, "Setting the minimum soft core sigma to %g nm\n", dbl);
2403 fr->bNonbonded = TRUE;
2404 if (getenv("GMX_NO_NONBONDED") != nullptr)
2406 /* turn off non-bonded calculations */
2407 fr->bNonbonded = FALSE;
2408 GMX_LOG(mdlog.warning).asParagraph().appendText(
2409 "Found environment variable GMX_NO_NONBONDED.\n"
2410 "Disabling nonbonded calculations.");
2413 bGenericKernelOnly = FALSE;
2415 /* We now check in the NS code whether a particular combination of interactions
2416 * can be used with water optimization, and disable it if that is not the case.
2419 if (getenv("GMX_NB_GENERIC") != nullptr)
2421 if (fp != nullptr)
2423 fprintf(fp,
2424 "Found environment variable GMX_NB_GENERIC.\n"
2425 "Disabling all interaction-specific nonbonded kernels, will only\n"
2426 "use the slow generic ones in src/gmxlib/nonbonded/nb_generic.c\n\n");
2428 bGenericKernelOnly = TRUE;
2431 if (bGenericKernelOnly == TRUE)
2433 bNoSolvOpt = TRUE;
2436 if ( (getenv("GMX_DISABLE_SIMD_KERNELS") != nullptr) || (getenv("GMX_NOOPTIMIZEDKERNELS") != nullptr) )
2438 fr->use_simd_kernels = FALSE;
2439 if (fp != nullptr)
2441 fprintf(fp,
2442 "\nFound environment variable GMX_DISABLE_SIMD_KERNELS.\n"
2443 "Disabling the usage of any SIMD-specific non-bonded & bonded kernel routines\n"
2444 "(e.g. SSE2/SSE4.1/AVX).\n\n");
2448 fr->bBHAM = (mtop->ffparams.functype[0] == F_BHAM);
2450 /* Check if we can/should do all-vs-all kernels */
2451 fr->bAllvsAll = can_use_allvsall(ir, FALSE, nullptr, nullptr);
2452 fr->AllvsAll_work = nullptr;
2453 fr->AllvsAll_workgb = nullptr;
2455 /* All-vs-all kernels have not been implemented in 4.6 and later.
2456 * See Redmine #1249. */
2457 if (fr->bAllvsAll)
2459 fr->bAllvsAll = FALSE;
2460 if (fp != nullptr)
2462 fprintf(fp,
2463 "\nYour simulation settings would have triggered the efficient all-vs-all\n"
2464 "kernels in GROMACS 4.5, but these have not been implemented in GROMACS\n"
2465 "4.6 and 5.x. If performance is important, please use GROMACS 4.5.7\n"
2466 "or try cutoff-scheme = Verlet.\n\n");
2470 /* Neighbour searching stuff */
2471 fr->cutoff_scheme = ir->cutoff_scheme;
2472 fr->bGrid = (ir->ns_type == ensGRID);
2473 fr->ePBC = ir->ePBC;
2475 if (fr->cutoff_scheme == ecutsGROUP)
2477 const char *note = "NOTE: This file uses the deprecated 'group' cutoff_scheme. This will be\n"
2478 "removed in a future release when 'verlet' supports all interaction forms.\n";
2480 if (MASTER(cr))
2482 fprintf(stderr, "\n%s\n", note);
2484 if (fp != nullptr)
2486 fprintf(fp, "\n%s\n", note);
2490 /* Determine if we will do PBC for distances in bonded interactions */
2491 if (fr->ePBC == epbcNONE)
2493 fr->bMolPBC = FALSE;
2495 else
2497 if (!DOMAINDECOMP(cr))
2499 gmx_bool bSHAKE;
2501 bSHAKE = (ir->eConstrAlg == econtSHAKE &&
2502 (gmx_mtop_ftype_count(mtop, F_CONSTR) > 0 ||
2503 gmx_mtop_ftype_count(mtop, F_CONSTRNC) > 0));
2505 /* The group cut-off scheme and SHAKE assume charge groups
2506 * are whole, but not using molpbc is faster in most cases.
2507 * With intermolecular interactions we need PBC for calculating
2508 * distances between atoms in different molecules.
2510 if ((fr->cutoff_scheme == ecutsGROUP || bSHAKE) &&
2511 !mtop->bIntermolecularInteractions)
2513 fr->bMolPBC = ir->bPeriodicMols;
2515 if (bSHAKE && fr->bMolPBC)
2517 gmx_fatal(FARGS, "SHAKE is not supported with periodic molecules");
2520 else
2522 fr->bMolPBC = TRUE;
2524 if (getenv("GMX_USE_GRAPH") != nullptr)
2526 fr->bMolPBC = FALSE;
2527 if (fp)
2529 GMX_LOG(mdlog.warning).asParagraph().appendText("GMX_USE_GRAPH is set, using the graph for bonded interactions");
2532 if (mtop->bIntermolecularInteractions)
2534 GMX_LOG(mdlog.warning).asParagraph().appendText("WARNING: Molecules linked by intermolecular interactions have to reside in the same periodic image, otherwise artifacts will occur!");
2538 if (bSHAKE && fr->bMolPBC)
2540 gmx_fatal(FARGS, "SHAKE is not properly supported with intermolecular interactions. For short simulations where linked molecules remain in the same periodic image, the environment variable GMX_USE_GRAPH can be used to override this check.\n");
2544 else
2546 fr->bMolPBC = dd_bonded_molpbc(cr->dd, fr->ePBC);
2549 fr->bGB = (ir->implicit_solvent == eisGBSA);
2551 fr->rc_scaling = ir->refcoord_scaling;
2552 copy_rvec(ir->posres_com, fr->posres_com);
2553 copy_rvec(ir->posres_comB, fr->posres_comB);
2554 fr->rlist = cutoff_inf(ir->rlist);
2555 fr->eeltype = ir->coulombtype;
2556 fr->vdwtype = ir->vdwtype;
2557 fr->ljpme_combination_rule = ir->ljpme_combination_rule;
2559 fr->coulomb_modifier = ir->coulomb_modifier;
2560 fr->vdw_modifier = ir->vdw_modifier;
2562 /* Electrostatics: Translate from interaction-setting-in-mdp-file to kernel interaction format */
2563 switch (fr->eeltype)
2565 case eelCUT:
2566 fr->nbkernel_elec_interaction = (fr->bGB) ? GMX_NBKERNEL_ELEC_GENERALIZEDBORN : GMX_NBKERNEL_ELEC_COULOMB;
2567 break;
2569 case eelRF:
2570 case eelGRF:
2571 fr->nbkernel_elec_interaction = GMX_NBKERNEL_ELEC_REACTIONFIELD;
2572 break;
2574 case eelRF_ZERO:
2575 fr->nbkernel_elec_interaction = GMX_NBKERNEL_ELEC_REACTIONFIELD;
2576 fr->coulomb_modifier = eintmodEXACTCUTOFF;
2577 break;
2579 case eelSWITCH:
2580 case eelSHIFT:
2581 case eelUSER:
2582 case eelENCADSHIFT:
2583 case eelPMESWITCH:
2584 case eelPMEUSER:
2585 case eelPMEUSERSWITCH:
2586 fr->nbkernel_elec_interaction = GMX_NBKERNEL_ELEC_CUBICSPLINETABLE;
2587 break;
2589 case eelPME:
2590 case eelP3M_AD:
2591 case eelEWALD:
2592 fr->nbkernel_elec_interaction = GMX_NBKERNEL_ELEC_EWALD;
2593 break;
2595 default:
2596 gmx_fatal(FARGS, "Unsupported electrostatic interaction: %s", eel_names[fr->eeltype]);
2597 break;
2600 /* Vdw: Translate from mdp settings to kernel format */
2601 switch (fr->vdwtype)
2603 case evdwCUT:
2604 if (fr->bBHAM)
2606 fr->nbkernel_vdw_interaction = GMX_NBKERNEL_VDW_BUCKINGHAM;
2608 else
2610 fr->nbkernel_vdw_interaction = GMX_NBKERNEL_VDW_LENNARDJONES;
2612 break;
2613 case evdwPME:
2614 fr->nbkernel_vdw_interaction = GMX_NBKERNEL_VDW_LJEWALD;
2615 break;
2617 case evdwSWITCH:
2618 case evdwSHIFT:
2619 case evdwUSER:
2620 case evdwENCADSHIFT:
2621 fr->nbkernel_vdw_interaction = GMX_NBKERNEL_VDW_CUBICSPLINETABLE;
2622 break;
2624 default:
2625 gmx_fatal(FARGS, "Unsupported vdw interaction: %s", evdw_names[fr->vdwtype]);
2626 break;
2629 /* These start out identical to ir, but might be altered if we e.g. tabulate the interaction in the kernel */
2630 fr->nbkernel_elec_modifier = fr->coulomb_modifier;
2631 fr->nbkernel_vdw_modifier = fr->vdw_modifier;
2633 fr->rvdw = cutoff_inf(ir->rvdw);
2634 fr->rvdw_switch = ir->rvdw_switch;
2635 fr->rcoulomb = cutoff_inf(ir->rcoulomb);
2636 fr->rcoulomb_switch = ir->rcoulomb_switch;
2638 fr->bEwald = EEL_PME_EWALD(fr->eeltype);
2640 fr->reppow = mtop->ffparams.reppow;
2642 if (ir->cutoff_scheme == ecutsGROUP)
2644 fr->bvdwtab = ((fr->vdwtype != evdwCUT || !gmx_within_tol(fr->reppow, 12.0, 10*GMX_DOUBLE_EPS))
2645 && !EVDW_PME(fr->vdwtype));
2646 /* We have special kernels for standard Ewald and PME, but the pme-switch ones are tabulated above */
2647 fr->bcoultab = !(fr->eeltype == eelCUT ||
2648 fr->eeltype == eelEWALD ||
2649 fr->eeltype == eelPME ||
2650 fr->eeltype == eelRF ||
2651 fr->eeltype == eelRF_ZERO);
2653 /* If the user absolutely wants different switch/shift settings for coul/vdw, it is likely
2654 * going to be faster to tabulate the interaction than calling the generic kernel.
2655 * However, if generic kernels have been requested we keep things analytically.
2657 if (fr->nbkernel_elec_modifier == eintmodPOTSWITCH &&
2658 fr->nbkernel_vdw_modifier == eintmodPOTSWITCH &&
2659 bGenericKernelOnly == FALSE)
2661 if ((fr->rcoulomb_switch != fr->rvdw_switch) || (fr->rcoulomb != fr->rvdw))
2663 fr->bcoultab = TRUE;
2664 /* Once we tabulate electrostatics, we can use the switch function for LJ,
2665 * which would otherwise need two tables.
2669 else if ((fr->nbkernel_elec_modifier == eintmodPOTSHIFT && fr->nbkernel_vdw_modifier == eintmodPOTSHIFT) ||
2670 ((fr->nbkernel_elec_interaction == GMX_NBKERNEL_ELEC_REACTIONFIELD &&
2671 fr->nbkernel_elec_modifier == eintmodEXACTCUTOFF &&
2672 (fr->nbkernel_vdw_modifier == eintmodPOTSWITCH || fr->nbkernel_vdw_modifier == eintmodPOTSHIFT))))
2674 if ((fr->rcoulomb != fr->rvdw) && (bGenericKernelOnly == FALSE))
2676 fr->bcoultab = TRUE;
2680 if (fr->nbkernel_elec_modifier == eintmodFORCESWITCH)
2682 fr->bcoultab = TRUE;
2684 if (fr->nbkernel_vdw_modifier == eintmodFORCESWITCH)
2686 fr->bvdwtab = TRUE;
2689 if (getenv("GMX_REQUIRE_TABLES"))
2691 fr->bvdwtab = TRUE;
2692 fr->bcoultab = TRUE;
2695 if (fp)
2697 fprintf(fp, "Table routines are used for coulomb: %s\n",
2698 gmx::boolToString(fr->bcoultab));
2699 fprintf(fp, "Table routines are used for vdw: %s\n",
2700 gmx::boolToString(fr->bvdwtab));
2703 if (fr->bvdwtab == TRUE)
2705 fr->nbkernel_vdw_interaction = GMX_NBKERNEL_VDW_CUBICSPLINETABLE;
2706 fr->nbkernel_vdw_modifier = eintmodNONE;
2708 if (fr->bcoultab == TRUE)
2710 fr->nbkernel_elec_interaction = GMX_NBKERNEL_ELEC_CUBICSPLINETABLE;
2711 fr->nbkernel_elec_modifier = eintmodNONE;
2715 if (ir->cutoff_scheme == ecutsVERLET)
2717 if (!gmx_within_tol(fr->reppow, 12.0, 10*GMX_DOUBLE_EPS))
2719 gmx_fatal(FARGS, "Cut-off scheme %S only supports LJ repulsion power 12", ecutscheme_names[ir->cutoff_scheme]);
2721 fr->bvdwtab = FALSE;
2722 fr->bcoultab = FALSE;
2725 /* This now calculates sum for q and C6 */
2726 set_chargesum(fp, fr, mtop);
2728 /* Tables are used for direct ewald sum */
2729 if (fr->bEwald)
2731 if (EEL_PME(ir->coulombtype))
2733 if (fp)
2735 fprintf(fp, "Will do PME sum in reciprocal space for electrostatic interactions.\n");
2737 if (ir->coulombtype == eelP3M_AD)
2739 please_cite(fp, "Hockney1988");
2740 please_cite(fp, "Ballenegger2012");
2742 else
2744 please_cite(fp, "Essmann95a");
2747 if (ir->ewald_geometry == eewg3DC)
2749 bool haveNetCharge = (fabs(fr->qsum[0]) > 1e-4 ||
2750 fabs(fr->qsum[1]) > 1e-4);
2751 if (fp)
2753 fprintf(fp, "Using the Ewald3DC correction for systems with a slab geometry%s.\n",
2754 haveNetCharge ? " and net charge" : "");
2756 please_cite(fp, "In-Chul99a");
2757 if (haveNetCharge)
2759 please_cite(fp, "Ballenegger2009");
2763 fr->ewaldcoeff_q = calc_ewaldcoeff_q(ir->rcoulomb, ir->ewald_rtol);
2764 init_ewald_tab(&(fr->ewald_table), ir, fp);
2765 if (fp)
2767 fprintf(fp, "Using a Gaussian width (1/beta) of %g nm for Ewald\n",
2768 1/fr->ewaldcoeff_q);
2772 if (EVDW_PME(ir->vdwtype))
2774 if (fp)
2776 fprintf(fp, "Will do PME sum in reciprocal space for LJ dispersion interactions.\n");
2778 please_cite(fp, "Essmann95a");
2779 fr->ewaldcoeff_lj = calc_ewaldcoeff_lj(ir->rvdw, ir->ewald_rtol_lj);
2780 if (fp)
2782 fprintf(fp, "Using a Gaussian width (1/beta) of %g nm for LJ Ewald\n",
2783 1/fr->ewaldcoeff_lj);
2787 /* Electrostatics */
2788 fr->epsilon_r = ir->epsilon_r;
2789 fr->epsilon_rf = ir->epsilon_rf;
2790 fr->fudgeQQ = mtop->ffparams.fudgeQQ;
2792 /* Parameters for generalized RF */
2793 fr->zsquare = 0.0;
2794 fr->temp = 0.0;
2796 if (fr->eeltype == eelGRF)
2798 init_generalized_rf(fp, mtop, ir, fr);
2801 fr->bF_NoVirSum = (EEL_FULL(fr->eeltype) || EVDW_PME(fr->vdwtype) ||
2802 gmx_mtop_ftype_count(mtop, F_POSRES) > 0 ||
2803 gmx_mtop_ftype_count(mtop, F_FBPOSRES) > 0);
2805 /* Initialization call after setting bF_NoVirSum,
2806 * since it efield->initForcerec also sets this to true.
2808 forceProviders->initForcerec(fr);
2810 if (fr->bF_NoVirSum)
2812 fr->forceBufferNoVirialSummation = new PaddedRVecVector;
2815 if (fr->cutoff_scheme == ecutsGROUP &&
2816 ncg_mtop(mtop) > fr->cg_nalloc && !DOMAINDECOMP(cr))
2818 /* Count the total number of charge groups */
2819 fr->cg_nalloc = ncg_mtop(mtop);
2820 srenew(fr->cg_cm, fr->cg_nalloc);
2822 if (fr->shift_vec == nullptr)
2824 snew(fr->shift_vec, SHIFTS);
2827 if (fr->fshift == nullptr)
2829 snew(fr->fshift, SHIFTS);
2832 if (fr->nbfp == nullptr)
2834 fr->ntype = mtop->ffparams.atnr;
2835 fr->nbfp = mk_nbfp(&mtop->ffparams, fr->bBHAM);
2836 if (EVDW_PME(fr->vdwtype))
2838 fr->ljpme_c6grid = make_ljpme_c6grid(&mtop->ffparams, fr);
2842 /* Copy the energy group exclusions */
2843 fr->egp_flags = ir->opts.egp_flags;
2845 /* Van der Waals stuff */
2846 if ((fr->vdwtype != evdwCUT) && (fr->vdwtype != evdwUSER) && !fr->bBHAM)
2848 if (fr->rvdw_switch >= fr->rvdw)
2850 gmx_fatal(FARGS, "rvdw_switch (%f) must be < rvdw (%f)",
2851 fr->rvdw_switch, fr->rvdw);
2853 if (fp)
2855 fprintf(fp, "Using %s Lennard-Jones, switch between %g and %g nm\n",
2856 (fr->eeltype == eelSWITCH) ? "switched" : "shifted",
2857 fr->rvdw_switch, fr->rvdw);
2861 if (fr->bBHAM && EVDW_PME(fr->vdwtype))
2863 gmx_fatal(FARGS, "LJ PME not supported with Buckingham");
2866 if (fr->bBHAM && (fr->vdwtype == evdwSHIFT || fr->vdwtype == evdwSWITCH))
2868 gmx_fatal(FARGS, "Switch/shift interaction not supported with Buckingham");
2871 if (fr->bBHAM && fr->cutoff_scheme == ecutsVERLET)
2873 gmx_fatal(FARGS, "Verlet cutoff-scheme is not supported with Buckingham");
2876 if (fp)
2878 fprintf(fp, "Cut-off's: NS: %g Coulomb: %g %s: %g\n",
2879 fr->rlist, fr->rcoulomb, fr->bBHAM ? "BHAM" : "LJ", fr->rvdw);
2882 fr->eDispCorr = ir->eDispCorr;
2883 fr->numAtomsForDispersionCorrection = mtop->natoms;
2884 if (ir->eDispCorr != edispcNO)
2886 set_avcsixtwelve(fp, fr, mtop);
2889 if (fr->bBHAM)
2891 set_bham_b_max(fp, fr, mtop);
2894 fr->gb_epsilon_solvent = ir->gb_epsilon_solvent;
2896 /* Copy the GBSA data (radius, volume and surftens for each
2897 * atomtype) from the topology atomtype section to forcerec.
2899 snew(fr->atype_radius, fr->ntype);
2900 snew(fr->atype_vol, fr->ntype);
2901 snew(fr->atype_surftens, fr->ntype);
2902 snew(fr->atype_gb_radius, fr->ntype);
2903 snew(fr->atype_S_hct, fr->ntype);
2905 if (mtop->atomtypes.nr > 0)
2907 for (i = 0; i < fr->ntype; i++)
2909 fr->atype_radius[i] = mtop->atomtypes.radius[i];
2911 for (i = 0; i < fr->ntype; i++)
2913 fr->atype_vol[i] = mtop->atomtypes.vol[i];
2915 for (i = 0; i < fr->ntype; i++)
2917 fr->atype_surftens[i] = mtop->atomtypes.surftens[i];
2919 for (i = 0; i < fr->ntype; i++)
2921 fr->atype_gb_radius[i] = mtop->atomtypes.gb_radius[i];
2923 for (i = 0; i < fr->ntype; i++)
2925 fr->atype_S_hct[i] = mtop->atomtypes.S_hct[i];
2929 /* Generate the GB table if needed */
2930 if (fr->bGB)
2932 #if GMX_DOUBLE
2933 fr->gbtabscale = 2000;
2934 #else
2935 fr->gbtabscale = 500;
2936 #endif
2938 fr->gbtabr = 100;
2939 fr->gbtab = make_gb_table(fr);
2941 init_gb(&fr->born, fr, ir, mtop, ir->gb_algorithm);
2943 /* Copy local gb data (for dd, this is done in dd_partition_system) */
2944 if (!DOMAINDECOMP(cr))
2946 make_local_gb(cr, fr->born, ir->gb_algorithm);
2950 /* Set the charge scaling */
2951 if (fr->epsilon_r != 0)
2953 fr->epsfac = ONE_4PI_EPS0/fr->epsilon_r;
2955 else
2957 /* eps = 0 is infinite dieletric: no coulomb interactions */
2958 fr->epsfac = 0;
2961 /* Reaction field constants */
2962 if (EEL_RF(fr->eeltype))
2964 calc_rffac(fp, fr->eeltype, fr->epsilon_r, fr->epsilon_rf,
2965 fr->rcoulomb, fr->temp, fr->zsquare, box,
2966 &fr->kappa, &fr->k_rf, &fr->c_rf);
2969 /* Construct tables for the group scheme. A little unnecessary to
2970 * make both vdw and coul tables sometimes, but what the
2971 * heck. Note that both cutoff schemes construct Ewald tables in
2972 * init_interaction_const_tables. */
2973 needGroupSchemeTables = (ir->cutoff_scheme == ecutsGROUP &&
2974 (fr->bcoultab || fr->bvdwtab));
2976 negp_pp = ir->opts.ngener - ir->nwall;
2977 negptable = 0;
2978 if (!needGroupSchemeTables)
2980 bSomeNormalNbListsAreInUse = TRUE;
2981 fr->nnblists = 1;
2983 else
2985 bSomeNormalNbListsAreInUse = FALSE;
2986 for (egi = 0; egi < negp_pp; egi++)
2988 for (egj = egi; egj < negp_pp; egj++)
2990 egp_flags = ir->opts.egp_flags[GID(egi, egj, ir->opts.ngener)];
2991 if (!(egp_flags & EGP_EXCL))
2993 if (egp_flags & EGP_TABLE)
2995 negptable++;
2997 else
2999 bSomeNormalNbListsAreInUse = TRUE;
3004 if (bSomeNormalNbListsAreInUse)
3006 fr->nnblists = negptable + 1;
3008 else
3010 fr->nnblists = negptable;
3012 if (fr->nnblists > 1)
3014 snew(fr->gid2nblists, ir->opts.ngener*ir->opts.ngener);
3018 snew(fr->nblists, fr->nnblists);
3020 /* This code automatically gives table length tabext without cut-off's,
3021 * in that case grompp should already have checked that we do not need
3022 * normal tables and we only generate tables for 1-4 interactions.
3024 rtab = ir->rlist + ir->tabext;
3026 if (needGroupSchemeTables)
3028 /* make tables for ordinary interactions */
3029 if (bSomeNormalNbListsAreInUse)
3031 make_nbf_tables(fp, fr, rtab, tabfn, nullptr, nullptr, &fr->nblists[0]);
3032 m = 1;
3034 else
3036 m = 0;
3038 if (negptable > 0)
3040 /* Read the special tables for certain energy group pairs */
3041 nm_ind = mtop->groups.grps[egcENER].nm_ind;
3042 for (egi = 0; egi < negp_pp; egi++)
3044 for (egj = egi; egj < negp_pp; egj++)
3046 egp_flags = ir->opts.egp_flags[GID(egi, egj, ir->opts.ngener)];
3047 if ((egp_flags & EGP_TABLE) && !(egp_flags & EGP_EXCL))
3049 if (fr->nnblists > 1)
3051 fr->gid2nblists[GID(egi, egj, ir->opts.ngener)] = m;
3053 /* Read the table file with the two energy groups names appended */
3054 make_nbf_tables(fp, fr, rtab, tabfn,
3055 *mtop->groups.grpname[nm_ind[egi]],
3056 *mtop->groups.grpname[nm_ind[egj]],
3057 &fr->nblists[m]);
3058 m++;
3060 else if (fr->nnblists > 1)
3062 fr->gid2nblists[GID(egi, egj, ir->opts.ngener)] = 0;
3069 /* Tables might not be used for the potential modifier
3070 * interactions per se, but we still need them to evaluate
3071 * switch/shift dispersion corrections in this case. */
3072 if (fr->eDispCorr != edispcNO)
3074 fr->dispersionCorrectionTable = makeDispersionCorrectionTable(fp, fr, rtab, tabfn);
3077 /* We want to use unmodified tables for 1-4 coulombic
3078 * interactions, so we must in general have an extra set of
3079 * tables. */
3080 if (gmx_mtop_ftype_count(mtop, F_LJ14) > 0 ||
3081 gmx_mtop_ftype_count(mtop, F_LJC14_Q) > 0 ||
3082 gmx_mtop_ftype_count(mtop, F_LJC_PAIRS_NB) > 0)
3084 fr->pairsTable = make_tables(fp, fr, tabpfn, rtab,
3085 GMX_MAKETABLES_14ONLY);
3088 /* Wall stuff */
3089 fr->nwall = ir->nwall;
3090 if (ir->nwall && ir->wall_type == ewtTABLE)
3092 make_wall_tables(fp, ir, tabfn, &mtop->groups, fr);
3095 if (fcd && tabbfnm)
3097 // Need to catch std::bad_alloc
3098 // TODO Don't need to catch this here, when merging with master branch
3101 fcd->bondtab = make_bonded_tables(fp,
3102 F_TABBONDS, F_TABBONDSNC,
3103 mtop, tabbfnm, "b");
3104 fcd->angletab = make_bonded_tables(fp,
3105 F_TABANGLES, -1,
3106 mtop, tabbfnm, "a");
3107 fcd->dihtab = make_bonded_tables(fp,
3108 F_TABDIHS, -1,
3109 mtop, tabbfnm, "d");
3111 GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
3113 else
3115 if (debug)
3117 fprintf(debug, "No fcdata or table file name passed, can not read table, can not do bonded interactions\n");
3121 /* QM/MM initialization if requested
3123 if (ir->bQMMM)
3125 fprintf(stderr, "QM/MM calculation requested.\n");
3128 fr->bQMMM = ir->bQMMM;
3129 fr->qr = mk_QMMMrec();
3131 /* Set all the static charge group info */
3132 fr->cginfo_mb = init_cginfo_mb(fp, mtop, fr, bNoSolvOpt,
3133 &bFEP_NonBonded,
3134 &fr->bExcl_IntraCGAll_InterCGNone);
3135 if (DOMAINDECOMP(cr))
3137 fr->cginfo = nullptr;
3139 else
3141 fr->cginfo = cginfo_expand(mtop->nmolblock, fr->cginfo_mb);
3144 if (!DOMAINDECOMP(cr))
3146 forcerec_set_ranges(fr, ncg_mtop(mtop), ncg_mtop(mtop),
3147 mtop->natoms, mtop->natoms, mtop->natoms);
3150 fr->print_force = print_force;
3153 /* coarse load balancing vars */
3154 fr->t_fnbf = 0.;
3155 fr->t_wait = 0.;
3156 fr->timesteps = 0;
3158 /* Initialize neighbor search */
3159 snew(fr->ns, 1);
3160 init_ns(fp, cr, fr->ns, fr, mtop);
3162 if (cr->duty & DUTY_PP)
3164 gmx_nonbonded_setup(fr, bGenericKernelOnly);
3167 /* Initialize the thread working data for bonded interactions */
3168 init_bonded_threading(fp, mtop->groups.grps[egcENER].nr,
3169 &fr->bonded_threading);
3171 fr->nthread_ewc = gmx_omp_nthreads_get(emntBonded);
3172 snew(fr->ewc_t, fr->nthread_ewc);
3174 /* fr->ic is used both by verlet and group kernels (to some extent) now */
3175 init_interaction_const(fp, &fr->ic, fr);
3176 init_interaction_const_tables(fp, fr->ic, rtab);
3178 if (fr->cutoff_scheme == ecutsVERLET)
3180 // We checked the cut-offs in grompp, but double-check here.
3181 // We have PME+LJcutoff kernels for rcoulomb>rvdw.
3182 if (EEL_PME_EWALD(ir->coulombtype) && ir->vdwtype == eelCUT)
3184 GMX_RELEASE_ASSERT(ir->rcoulomb >= ir->rvdw, "With Verlet lists and PME we should have rcoulomb>=rvdw");
3186 else
3188 GMX_RELEASE_ASSERT(ir->rcoulomb == ir->rvdw, "With Verlet lists and no PME rcoulomb and rvdw should be identical");
3191 init_nb_verlet(fp, mdlog, &fr->nbv, bFEP_NonBonded, ir, fr, cr, nbpu_opt);
3194 if (ir->eDispCorr != edispcNO)
3196 calc_enervirdiff(fp, ir->eDispCorr, fr);
3200 #define pr_real(fp, r) fprintf(fp, "%s: %e\n",#r, r)
3201 #define pr_int(fp, i) fprintf((fp), "%s: %d\n",#i, i)
3202 #define pr_bool(fp, b) fprintf((fp), "%s: %s\n",#b, gmx::boolToString(b))
3204 void pr_forcerec(FILE *fp, t_forcerec *fr)
3206 int i;
3208 pr_real(fp, fr->rlist);
3209 pr_real(fp, fr->rcoulomb);
3210 pr_real(fp, fr->fudgeQQ);
3211 pr_bool(fp, fr->bGrid);
3212 /*pr_int(fp,fr->cg0);
3213 pr_int(fp,fr->hcg);*/
3214 for (i = 0; i < fr->nnblists; i++)
3216 pr_int(fp, fr->nblists[i].table_elec_vdw->n);
3218 pr_real(fp, fr->rcoulomb_switch);
3219 pr_real(fp, fr->rcoulomb);
3221 fflush(fp);
3224 /* Frees GPU memory and destroys the GPU context.
3226 * Note that this function needs to be called even if GPUs are not used
3227 * in this run because the PME ranks have no knowledge of whether GPUs
3228 * are used or not, but all ranks need to enter the barrier below.
3230 void free_gpu_resources(const t_forcerec *fr,
3231 const t_commrec *cr,
3232 const gmx_gpu_info_t *gpu_info,
3233 const gmx_gpu_opt_t *gpu_opt)
3235 gmx_bool bIsPPrankUsingGPU;
3236 char gpu_err_str[STRLEN];
3238 bIsPPrankUsingGPU = (cr->duty & DUTY_PP) && fr && fr->nbv && fr->nbv->bUseGPU;
3240 if (bIsPPrankUsingGPU)
3242 /* free nbnxn data in GPU memory */
3243 nbnxn_gpu_free(fr->nbv->gpu_nbv);
3244 /* stop the GPU profiler (only CUDA) */
3245 stopGpuProfiler();
3248 /* With tMPI we need to wait for all ranks to finish deallocation before
3249 * destroying the CUDA context in free_gpu() as some tMPI ranks may be sharing
3250 * GPU and context.
3252 * This is not a concern in OpenCL where we use one context per rank which
3253 * is freed in nbnxn_gpu_free().
3255 * Note: it is safe to not call the barrier on the ranks which do not use GPU,
3256 * but it is easier and more futureproof to call it on the whole node.
3258 #if GMX_THREAD_MPI
3259 if (PAR(cr) || MULTISIM(cr))
3261 gmx_barrier_physical_node(cr);
3263 #endif /* GMX_THREAD_MPI */
3265 if (bIsPPrankUsingGPU)
3267 /* uninitialize GPU (by destroying the context) */
3268 if (!free_cuda_gpu(cr->rank_pp_intranode, gpu_err_str, gpu_info, gpu_opt))
3270 gmx_warning("On rank %d failed to free GPU #%d: %s",
3271 cr->nodeid, get_current_cuda_gpu_device_id(), gpu_err_str);