Move nbnxn files to nbnxm directory
[alexxy/gromacs.git] / src / gromacs / nbnxm / kernels_reference / kernel_ref_prune.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2017,2018,2019, 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 #include "gmxpre.h"
37
38 #include "kernel_ref_prune.h"
39
40 #include "gromacs/nbnxm/pairlist.h"
41 #include "gromacs/utility/gmxassert.h"
42
43 /* Prune a single NbnxnPairlistCpu entry with distance rlistInner */
44 void
45 nbnxn_kernel_prune_ref(NbnxnPairlistCpu *         nbl,
46                        const nbnxn_atomdata_t *   nbat,
47                        const rvec * gmx_restrict  shift_vec,
48                        real                       rlistInner)
49 {
50     /* We avoid push_back() for efficiency reasons and resize after filling */
51     nbl->ci.resize(nbl->ciOuter.size());
52     nbl->cj.resize(nbl->cjOuter.size());
53
54     const nbnxn_ci_t * gmx_restrict ciOuter  = nbl->ciOuter.data();
55     nbnxn_ci_t       * gmx_restrict ciInner  = nbl->ci.data();
56
57     const nbnxn_cj_t * gmx_restrict cjOuter   = nbl->cjOuter.data();
58     nbnxn_cj_t       * gmx_restrict cjInner   = nbl->cj.data();
59
60     const real       * gmx_restrict shiftvec = shift_vec[0];
61     const real       * gmx_restrict x        = nbat->x().data();
62
63     const real                      rlist2   = rlistInner*rlistInner;
64
65     /* Use compile time constants to speed up the code */
66     constexpr int c_xStride  = 3;
67     GMX_ASSERT(c_xStride == nbat->xstride, "xStride should match nbat->xstride");
68     constexpr int c_xiStride = 3;
69
70     constexpr int c_iUnroll  = c_nbnxnCpuIClusterSize;
71     constexpr int c_jUnroll  = c_nbnxnCpuIClusterSize;
72
73     /* Initialize the new list as empty and add pairs that are in range */
74     int       nciInner = 0;
75     int       ncjInner = 0;
76     const int nciOuter = nbl->ciOuter.size();
77     for (int ciIndex = 0; ciIndex < nciOuter; ciIndex++)
78     {
79         const nbnxn_ci_t * gmx_restrict ciEntry = &ciOuter[ciIndex];
80
81         /* Copy the original list entry to the pruned entry */
82         ciInner[nciInner].ci           = ciEntry->ci;
83         ciInner[nciInner].shift        = ciEntry->shift;
84         ciInner[nciInner].cj_ind_start = ncjInner;
85
86         /* Extract shift data */
87         int ish = (ciEntry->shift & NBNXN_CI_SHIFT);
88         int ci  = ciEntry->ci;
89
90         /* Load i atom coordinates */
91         real xi[c_iUnroll*c_xiStride];
92         for (int i = 0; i < c_iUnroll; i++)
93         {
94             for (int d = 0; d < DIM; d++)
95             {
96                 xi[i*c_xiStride + d] = x[(ci*c_iUnroll + i)*c_xStride + d] + shiftvec[ish*DIM + d];
97             }
98         }
99
100         for (int cjind = ciEntry->cj_ind_start; cjind < ciEntry->cj_ind_end; cjind++)
101         {
102             /* j-cluster index */
103             int  cj        = cjOuter[cjind].cj;
104
105             bool isInRange = false;
106             for (int i = 0; i < c_iUnroll && !isInRange; i++)
107             {
108                 for (int j = 0; j < c_jUnroll; j++)
109                 {
110                     int  aj  = cj*c_jUnroll + j;
111
112                     real dx  = xi[i*c_xiStride + XX] - x[aj*c_xStride + XX];
113                     real dy  = xi[i*c_xiStride + YY] - x[aj*c_xStride + YY];
114                     real dz  = xi[i*c_xiStride + ZZ] - x[aj*c_xStride + ZZ];
115
116                     real rsq = dx*dx + dy*dy + dz*dz;
117
118                     if (rsq < rlist2)
119                     {
120                         isInRange = true;
121                     }
122                 }
123             }
124
125             if (isInRange)
126             {
127                 /* This cluster is in range, put it in the pruned list */
128                 cjInner[ncjInner++] = cjOuter[cjind];
129             }
130         }
131
132         /* Check if there are any j's in the list, if so, add the i-entry */
133         if (ncjInner > ciInner[nciInner].cj_ind_start)
134         {
135             ciInner[nciInner].cj_ind_end = ncjInner;
136             nciInner++;
137         }
138     }
139
140     nbl->ci.resize(nciInner);
141     nbl->cj.resize(ncjInner);
142 }