033590999686cb626f9b8dde480b891acc005199
[alexxy/gromacs.git] / src / gromacs / nbnxm / nbnxm_geometry.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012,2013,2014,2015,2016 by the GROMACS development team.
5  * Copyright (c) 2017,2018,2019,2020, by the GROMACS development team, led by
6  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
7  * and including many others, as listed in the AUTHORS file in the
8  * top-level source directory and at http://www.gromacs.org.
9  *
10  * GROMACS is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public License
12  * as published by the Free Software Foundation; either version 2.1
13  * of the License, or (at your option) any later version.
14  *
15  * GROMACS is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with GROMACS; if not, see
22  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
23  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
24  *
25  * If you want to redistribute modifications to GROMACS, please
26  * consider that scientific software is very special. Version
27  * control is crucial - bugs must be traceable. We will be happy to
28  * consider code for inclusion in the official distribution, but
29  * derived work must not be called official GROMACS. Details are found
30  * in the README & COPYING files - if they are missing, get the
31  * official version at http://www.gromacs.org.
32  *
33  * To help us fund GROMACS development, we humbly ask that you cite
34  * the research papers on the package. Check out http://www.gromacs.org.
35  */
36 /*! \internal \file
37  *
38  * \brief
39  * Declares the geometry-related functionality
40  *
41  * \author Berk Hess <hess@kth.se>
42  * \ingroup module_nbnxm
43  */
44 #ifndef GMX_NBNXM_NBNXM_GEOMETRY_H
45 #define GMX_NBNXM_NBNXM_GEOMETRY_H
46
47 #include "gromacs/math/vectypes.h"
48 #include "gromacs/nbnxm/nbnxm.h"
49 #include "gromacs/simd/simd.h"
50 #include "gromacs/utility/fatalerror.h"
51
52 #include "pairlist.h"
53
54
55 /*! \brief Returns the base-2 log of n.
56  * *
57  * Generates a fatal error when n is not an integer power of 2.
58  */
59 static inline int get_2log(int n)
60 {
61     int log2;
62
63     log2 = 0;
64     while ((1 << log2) < n)
65     {
66         log2++;
67     }
68     if ((1 << log2) != n)
69     {
70         gmx_fatal(FARGS, "nbnxn na_c (%d) is not a power of 2", n);
71     }
72
73     return log2;
74 }
75
76 namespace Nbnxm
77 {
78
79 /*! \brief The nbnxn i-cluster size in atoms for each nbnxn kernel type */
80 static constexpr gmx::EnumerationArray<KernelType, int> IClusterSizePerKernelType = {
81     { 0, c_nbnxnCpuIClusterSize, c_nbnxnCpuIClusterSize, c_nbnxnCpuIClusterSize, c_nbnxnGpuClusterSize, c_nbnxnGpuClusterSize }
82 };
83
84 /*! \brief The nbnxn j-cluster size in atoms for each nbnxn kernel type */
85 static constexpr gmx::EnumerationArray<KernelType, int> JClusterSizePerKernelType = {
86     { 0,
87       c_nbnxnCpuIClusterSize,
88 #if GMX_SIMD
89       GMX_SIMD_REAL_WIDTH,
90       GMX_SIMD_REAL_WIDTH / 2,
91 #else
92       0,
93       0,
94 #endif
95       c_nbnxnGpuClusterSize,
96       c_nbnxnGpuClusterSize / 2 }
97 };
98
99 /*! \brief Returns whether the pair-list corresponding to nb_kernel_type is simple */
100 static inline bool kernelTypeUsesSimplePairlist(const KernelType kernelType)
101 {
102     return (kernelType == KernelType::Cpu4x4_PlainC || kernelType == KernelType::Cpu4xN_Simd_4xN
103             || kernelType == KernelType::Cpu4xN_Simd_2xNN);
104 }
105
106 //! Returns whether a SIMD kernel is in use
107 static inline bool kernelTypeIsSimd(const KernelType kernelType)
108 {
109     return (kernelType == KernelType::Cpu4xN_Simd_4xN || kernelType == KernelType::Cpu4xN_Simd_2xNN);
110 }
111
112 } // namespace Nbnxm
113
114 /*! \brief Returns the effective list radius of the pair-list
115  *
116  * Due to the cluster size the effective pair-list is longer than
117  * that of a simple atom pair-list. This function gives the extra distance.
118  *
119  * NOTE: If the i- and j-cluster sizes are identical and you know
120  *       the physical dimensions of the clusters, use the next function
121  *       for more accurate results
122  */
123 real nbnxn_get_rlist_effective_inc(int jClusterSize, real atomDensity);
124
125 /*! \brief Returns the effective list radius of the pair-list
126  *
127  * Due to the cluster size the effective pair-list is longer than
128  * that of a simple atom pair-list. This function gives the extra distance.
129  */
130 real nbnxn_get_rlist_effective_inc(int clusterSize, const gmx::RVec& averageClusterBoundingBox);
131
132 #endif