5ce66fa01069c7e184e53d5302cdb7b30aa81ea8
[alexxy/gromacs.git] / src / gromacs / mdlib / nbnxn_ocl / nbnxn_ocl_kernel.clh
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012,2013,2014,2016,2017,2018, 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
36 /*! \internal \file
37  *  \brief OpenCL non-bonded kernel.
38  *
39  *  OpenCL 1.2 support is expected.
40  *
41  *  \author Anca Hamuraru <anca@streamcomputing.eu>
42  *  \author Szilárd Páll <pall.szilard@gmail.com>
43  *  \ingroup module_mdlib
44  */
45
46 /* Currently we enable CJ prefetch for AMD/NVIDIA and disable it for the "nowarp" kernel
47  * Note that this should precede the kernel_utils include.
48  */
49 #include "nbnxn_ocl_kernel_utils.clh"
50
51 /////////////////////////////////////////////////////////////////////////////////////////////////
52
53 #if defined EL_EWALD_ANA || defined EL_EWALD_TAB
54 /* Note: convenience macro, needs to be undef-ed at the end of the file. */
55 #define EL_EWALD_ANY
56 #endif
57
58 #if defined EL_EWALD_ANY || defined EL_RF || defined LJ_EWALD || (defined EL_CUTOFF && defined CALC_ENERGIES)
59 /* Macro to control the calculation of exclusion forces in the kernel
60  * We do that with Ewald (elec/vdw) and RF. Cut-off only has exclusion
61  * energy terms.
62  *
63  * Note: convenience macro, needs to be undef-ed at the end of the file.
64  */
65 #define EXCLUSION_FORCES
66 #endif
67
68 #if defined LJ_EWALD_COMB_GEOM || defined LJ_EWALD_COMB_LB
69 /* Note: convenience macro, needs to be undef-ed at the end of the file. */
70 #define LJ_EWALD
71 #endif
72
73 #if defined LJ_COMB_GEOM || defined LJ_COMB_LB
74 /* Note: convenience macro, needs to be undef-ed at the end of the file. */
75 #define LJ_COMB
76 #endif
77
78 /*
79    Kernel launch parameters:
80     - #blocks   = #pair lists, blockId = pair list Id
81     - #threads  = CL_SIZE^2
82     - shmem     = CL_SIZE^2 * sizeof(float)
83
84     Each thread calculates an i force-component taking one pair of i-j atoms.
85
86    TODO: implement 128 threads/wavefront by porting over the NTHREAD_Z/j4 loop
87    "horizontal splitting" over threads.
88  */
89
90 /* NOTE:
91    NB_KERNEL_FUNC_NAME differs from the CUDA equivalent as it is not a variadic macro due to OpenCL not having a support for them, this version only takes exactly 2 arguments.
92    Thus if more strings need to be appended a new macro must be written or it must be directly appended here.
93  */
94 __attribute__((reqd_work_group_size(CL_SIZE, CL_SIZE, 1)))
95 #ifdef cl_intel_required_subgroup_size
96 __attribute__((intel_reqd_sub_group_size(SUBGROUP_SIZE)))
97 #endif
98 #ifdef PRUNE_NBL
99     #ifdef CALC_ENERGIES
100 __kernel void NB_KERNEL_FUNC_NAME(nbnxn_kernel, _VF_prune_opencl)
101     #else
102 __kernel void NB_KERNEL_FUNC_NAME(nbnxn_kernel, _F_prune_opencl)
103     #endif
104 #else
105     #ifdef CALC_ENERGIES
106 __kernel void NB_KERNEL_FUNC_NAME(nbnxn_kernel, _VF_opencl)
107     #else
108 __kernel void NB_KERNEL_FUNC_NAME(nbnxn_kernel, _F_opencl)
109     #endif
110 #endif
111 (
112 #ifndef LJ_COMB
113     int ntypes,                               /* IN  */
114 #endif
115     cl_nbparam_params_t nbparam_params,       /* IN  */
116     const __global float4 *restrict xq,       /* IN  */
117     __global float *restrict f,               /* OUT stores float3 values */
118     __global float *restrict e_lj,            /* OUT */
119     __global float *restrict e_el,            /* OUT */
120     __global float *restrict fshift,          /* OUT stores float3 values */
121 #ifdef LJ_COMB
122     const __global float2 *restrict lj_comb,  /* IN stores float2 values */
123 #else
124     const __global int *restrict atom_types,  /* IN  */
125 #endif
126     const __global float *restrict shift_vec, /* IN stores float3 values */
127     __constant float* nbfp_climg2d,           /* IN  */
128     __constant float* nbfp_comb_climg2d,      /* IN  */
129     __constant float* coulomb_tab_climg2d,    /* IN  */
130     const __global nbnxn_sci_t* pl_sci,       /* IN  */
131 #ifndef PRUNE_NBL
132     const
133 #endif
134     __global nbnxn_cj4_t* pl_cj4,             /* OUT / IN */
135     const __global nbnxn_excl_t* excl,        /* IN  */
136     int bCalcFshift,                          /* IN  */
137     __local  float4   *xqib                   /* Pointer to dyn alloc'ed shmem */
138 )
139 {
140     /* convenience variables */
141     const cl_nbparam_params_t *const nbparam = &nbparam_params;
142
143     const float                      rcoulomb_sq = nbparam->rcoulomb_sq;
144 #ifdef VDW_CUTOFF_CHECK
145     const float                      rvdw_sq     = nbparam_params.rvdw_sq;
146 #endif
147 #ifdef EL_RF
148     const float two_k_rf              = nbparam->two_k_rf;
149 #endif
150 #ifdef EL_EWALD_TAB
151     const float coulomb_tab_scale     = nbparam->coulomb_tab_scale;
152 #endif
153 #ifdef EL_EWALD_ANA
154     const float beta2                 = nbparam->ewald_beta*nbparam->ewald_beta;
155     const float beta3                 = nbparam->ewald_beta*nbparam->ewald_beta*nbparam->ewald_beta;
156 #endif
157 #ifdef PRUNE_NBL
158     const float rlist_sq              = nbparam->rlistOuter_sq;
159 #endif
160
161 #ifdef CALC_ENERGIES
162 #ifdef EL_EWALD_ANY
163     const float  beta        = nbparam->ewald_beta;
164     const float  ewald_shift = nbparam->sh_ewald;
165 #else
166     const float  c_rf        = nbparam->c_rf;
167 #endif /* EL_EWALD_ANY */
168 #endif /* CALC_ENERGIES */
169
170     /* thread/block/warp id-s */
171     const unsigned int tidxi  = get_local_id(0);
172     const unsigned int tidxj  = get_local_id(1);
173     const unsigned int tidx   = get_local_id(1) * get_local_size(0) + get_local_id(0);
174     const unsigned int bidx   = get_group_id(0);
175     const unsigned int widx   = tidx / WARP_SIZE; /* warp index */
176
177     /*! i-cluster interaction mask for a super-cluster with all NCL_PER_SUPERCL=8 bits set */
178     const unsigned superClInteractionMask = ((1U << NCL_PER_SUPERCL) - 1U);
179
180 #define LOCAL_OFFSET (xqib + NCL_PER_SUPERCL * CL_SIZE)
181     CjType cjs;
182 #if USE_CJ_PREFETCH
183     /* shmem buffer for cj, for both warps separately */
184     cjs = (__local int *)(LOCAL_OFFSET);
185     #undef LOCAL_OFFSET
186     #define LOCAL_OFFSET cjs + 2 * NBNXN_GPU_JGROUP_SIZE
187 #endif //USE_CJ_PREFETCH
188
189 #ifdef IATYPE_SHMEM
190 #ifndef LJ_COMB
191     /* shmem buffer for i atom-type pre-loading */
192     __local int *atib      = (__local int *)(LOCAL_OFFSET);
193     #undef LOCAL_OFFSET
194     #define LOCAL_OFFSET atib + NCL_PER_SUPERCL * CL_SIZE
195 #else
196     __local float2 *ljcpib = (__local float2 *)(LOCAL_OFFSET);
197     #undef LOCAL_OFFSET
198     #define LOCAL_OFFSET ljcpib + NCL_PER_SUPERCL * CL_SIZE
199 #endif
200 #endif
201
202 #if !REDUCE_SHUFFLE
203     /* shmem j force buffer */
204     __local float *f_buf   = (__local float *)(LOCAL_OFFSET);
205     #undef LOCAL_OFFSET
206     #define LOCAL_OFFSET (f_buf + CL_SIZE * CL_SIZE * 3)
207 #else
208     __local float *f_buf  = 0;
209 #endif
210 #if !USE_SUBGROUP_ANY
211     /* Local buffer used to implement __any warp vote function from CUDA.
212        volatile is used to avoid compiler optimizations for AMD builds. */
213     volatile __local uint *warp_any = (__local uint*)(LOCAL_OFFSET);
214 #else
215     __local uint          *warp_any = 0;
216 #endif
217 #undef LOCAL_OFFSET
218
219     const nbnxn_sci_t nb_sci      = pl_sci[bidx];         /* my i super-cluster's index = current bidx */
220     const int         sci         = nb_sci.sci;           /* super-cluster */
221     const int         cij4_start  = nb_sci.cj4_ind_start; /* first ...*/
222     const int         cij4_end    = nb_sci.cj4_ind_end;   /* and last index of j clusters */
223
224     for (int i = 0; i < NCL_PER_SUPERCL; i += CL_SIZE)
225     {
226         /* Pre-load i-atom x and q into shared memory */
227         const int ci = sci * NCL_PER_SUPERCL + tidxj+i;
228         const int ai = ci * CL_SIZE + tidxi;
229
230         float4    xqbuf = xq[ai] + (float4)(shift_vec[3 * nb_sci.shift], shift_vec[3 * nb_sci.shift + 1], shift_vec[3 * nb_sci.shift + 2], 0.0f);
231         xqbuf.w *= nbparam->epsfac;
232         xqib[(tidxj + i) * CL_SIZE + tidxi] = xqbuf;
233 #ifdef IATYPE_SHMEM
234 #ifndef LJ_COMB
235         /* Pre-load the i-atom types into shared memory */
236         atib[(tidxj + i) * CL_SIZE + tidxi]   = atom_types[ai];
237 #else
238         ljcpib[(tidxj + i) * CL_SIZE + tidxi] = lj_comb[ai];
239 #endif
240 #endif
241     }
242 #if !USE_SUBGROUP_ANY
243     /* Initialise warp vote. (8x8 block) 2 warps for nvidia */
244     if (tidx == 0 || tidx == WARP_SIZE)
245     {
246         warp_any[widx] = 0;
247     }
248 #endif
249     barrier(CLK_LOCAL_MEM_FENCE);
250
251     float3 fci_buf[NCL_PER_SUPERCL]; /* i force buffer */
252     for (int ci_offset = 0; ci_offset < NCL_PER_SUPERCL; ci_offset++)
253     {
254         fci_buf[ci_offset] = (float3)(0.0f);
255     }
256
257 #ifdef LJ_EWALD
258     /* TODO: we are trading registers with flops by keeping lje_coeff-s, try re-calculating it later */
259     const float lje_coeff2   = nbparam->ewaldcoeff_lj*nbparam->ewaldcoeff_lj;
260     const float lje_coeff6_6 = lje_coeff2*lje_coeff2*lje_coeff2*ONE_SIXTH_F;
261 #endif /* LJ_EWALD */
262
263
264 #ifdef CALC_ENERGIES
265     float E_lj = 0.0f;
266     float E_el = 0.0f;
267
268 #if defined EXCLUSION_FORCES /* Ewald or RF */
269     if (nb_sci.shift == CENTRAL && pl_cj4[cij4_start].cj[0] == sci*NCL_PER_SUPERCL)
270     {
271         /* we have the diagonal: add the charge and LJ self interaction energy term */
272         for (int i = 0; i < NCL_PER_SUPERCL; i++)
273         {
274 #if defined EL_EWALD_ANY || defined EL_RF || defined EL_CUTOFF
275             const float qi = xqib[i * CL_SIZE + tidxi].w;
276             E_el += qi*qi;
277 #endif
278 #if defined LJ_EWALD
279             E_lj += nbfp_climg2d[atom_types[(sci*NCL_PER_SUPERCL + i)*CL_SIZE + tidxi]*(ntypes + 1)*2];
280 #endif      /* LJ_EWALD */
281         }
282
283         /* divide the self term(s) equally over the j-threads, then multiply with the coefficients. */
284 #ifdef LJ_EWALD
285         E_lj /= CL_SIZE;
286         E_lj *= 0.5f*ONE_SIXTH_F*lje_coeff6_6;
287 #endif  /* LJ_EWALD */
288
289 #if defined EL_EWALD_ANY || defined EL_RF || defined EL_CUTOFF
290         /* Correct for epsfac^2 due to adding qi^2 */
291         E_el /= nbparam->epsfac*CL_SIZE;
292 #if defined EL_RF || defined EL_CUTOFF
293         E_el *= -0.5f*c_rf;
294 #else
295         E_el *= -beta*M_FLOAT_1_SQRTPI; /* last factor 1/sqrt(pi) */
296 #endif
297 #endif                                  /* EL_EWALD_ANY || defined EL_RF || defined EL_CUTOFF */
298     }
299 #endif                                  /* EXCLUSION_FORCES */
300
301 #endif                                  /* CALC_ENERGIES */
302
303 #ifdef EXCLUSION_FORCES
304     const int nonSelfInteraction  = !(nb_sci.shift == CENTRAL & tidxj <= tidxi);
305 #endif
306
307     /* loop over the j clusters = seen by any of the atoms in the current super-cluster */
308     for (int j4 = cij4_start; j4 < cij4_end; j4++)
309     {
310         const int          wexcl_idx   = pl_cj4[j4].imei[widx].excl_ind;
311         unsigned int       imask       = pl_cj4[j4].imei[widx].imask;
312         const unsigned int wexcl       = excl[wexcl_idx].pair[(tidx) & (WARP_SIZE - 1)];
313
314         preloadCj4(&cjs, pl_cj4[j4].cj, tidxi, tidxj, imask != 0u);
315
316 #ifndef PRUNE_NBL
317         if (imask)
318 #endif
319         {
320             /* Unrolling this loop improves performance without pruning but
321              * with pruning it leads to slowdown.
322              *
323              * Tested with driver 1800.5
324              *
325              * TODO: check loop unrolling with NVIDIA OpenCL
326              */
327 #if !defined PRUNE_NBL && !defined _NVIDIA_SOURCE_
328 #pragma unroll 4
329 #endif
330             for (int jm = 0; jm < NBNXN_GPU_JGROUP_SIZE; jm++)
331             {
332                 if (imask & (superClInteractionMask << (jm * NCL_PER_SUPERCL)))
333                 {
334                     unsigned int mask_ji = (1U << (jm * NCL_PER_SUPERCL));
335
336                     const int    cj = loadCj(cjs, pl_cj4[j4].cj, jm, tidxi, tidxj);
337                     const int    aj = cj * CL_SIZE + tidxj;
338
339                     /* load j atom data */
340                     const float4 xqbuf = xq[aj];
341                     const float3 xj    = (float3)(xqbuf.xyz);
342                     const float  qj_f  = xqbuf.w;
343 #ifndef LJ_COMB
344                     const int    typej   = atom_types[aj];
345 #else
346                     const float2 ljcp_j  = lj_comb[aj];
347 #endif
348
349                     float3 fcj_buf = (float3)(0.0f);
350
351 #if !defined PRUNE_NBL
352 #pragma unroll 8
353 #endif
354                     for (int i = 0; i < NCL_PER_SUPERCL; i++)
355                     {
356                         if (imask & mask_ji)
357                         {
358                             const int ci = sci * NCL_PER_SUPERCL + i; /* i cluster index */
359                             const int ai = ci * CL_SIZE + tidxi;      /* i atom index */
360
361                             /* all threads load an atom from i cluster ci into shmem! */
362                             const float4 xqbuf   = xqib[i * CL_SIZE + tidxi];
363                             const float3 xi      = (float3)(xqbuf.xyz);
364
365                             /* distance between i and j atoms */
366                             const float3 rv      = xi - xj;
367                             float        r2      = norm2(rv);
368
369 #ifdef PRUNE_NBL
370                             if (!gmx_sub_group_any(warp_any, widx, r2 < rlist_sq))
371                             {
372                                 imask &= ~mask_ji;
373                             }
374 #endif
375
376                             const float int_bit = (wexcl & mask_ji) ? 1.0f : 0.0f;
377
378                             /* cutoff & exclusion check */
379 #ifdef EXCLUSION_FORCES
380                             if ((r2 < rcoulomb_sq) * (nonSelfInteraction | (ci != cj)))
381 #else
382                             if ((r2 < rcoulomb_sq) * int_bit)
383 #endif
384                             {
385                                 /* load the rest of the i-atom parameters */
386                                 const float qi = xqbuf.w;
387 #ifdef IATYPE_SHMEM
388 #ifndef LJ_COMB
389                                 const int    typei   = atib[i * CL_SIZE + tidxi];
390 #else
391                                 const float2 ljcp_i  = ljcpib[i * CL_SIZE + tidxi];
392 #endif
393 #else                           /* IATYPE_SHMEM */
394 #ifndef LJ_COMB
395                                 const int    typei   = atom_types[ai];
396 #else
397                                 const float2 ljcp_i = lj_comb[ai];
398 #endif
399 #endif                          /* IATYPE_SHMEM */
400                                 /* LJ 6*C6 and 12*C12 */
401 #ifndef LJ_COMB
402                                 const float c6  = nbfp_climg2d[2 * (ntypes * typei + typej)];
403                                 const float c12 = nbfp_climg2d[2 * (ntypes * typei + typej)+1];
404 #else                           /* LJ_COMB */
405 #ifdef LJ_COMB_GEOM
406                                 const float c6  = ljcp_i.x * ljcp_j.x;
407                                 const float c12 = ljcp_i.y * ljcp_j.y;
408 #else
409                                 /* LJ 2^(1/6)*sigma and 12*epsilon */
410                                 float       c6, c12;
411                                 const float sigma   = ljcp_i.x + ljcp_j.x;
412                                 const float epsilon = ljcp_i.y * ljcp_j.y;
413 #if defined CALC_ENERGIES || defined LJ_FORCE_SWITCH || defined LJ_POT_SWITCH
414                                 convert_sigma_epsilon_to_c6_c12(sigma, epsilon, &c6, &c12);
415 #endif
416 #endif                          /* LJ_COMB_GEOM */
417 #endif                          /* LJ_COMB */
418
419                                 // Ensure distance do not become so small that r^-12 overflows
420                                 r2      = max(r2, NBNXN_MIN_RSQ);
421
422                                 const float inv_r   = rsqrt(r2);
423                                 const float inv_r2  = inv_r * inv_r;
424 #if !defined LJ_COMB_LB || defined CALC_ENERGIES
425                                 float       inv_r6  = inv_r2 * inv_r2 * inv_r2;
426 #if defined EXCLUSION_FORCES
427                                 /* We could mask inv_r2, but with Ewald
428                                  * masking both inv_r6 and F_invr is faster */
429                                 inv_r6  *= int_bit;
430 #endif                          /* EXCLUSION_FORCES */
431
432                                 float F_invr  = inv_r6 * (c12 * inv_r6 - c6) * inv_r2;
433 #if defined CALC_ENERGIES || defined LJ_POT_SWITCH
434                                 float E_lj_p  = int_bit * (c12 * (inv_r6 * inv_r6 + nbparam->repulsion_shift.cpot)*ONE_TWELVETH_F -
435                                                            c6 * (inv_r6 + nbparam->dispersion_shift.cpot)*ONE_SIXTH_F);
436
437 #endif
438 #else                           /* ! LJ_COMB_LB || CALC_ENERGIES */
439                                 const float sig_r  = sigma*inv_r;
440                                 const float sig_r2 = sig_r*sig_r;
441                                 float       sig_r6 = sig_r2*sig_r2*sig_r2;
442 #if defined EXCLUSION_FORCES
443                                 sig_r6 *= int_bit;
444 #endif                          /* EXCLUSION_FORCES */
445
446                                 float F_invr  = epsilon * sig_r6 * (sig_r6 - 1.0f) * inv_r2;
447 #endif                          /* ! LJ_COMB_LB || CALC_ENERGIES */
448
449
450 #ifdef LJ_FORCE_SWITCH
451 #ifdef CALC_ENERGIES
452                                 calculate_force_switch_F_E(nbparam, c6, c12, inv_r, r2, &F_invr, &E_lj_p);
453 #else
454                                 calculate_force_switch_F(nbparam, c6, c12, inv_r, r2, &F_invr);
455 #endif /* CALC_ENERGIES */
456 #endif /* LJ_FORCE_SWITCH */
457
458
459 #ifdef LJ_EWALD
460 #ifdef LJ_EWALD_COMB_GEOM
461 #ifdef CALC_ENERGIES
462                                 calculate_lj_ewald_comb_geom_F_E(nbfp_comb_climg2d, nbparam, typei, typej, r2, inv_r2, lje_coeff2, lje_coeff6_6, int_bit, &F_invr, &E_lj_p);
463 #else
464                                 calculate_lj_ewald_comb_geom_F(nbfp_comb_climg2d, typei, typej, r2, inv_r2, lje_coeff2, lje_coeff6_6, &F_invr);
465 #endif                          /* CALC_ENERGIES */
466 #elif defined LJ_EWALD_COMB_LB
467                                 calculate_lj_ewald_comb_LB_F_E(nbfp_comb_climg2d, nbparam, typei, typej, r2, inv_r2, lje_coeff2, lje_coeff6_6,
468 #ifdef CALC_ENERGIES
469                                                                int_bit, true, &F_invr, &E_lj_p
470 #else
471                                                                0, false, &F_invr, 0
472 #endif /* CALC_ENERGIES */
473                                                                );
474 #endif /* LJ_EWALD_COMB_GEOM */
475 #endif /* LJ_EWALD */
476
477 #ifdef LJ_POT_SWITCH
478 #ifdef CALC_ENERGIES
479                                 calculate_potential_switch_F_E(nbparam, inv_r, r2, &F_invr, &E_lj_p);
480 #else
481                                 calculate_potential_switch_F(nbparam, inv_r, r2, &F_invr, &E_lj_p);
482 #endif /* CALC_ENERGIES */
483 #endif /* LJ_POT_SWITCH */
484
485 #ifdef VDW_CUTOFF_CHECK
486                                 /* Separate VDW cut-off check to enable twin-range cut-offs
487                                  * (rvdw < rcoulomb <= rlist)
488                                  */
489                                 const float vdw_in_range  = (r2 < rvdw_sq) ? 1.0f : 0.0f;
490                                 F_invr       *= vdw_in_range;
491 #ifdef CALC_ENERGIES
492                                 E_lj_p       *= vdw_in_range;
493 #endif
494 #endif                          /* VDW_CUTOFF_CHECK */
495
496 #ifdef CALC_ENERGIES
497                                 E_lj    += E_lj_p;
498
499 #endif
500
501
502 #ifdef EL_CUTOFF
503 #ifdef EXCLUSION_FORCES
504                                 F_invr  += qi * qj_f * int_bit * inv_r2 * inv_r;
505 #else
506                                 F_invr  += qi * qj_f * inv_r2 * inv_r;
507 #endif
508 #endif
509 #ifdef EL_RF
510                                 F_invr  += qi * qj_f * (int_bit*inv_r2 * inv_r - two_k_rf);
511 #endif
512 #if defined EL_EWALD_ANA
513                                 F_invr  += qi * qj_f * (int_bit*inv_r2*inv_r + pmecorrF(beta2*r2)*beta3);
514 #elif defined EL_EWALD_TAB
515                                 F_invr  += qi * qj_f * (int_bit*inv_r2 -
516                                                         interpolate_coulomb_force_r(coulomb_tab_climg2d, r2 * inv_r, coulomb_tab_scale)
517                                                         ) * inv_r;
518 #endif                          /* EL_EWALD_ANA/TAB */
519
520 #ifdef CALC_ENERGIES
521 #ifdef EL_CUTOFF
522                                 E_el    += qi * qj_f * (int_bit*inv_r - c_rf);
523 #endif
524 #ifdef EL_RF
525                                 E_el    += qi * qj_f * (int_bit*inv_r + 0.5f * two_k_rf * r2 - c_rf);
526 #endif
527 #ifdef EL_EWALD_ANY
528                                 /* 1.0f - erff is faster than erfcf */
529                                 E_el    += qi * qj_f * (inv_r * (int_bit - erf(r2 * inv_r * beta)) - int_bit * ewald_shift);
530 #endif                          /* EL_EWALD_ANY */
531 #endif
532                                 const float3 f_ij = rv * F_invr;
533
534                                 /* accumulate j forces in registers */
535                                 fcj_buf -= f_ij;
536
537                                 /* accumulate i forces in registers */
538                                 fci_buf[i] += f_ij;
539                             }
540                         }
541
542                         /* shift the mask bit by 1 */
543                         mask_ji += mask_ji;
544                     }
545
546                     /* reduce j forces */
547                     reduce_force_j(f_buf, fcj_buf, f, tidxi, tidxj, aj);
548                 }
549             }
550 #ifdef PRUNE_NBL
551             /* Update the imask with the new one which does not contain the
552                out of range clusters anymore. */
553
554             pl_cj4[j4].imei[widx].imask = imask;
555 #endif
556         }
557     }
558
559     /* skip central shifts when summing shift forces */
560     if (nb_sci.shift == CENTRAL)
561     {
562         bCalcFshift = 0;
563     }
564     /* reduce i forces */
565     reduce_force_i_and_shift(f_buf, fci_buf, f, bCalcFshift != 0, tidxi, tidxj, sci,
566                              nb_sci.shift, fshift);
567
568 #ifdef CALC_ENERGIES
569     reduce_energy(f_buf, E_lj, E_el, e_lj, e_el, tidx);
570 #endif
571 }
572
573 #undef EL_EWALD_ANY
574 #undef EXCLUSION_FORCES
575 #undef LJ_EWALD
576
577 #undef LJ_COMB
578
579 #undef USE_CJ_PREFETCH