Update instructions in containers.rst
[gromacs.git] / src / gromacs / nbnxm / kernel_common.h
blobf93e03521d35b1f98080f028ec5b0b7ee9c08a50
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2012,2013,2014,2015,2017 by the GROMACS development team.
5 * Copyright (c) 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.
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.
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.
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.
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.
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.
37 /*! \internal \file
39 * \brief
40 * Declares the nbnxm pair interaction kernel function types and kind counts, also declares utility functions used in nbnxm_kernel.cpp.
42 * \author Berk Hess <hess@kth.se>
43 * \ingroup module_nbnxm
46 #ifndef GMX_NBXNM_KERNEL_COMMON_H
47 #define GMX_NBXNM_KERNEL_COMMON_H
49 #include "gromacs/math/vectypes.h"
50 /* nbnxn_atomdata_t and nbnxn_pairlist_t could be forward declared, but that requires modifications in all SIMD kernel files */
51 #include "gromacs/nbnxm/atomdata.h"
52 #include "gromacs/utility/real.h"
54 #include "pairlist.h"
56 struct interaction_const_t;
58 // TODO: Consider using one nbk_func type now ener and noener are identical
60 /*! \brief Pair-interaction kernel type that also calculates energies.
62 typedef void(nbk_func_ener)(const NbnxnPairlistCpu* nbl,
63 const nbnxn_atomdata_t* nbat,
64 const interaction_const_t* ic,
65 const rvec* shift_vec,
66 nbnxn_atomdata_output_t* out);
68 /*! \brief Pointer to \p nbk_func_ener.
70 typedef nbk_func_ener* p_nbk_func_ener;
72 /*! \brief Pair-interaction kernel type that does not calculates energies.
74 typedef void(nbk_func_noener)(const NbnxnPairlistCpu* nbl,
75 const nbnxn_atomdata_t* nbat,
76 const interaction_const_t* ic,
77 const rvec* shift_vec,
78 nbnxn_atomdata_output_t* out);
80 /*! \brief Pointer to \p nbk_func_noener.
82 typedef nbk_func_noener* p_nbk_func_noener;
84 /*! \brief Kinds of electrostatic treatments in SIMD Verlet kernels
86 enum
88 coulktRF,
89 coulktTAB,
90 coulktTAB_TWIN,
91 coulktEWALD,
92 coulktEWALD_TWIN,
93 coulktNR
96 /*! \brief Kinds of Van der Waals treatments in SIMD Verlet kernels
98 * The \p LJCUT_COMB refers to the LJ combination rule for the short range.
99 * The \p EWALDCOMB refers to the combination rule for the grid part.
100 * \p vdwktNR is the number of VdW treatments for the SIMD kernels.
101 * \p vdwktNR_ref is the number of VdW treatments for the C reference kernels.
102 * These two numbers differ, because currently only the reference kernels
103 * support LB combination rules for the LJ-Ewald grid part.
105 enum
107 vdwktLJCUT_COMBGEOM,
108 vdwktLJCUT_COMBLB,
109 vdwktLJCUT_COMBNONE,
110 vdwktLJFORCESWITCH,
111 vdwktLJPOTSWITCH,
112 vdwktLJEWALDCOMBGEOM,
113 vdwktLJEWALDCOMBLB,
114 vdwktNR = vdwktLJEWALDCOMBLB,
115 vdwktNR_ref
118 /*! \brief Clears the force buffer.
120 * Either the whole buffer is cleared or only the parts used
121 * by thread/task \p outputIndex when nbat->bUseBufferFlags is set.
123 * \param[in,out] nbat The Nbnxm atom data
124 * \param[in] outputIndex The index of the output object to clear
126 void clearForceBuffer(nbnxn_atomdata_t* nbat, int outputIndex);
128 /*! \brief Clears the shift forces.
130 void clear_fshift(real* fshift);
132 /*! \brief Reduces the collected energy terms over the pair-lists/threads.
134 void reduce_energies_over_lists(const nbnxn_atomdata_t* nbat, int nlist, real* Vvdw, real* Vc);
136 #endif