Add cool quote
[alexxy/gromacs.git] / src / gromacs / listed-forces / pairs.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2014,2015,2016,2017, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 /*! \internal \file
36  *
37  * \brief This file defines functions for "pair" interactions
38  * (i.e. listed non-bonded interactions, e.g. 1-4 interactions)
39  *
40  * \author Mark Abraham <mark.j.abraham@gmail.com>
41  *
42  * \ingroup module_listed-forces
43  */
44 #include "gmxpre.h"
45
46 #include "pairs.h"
47
48 #include <cmath>
49
50 #include "gromacs/math/functions.h"
51 #include "gromacs/math/vec.h"
52 #include "gromacs/mdtypes/group.h"
53 #include "gromacs/mdtypes/md_enums.h"
54 #include "gromacs/mdtypes/nblist.h"
55 #include "gromacs/pbcutil/ishift.h"
56 #include "gromacs/pbcutil/mshift.h"
57 #include "gromacs/pbcutil/pbc.h"
58 #include "gromacs/pbcutil/pbc-simd.h"
59 #include "gromacs/simd/simd.h"
60 #include "gromacs/simd/simd_math.h"
61 #include "gromacs/simd/vector_operations.h"
62 #include "gromacs/tables/forcetable.h"
63 #include "gromacs/utility/basedefinitions.h"
64 #include "gromacs/utility/fatalerror.h"
65 #include "gromacs/utility/gmxassert.h"
66
67 #include "listed-internal.h"
68
69 using namespace gmx; // TODO: Remove when this file is moved into gmx namespace
70
71 /*! \brief Issue a warning if a listed interaction is beyond a table limit */
72 static void
73 warning_rlimit(const rvec *x, int ai, int aj, int * global_atom_index, real r, real rlimit)
74 {
75     gmx_warning("Listed nonbonded interaction between particles %d and %d\n"
76                 "at distance %.3f which is larger than the table limit %.3f nm.\n\n"
77                 "This is likely either a 1,4 interaction, or a listed interaction inside\n"
78                 "a smaller molecule you are decoupling during a free energy calculation.\n"
79                 "Since interactions at distances beyond the table cannot be computed,\n"
80                 "they are skipped until they are inside the table limit again. You will\n"
81                 "only see this message once, even if it occurs for several interactions.\n\n"
82                 "IMPORTANT: This should not happen in a stable simulation, so there is\n"
83                 "probably something wrong with your system. Only change the table-extension\n"
84                 "distance in the mdp file if you are really sure that is the reason.\n",
85                 glatnr(global_atom_index, ai), glatnr(global_atom_index, aj), r, rlimit);
86
87     if (debug)
88     {
89         fprintf(debug,
90                 "%8f %8f %8f\n%8f %8f %8f\n1-4 (%d,%d) interaction not within cut-off! r=%g. Ignored\n",
91                 x[ai][XX], x[ai][YY], x[ai][ZZ], x[aj][XX], x[aj][YY], x[aj][ZZ],
92                 glatnr(global_atom_index, ai), glatnr(global_atom_index, aj), r);
93     }
94 }
95
96 /*! \brief Compute the energy and force for a single pair interaction */
97 static real
98 evaluate_single(real r2, real tabscale, real *vftab, real tableStride,
99                 real qq, real c6, real c12, real *velec, real *vvdw)
100 {
101     real       rinv, r, rtab, eps, eps2, Y, F, Geps, Heps2, Fp, VVe, FFe, VVd, FFd, VVr, FFr, fscal;
102     int        ntab;
103
104     /* Do the tabulated interactions - first table lookup */
105     rinv             = gmx::invsqrt(r2);
106     r                = r2*rinv;
107     rtab             = r*tabscale;
108     ntab             = static_cast<int>(rtab);
109     eps              = rtab-ntab;
110     eps2             = eps*eps;
111     ntab             = tableStride*ntab;
112     /* Electrostatics */
113     Y                = vftab[ntab];
114     F                = vftab[ntab+1];
115     Geps             = eps*vftab[ntab+2];
116     Heps2            = eps2*vftab[ntab+3];
117     Fp               = F+Geps+Heps2;
118     VVe              = Y+eps*Fp;
119     FFe              = Fp+Geps+2.0*Heps2;
120     /* Dispersion */
121     Y                = vftab[ntab+4];
122     F                = vftab[ntab+5];
123     Geps             = eps*vftab[ntab+6];
124     Heps2            = eps2*vftab[ntab+7];
125     Fp               = F+Geps+Heps2;
126     VVd              = Y+eps*Fp;
127     FFd              = Fp+Geps+2.0*Heps2;
128     /* Repulsion */
129     Y                = vftab[ntab+8];
130     F                = vftab[ntab+9];
131     Geps             = eps*vftab[ntab+10];
132     Heps2            = eps2*vftab[ntab+11];
133     Fp               = F+Geps+Heps2;
134     VVr              = Y+eps*Fp;
135     FFr              = Fp+Geps+2.0*Heps2;
136
137     *velec           = qq*VVe;
138     *vvdw            = c6*VVd+c12*VVr;
139
140     fscal            = -(qq*FFe+c6*FFd+c12*FFr)*tabscale*rinv;
141
142     return fscal;
143 }
144
145 /*! \brief Compute the energy and force for a single pair interaction under FEP */
146 static real
147 free_energy_evaluate_single(real r2, real sc_r_power, real alpha_coul,
148                             real alpha_vdw, real tabscale, real *vftab, real tableStride,
149                             real qqA, real c6A, real c12A, real qqB,
150                             real c6B, real c12B, real LFC[2], real LFV[2], real DLF[2],
151                             real lfac_coul[2], real lfac_vdw[2], real dlfac_coul[2],
152                             real dlfac_vdw[2], real sigma6_def, real sigma6_min,
153                             real sigma2_def, real sigma2_min,
154                             real *velectot, real *vvdwtot, real *dvdl)
155 {
156     real       rp, rpm2, rtab, eps, eps2, Y, F, Geps, Heps2, Fp, VV, FF, fscal;
157     real       qq[2], c6[2], c12[2], sigma6[2], sigma2[2], sigma_pow[2];
158     real       alpha_coul_eff, alpha_vdw_eff, dvdl_coul, dvdl_vdw;
159     real       rpinv, r_coul, r_vdw, velecsum, vvdwsum;
160     real       fscal_vdw[2], fscal_elec[2];
161     real       velec[2], vvdw[2];
162     int        i, ntab;
163     const real half        = 0.5;
164     const real minusOne    = -1.0;
165     const real one         = 1.0;
166     const real two         = 2.0;
167     const real six         = 6.0;
168     const real fourtyeight = 48.0;
169
170     qq[0]    = qqA;
171     qq[1]    = qqB;
172     c6[0]    = c6A;
173     c6[1]    = c6B;
174     c12[0]   = c12A;
175     c12[1]   = c12B;
176
177     if (sc_r_power == six)
178     {
179         rpm2             = r2*r2;   /* r4 */
180         rp               = rpm2*r2; /* r6 */
181     }
182     else if (sc_r_power == fourtyeight)
183     {
184         rp               = r2*r2*r2; /* r6 */
185         rp               = rp*rp;    /* r12 */
186         rp               = rp*rp;    /* r24 */
187         rp               = rp*rp;    /* r48 */
188         rpm2             = rp/r2;    /* r46 */
189     }
190     else
191     {
192         rp             = std::pow(r2, half * sc_r_power);  /* not currently supported as input, but can handle it */
193         rpm2           = rp/r2;
194     }
195
196     /* Loop over state A(0) and B(1) */
197     for (i = 0; i < 2; i++)
198     {
199         if ((c6[i] > 0) && (c12[i] > 0))
200         {
201             /* The c6 & c12 coefficients now contain the constants 6.0 and 12.0, respectively.
202              * Correct for this by multiplying with (1/12.0)/(1/6.0)=6.0/12.0=0.5.
203              */
204             sigma6[i]       = half*c12[i]/c6[i];
205             sigma2[i]       = std::cbrt(half*c12[i]/c6[i]);
206             /* should be able to get rid of this ^^^ internal pow call eventually.  Will require agreement on
207                what data to store externally.  Can't be fixed without larger scale changes, so not 5.0 */
208             if (sigma6[i] < sigma6_min)   /* for disappearing coul and vdw with soft core at the same time */
209             {
210                 sigma6[i] = sigma6_min;
211                 sigma2[i] = sigma2_min;
212             }
213         }
214         else
215         {
216             sigma6[i]       = sigma6_def;
217             sigma2[i]       = sigma2_def;
218         }
219         if (sc_r_power == six)
220         {
221             sigma_pow[i]    = sigma6[i];
222         }
223         else if (sc_r_power == fourtyeight)
224         {
225             sigma_pow[i]    = sigma6[i]*sigma6[i];       /* sigma^12 */
226             sigma_pow[i]    = sigma_pow[i]*sigma_pow[i]; /* sigma^24 */
227             sigma_pow[i]    = sigma_pow[i]*sigma_pow[i]; /* sigma^48 */
228         }
229         else
230         {       /* not really supported as input, but in here for testing the general case*/
231             sigma_pow[i]    = std::pow(sigma2[i], sc_r_power/2);
232         }
233     }
234
235     /* only use softcore if one of the states has a zero endstate - softcore is for avoiding infinities!*/
236     if ((c12[0] > 0) && (c12[1] > 0))
237     {
238         alpha_vdw_eff    = 0;
239         alpha_coul_eff   = 0;
240     }
241     else
242     {
243         alpha_vdw_eff    = alpha_vdw;
244         alpha_coul_eff   = alpha_coul;
245     }
246
247     /* Loop over A and B states again */
248     for (i = 0; i < 2; i++)
249     {
250         fscal_elec[i] = 0;
251         fscal_vdw[i]  = 0;
252         velec[i]      = 0;
253         vvdw[i]       = 0;
254
255         /* Only spend time on A or B state if it is non-zero */
256         if ( (qq[i] != 0) || (c6[i] != 0) || (c12[i] != 0) )
257         {
258             /* Coulomb */
259             rpinv            = one/(alpha_coul_eff*lfac_coul[i]*sigma_pow[i]+rp);
260             r_coul           = std::pow(rpinv, minusOne / sc_r_power);
261
262             /* Electrostatics table lookup data */
263             rtab             = r_coul*tabscale;
264             ntab             = static_cast<int>(rtab);
265             eps              = rtab-ntab;
266             eps2             = eps*eps;
267             ntab             = tableStride*ntab;
268             /* Electrostatics */
269             Y                = vftab[ntab];
270             F                = vftab[ntab+1];
271             Geps             = eps*vftab[ntab+2];
272             Heps2            = eps2*vftab[ntab+3];
273             Fp               = F+Geps+Heps2;
274             VV               = Y+eps*Fp;
275             FF               = Fp+Geps+two*Heps2;
276             velec[i]         = qq[i]*VV;
277             fscal_elec[i]    = -qq[i]*FF*r_coul*rpinv*tabscale;
278
279             /* Vdw */
280             rpinv            = one/(alpha_vdw_eff*lfac_vdw[i]*sigma_pow[i]+rp);
281             r_vdw            = std::pow(rpinv, minusOne / sc_r_power);
282             /* Vdw table lookup data */
283             rtab             = r_vdw*tabscale;
284             ntab             = static_cast<int>(rtab);
285             eps              = rtab-ntab;
286             eps2             = eps*eps;
287             ntab             = 12*ntab;
288             /* Dispersion */
289             Y                = vftab[ntab+4];
290             F                = vftab[ntab+5];
291             Geps             = eps*vftab[ntab+6];
292             Heps2            = eps2*vftab[ntab+7];
293             Fp               = F+Geps+Heps2;
294             VV               = Y+eps*Fp;
295             FF               = Fp+Geps+two*Heps2;
296             vvdw[i]          = c6[i]*VV;
297             fscal_vdw[i]     = -c6[i]*FF;
298
299             /* Repulsion */
300             Y                = vftab[ntab+8];
301             F                = vftab[ntab+9];
302             Geps             = eps*vftab[ntab+10];
303             Heps2            = eps2*vftab[ntab+11];
304             Fp               = F+Geps+Heps2;
305             VV               = Y+eps*Fp;
306             FF               = Fp+Geps+two*Heps2;
307             vvdw[i]         += c12[i]*VV;
308             fscal_vdw[i]    -= c12[i]*FF;
309             fscal_vdw[i]    *= r_vdw*rpinv*tabscale;
310         }
311     }
312     /* Now we have velec[i], vvdw[i], and fscal[i] for both states */
313     /* Assemble A and B states */
314     velecsum  = 0;
315     vvdwsum   = 0;
316     dvdl_coul = 0;
317     dvdl_vdw  = 0;
318     fscal     = 0;
319     for (i = 0; i < 2; i++)
320     {
321         velecsum      += LFC[i]*velec[i];
322         vvdwsum       += LFV[i]*vvdw[i];
323
324         fscal         += (LFC[i]*fscal_elec[i]+LFV[i]*fscal_vdw[i])*rpm2;
325
326         dvdl_coul     += velec[i]*DLF[i] + LFC[i]*alpha_coul_eff*dlfac_coul[i]*fscal_elec[i]*sigma_pow[i];
327         dvdl_vdw      += vvdw[i]*DLF[i] + LFV[i]*alpha_vdw_eff*dlfac_vdw[i]*fscal_vdw[i]*sigma_pow[i];
328     }
329
330     dvdl[efptCOUL]     += dvdl_coul;
331     dvdl[efptVDW]      += dvdl_vdw;
332
333     *velectot           = velecsum;
334     *vvdwtot            = vvdwsum;
335
336     return fscal;
337 }
338
339 /*! \brief Calculate pair interactions, supports all types and conditions. */
340 static real
341 do_pairs_general(int ftype, int nbonds,
342                  const t_iatom iatoms[], const t_iparams iparams[],
343                  const rvec x[], rvec4 f[], rvec fshift[],
344                  const struct t_pbc *pbc, const struct t_graph *g,
345                  const real *lambda, real *dvdl,
346                  const t_mdatoms *md,
347                  const t_forcerec *fr, gmx_grppairener_t *grppener,
348                  int *global_atom_index)
349 {
350     real             qq, c6, c12;
351     rvec             dx;
352     ivec             dt;
353     int              i, itype, ai, aj, gid;
354     int              fshift_index;
355     real             r2;
356     real             fscal, velec, vvdw;
357     real *           energygrp_elec;
358     real *           energygrp_vdw;
359     static gmx_bool  warned_rlimit = FALSE;
360     /* Free energy stuff */
361     gmx_bool         bFreeEnergy;
362     real             LFC[2], LFV[2], DLF[2], lfac_coul[2], lfac_vdw[2], dlfac_coul[2], dlfac_vdw[2];
363     real             qqB, c6B, c12B, sigma2_def, sigma2_min;
364
365     switch (ftype)
366     {
367         case F_LJ14:
368         case F_LJC14_Q:
369             energygrp_elec = grppener->ener[egCOUL14];
370             energygrp_vdw  = grppener->ener[egLJ14];
371             break;
372         case F_LJC_PAIRS_NB:
373             energygrp_elec = grppener->ener[egCOULSR];
374             energygrp_vdw  = grppener->ener[egLJSR];
375             break;
376         default:
377             energygrp_elec = nullptr; /* Keep compiler happy */
378             energygrp_vdw  = nullptr; /* Keep compiler happy */
379             gmx_fatal(FARGS, "Unknown function type %d in do_nonbonded14", ftype);
380             break;
381     }
382
383     if (fr->efep != efepNO)
384     {
385         /* Lambda factor for state A=1-lambda and B=lambda */
386         LFC[0] = 1.0 - lambda[efptCOUL];
387         LFV[0] = 1.0 - lambda[efptVDW];
388         LFC[1] = lambda[efptCOUL];
389         LFV[1] = lambda[efptVDW];
390
391         /*derivative of the lambda factor for state A and B */
392         DLF[0] = -1;
393         DLF[1] = 1;
394
395         /* precalculate */
396         sigma2_def = std::cbrt(fr->sc_sigma6_def);
397         sigma2_min = std::cbrt(fr->sc_sigma6_min);
398
399         for (i = 0; i < 2; i++)
400         {
401             lfac_coul[i]  = (fr->sc_power == 2 ? (1-LFC[i])*(1-LFC[i]) : (1-LFC[i]));
402             dlfac_coul[i] = DLF[i]*fr->sc_power/fr->sc_r_power*(fr->sc_power == 2 ? (1-LFC[i]) : 1);
403             lfac_vdw[i]   = (fr->sc_power == 2 ? (1-LFV[i])*(1-LFV[i]) : (1-LFV[i]));
404             dlfac_vdw[i]  = DLF[i]*fr->sc_power/fr->sc_r_power*(fr->sc_power == 2 ? (1-LFV[i]) : 1);
405         }
406     }
407     else
408     {
409         sigma2_min = sigma2_def = 0;
410     }
411
412     /* TODO This code depends on the logic in tables.c that constructs
413        the table layout, which should be made explicit in future
414        cleanup. */
415     GMX_ASSERT(etiNR == 3, "Pair-interaction code that uses GROMACS interaction tables supports exactly 3 tables");
416     GMX_ASSERT(fr->pairsTable->interaction == GMX_TABLE_INTERACTION_ELEC_VDWREP_VDWDISP,
417                "Pair interaction kernels need a table with Coulomb, repulsion and dispersion entries");
418
419     const real epsfac = fr->ic->epsfac;
420
421     bFreeEnergy = FALSE;
422     for (i = 0; (i < nbonds); )
423     {
424         itype = iatoms[i++];
425         ai    = iatoms[i++];
426         aj    = iatoms[i++];
427         gid   = GID(md->cENER[ai], md->cENER[aj], md->nenergrp);
428
429         /* Get parameters */
430         switch (ftype)
431         {
432             case F_LJ14:
433                 bFreeEnergy =
434                     (fr->efep != efepNO &&
435                      ((md->nPerturbed && (md->bPerturbed[ai] || md->bPerturbed[aj])) ||
436                       iparams[itype].lj14.c6A != iparams[itype].lj14.c6B ||
437                       iparams[itype].lj14.c12A != iparams[itype].lj14.c12B));
438                 qq               = md->chargeA[ai]*md->chargeA[aj]*epsfac*fr->fudgeQQ;
439                 c6               = iparams[itype].lj14.c6A;
440                 c12              = iparams[itype].lj14.c12A;
441                 break;
442             case F_LJC14_Q:
443                 qq               = iparams[itype].ljc14.qi*iparams[itype].ljc14.qj*epsfac*iparams[itype].ljc14.fqq;
444                 c6               = iparams[itype].ljc14.c6;
445                 c12              = iparams[itype].ljc14.c12;
446                 break;
447             case F_LJC_PAIRS_NB:
448                 qq               = iparams[itype].ljcnb.qi*iparams[itype].ljcnb.qj*epsfac;
449                 c6               = iparams[itype].ljcnb.c6;
450                 c12              = iparams[itype].ljcnb.c12;
451                 break;
452             default:
453                 /* Cannot happen since we called gmx_fatal() above in this case */
454                 qq = c6 = c12 = 0; /* Keep compiler happy */
455                 break;
456         }
457
458         /* To save flops in the optimized kernels, c6/c12 have 6.0/12.0 derivative prefactors
459          * included in the general nfbp array now. This means the tables are scaled down by the
460          * same factor, so when we use the original c6/c12 parameters from iparams[] they must
461          * be scaled up.
462          */
463         c6  *= 6.0;
464         c12 *= 12.0;
465
466         /* Do we need to apply full periodic boundary conditions? */
467         if (fr->bMolPBC == TRUE)
468         {
469             fshift_index = pbc_dx_aiuc(pbc, x[ai], x[aj], dx);
470         }
471         else
472         {
473             fshift_index = CENTRAL;
474             rvec_sub(x[ai], x[aj], dx);
475         }
476         r2           = norm2(dx);
477
478         if (r2 >= fr->pairsTable->r*fr->pairsTable->r)
479         {
480             /* This check isn't race free. But it doesn't matter because if a race occurs the only
481              * disadvantage is that the warning is printed twice */
482             if (warned_rlimit == FALSE)
483             {
484                 warning_rlimit(x, ai, aj, global_atom_index, sqrt(r2), fr->pairsTable->r);
485                 warned_rlimit = TRUE;
486             }
487             continue;
488         }
489
490         if (bFreeEnergy)
491         {
492             /* Currently free energy is only supported for F_LJ14, so no need to check for that if we got here */
493             qqB              = md->chargeB[ai]*md->chargeB[aj]*epsfac*fr->fudgeQQ;
494             c6B              = iparams[itype].lj14.c6B*6.0;
495             c12B             = iparams[itype].lj14.c12B*12.0;
496
497             fscal            = free_energy_evaluate_single(r2, fr->sc_r_power, fr->sc_alphacoul, fr->sc_alphavdw,
498                                                            fr->pairsTable->scale, fr->pairsTable->data, fr->pairsTable->stride,
499                                                            qq, c6, c12, qqB, c6B, c12B,
500                                                            LFC, LFV, DLF, lfac_coul, lfac_vdw, dlfac_coul, dlfac_vdw,
501                                                            fr->sc_sigma6_def, fr->sc_sigma6_min, sigma2_def, sigma2_min, &velec, &vvdw, dvdl);
502         }
503         else
504         {
505             /* Evaluate tabulated interaction without free energy */
506             fscal            = evaluate_single(r2, fr->pairsTable->scale, fr->pairsTable->data, fr->pairsTable->stride,
507                                                qq, c6, c12, &velec, &vvdw);
508         }
509
510         energygrp_elec[gid]  += velec;
511         energygrp_vdw[gid]   += vvdw;
512         svmul(fscal, dx, dx);
513
514         /* Add the forces */
515         rvec_inc(f[ai], dx);
516         rvec_dec(f[aj], dx);
517
518         if (g)
519         {
520             /* Correct the shift forces using the graph */
521             ivec_sub(SHIFT_IVEC(g, ai), SHIFT_IVEC(g, aj), dt);
522             fshift_index = IVEC2IS(dt);
523         }
524         if (fshift_index != CENTRAL)
525         {
526             rvec_inc(fshift[fshift_index], dx);
527             rvec_dec(fshift[CENTRAL], dx);
528         }
529     }
530     return 0.0;
531 }
532
533 /*! \brief Calculate pairs, only for plain-LJ + plain Coulomb normal type.
534  *
535  * This function is templated for real/SimdReal and for optimization.
536  */
537 template<typename T, int pack_size,
538          typename pbc_type>
539 static void
540 do_pairs_simple(int nbonds,
541                 const t_iatom iatoms[], const t_iparams iparams[],
542                 const rvec x[], rvec4 f[],
543                 const pbc_type pbc,
544                 const t_mdatoms *md,
545                 const real scale_factor)
546 {
547     const int nfa1 = 1 + 2;
548
549     T         six(6);
550     T         twelve(12);
551     T         ef(scale_factor);
552
553     const int align = 16;
554     GMX_ASSERT(pack_size <= align, "align should be increased");
555     GMX_ALIGNED(int,  align)  ai[pack_size];
556     GMX_ALIGNED(int,  align)  aj[pack_size];
557     GMX_ALIGNED(real, align)  coeff[3*pack_size];
558
559     /* nbonds is #pairs*nfa1, here we step pack_size pairs */
560     for (int i = 0; i < nbonds; i += pack_size*nfa1)
561     {
562         /* Collect atoms for pack_size pairs.
563          * iu indexes into iatoms, we should not let iu go beyond nbonds.
564          */
565         int iu = i;
566         for (int s = 0; s < pack_size; s++)
567         {
568             int itype = iatoms[iu];
569             ai[s]     = iatoms[iu + 1];
570             aj[s]     = iatoms[iu + 2];
571
572             if (i + s*nfa1 < nbonds)
573             {
574                 coeff[0*pack_size + s] = iparams[itype].lj14.c6A;
575                 coeff[1*pack_size + s] = iparams[itype].lj14.c12A;
576                 coeff[2*pack_size + s] = md->chargeA[ai[s]]*md->chargeA[aj[s]];
577
578                 /* Avoid indexing the iatoms array out of bounds.
579                  * We pad the coordinate indices with the last atom pair.
580                  */
581                 if (iu + nfa1 < nbonds)
582                 {
583                     iu += nfa1;
584                 }
585             }
586             else
587             {
588                 /* Pad the coefficient arrays with zeros to get zero forces */
589                 coeff[0*pack_size + s] = 0;
590                 coeff[1*pack_size + s] = 0;
591                 coeff[2*pack_size + s] = 0;
592             }
593         }
594
595         /* Load the coordinates */
596         T xi[DIM], xj[DIM];
597         gatherLoadUTranspose<3>(reinterpret_cast<const real *>(x), ai, &xi[XX], &xi[YY], &xi[ZZ]);
598         gatherLoadUTranspose<3>(reinterpret_cast<const real *>(x), aj, &xj[XX], &xj[YY], &xj[ZZ]);
599
600         T c6    = load<T>(coeff + 0*pack_size);
601         T c12   = load<T>(coeff + 1*pack_size);
602         T qq    = load<T>(coeff + 2*pack_size);
603
604         /* We could save these operations by storing 6*C6,12*C12 */
605         c6             = six*c6;
606         c12            = twelve*c12;
607
608         T dr[DIM];
609         pbc_dx_aiuc(pbc, xi, xj, dr);
610
611         T rsq   = dr[XX]*dr[XX] + dr[YY]*dr[YY] + dr[ZZ]*dr[ZZ];
612         T rinv  = gmx::invsqrt(rsq);
613         T rinv2 = rinv*rinv;
614         T rinv6 = rinv2*rinv2*rinv2;
615
616         /* Calculate the Coulomb force * r */
617         T cfr   = ef*qq*rinv;
618
619         /* Calculate the LJ force * r and add it to the Coulomb part */
620         T fr    = gmx::fma(fms(c12, rinv6, c6), rinv6, cfr);
621
622         T finvr = fr*rinv2;
623         T fx    = finvr*dr[XX];
624         T fy    = finvr*dr[YY];
625         T fz    = finvr*dr[ZZ];
626
627         /* Add the pair forces to the force array.
628          * Note that here we might add multiple force components for some atoms
629          * due to the SIMD padding. But the extra force components are zero.
630          */
631         transposeScatterIncrU<4>(reinterpret_cast<real *>(f), ai, fx, fy, fz);
632         transposeScatterDecrU<4>(reinterpret_cast<real *>(f), aj, fx, fy, fz);
633     }
634 }
635
636 /*! \brief Calculate all listed pair interactions */
637 void
638 do_pairs(int ftype, int nbonds,
639          const t_iatom iatoms[], const t_iparams iparams[],
640          const rvec x[], rvec4 f[], rvec fshift[],
641          const struct t_pbc *pbc, const struct t_graph *g,
642          const real *lambda, real *dvdl,
643          const t_mdatoms *md,
644          const t_forcerec *fr,
645          gmx_bool bCalcEnergyAndVirial, gmx_grppairener_t *grppener,
646          int *global_atom_index)
647 {
648     if (ftype == F_LJ14 &&
649         fr->ic->vdwtype != evdwUSER && !EEL_USER(fr->ic->eeltype) &&
650         !bCalcEnergyAndVirial && fr->efep == efepNO)
651     {
652         /* We use a fast code-path for plain LJ 1-4 without FEP.
653          *
654          * TODO: Add support for energies (straightforward) and virial
655          * in the SIMD template. For the virial it's inconvenient to store
656          * the force sums for the shifts and we should directly calculate
657          * and sum the virial for the shifts. But we should do this
658          * at once for the angles and dihedrals as well.
659          */
660 #if GMX_SIMD
661         GMX_ALIGNED(real, GMX_SIMD_REAL_WIDTH) pbc_simd[9*GMX_SIMD_REAL_WIDTH];
662         set_pbc_simd(pbc, pbc_simd);
663
664         do_pairs_simple<SimdReal, GMX_SIMD_REAL_WIDTH,
665                         const real *>(nbonds, iatoms, iparams,
666                                       x, f, pbc_simd,
667                                       md, fr->ic->epsfac*fr->fudgeQQ);
668 #else
669         /* This construct is needed because pbc_dx_aiuc doesn't accept pbc=NULL */
670         t_pbc        pbc_no;
671         const t_pbc *pbc_nonnull;
672
673         if (pbc != nullptr)
674         {
675             pbc_nonnull   = pbc;
676         }
677         else
678         {
679             set_pbc(&pbc_no, epbcNONE, nullptr);
680             pbc_nonnull   = &pbc_no;
681         }
682
683         do_pairs_simple<real, 1,
684                         const t_pbc *>(nbonds, iatoms, iparams,
685                                        x, f, pbc_nonnull,
686                                        md, fr->ic->epsfac*fr->fudgeQQ);
687 #endif
688     }
689     else
690     {
691         do_pairs_general(ftype, nbonds, iatoms, iparams,
692                          x, f, fshift, pbc, g,
693                          lambda, dvdl,
694                          md, fr, grppener, global_atom_index);
695     }
696 }