Compile nonbonded kernels as C++
[alexxy/gromacs.git] / src / gromacs / mdlib / nbnxn_ocl / nbnxn_ocl_types.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012,2013,2014,2015,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
38  *  Data types used internally in the nbnxn_ocl module.
39  *
40  *  \author Anca Hamuraru <anca@streamcomputing.eu>
41  *  \author Szilárd Páll <pszilard@kth.se>
42  *  \ingroup module_mdlib
43  */
44
45 #ifndef NBNXN_OPENCL_TYPES_H
46 #define NBNXN_OPENCL_TYPES_H
47
48 #include "gromacs/gpu_utils/devicebuffer.h"
49 #include "gromacs/gpu_utils/gmxopencl.h"
50 #include "gromacs/gpu_utils/gputraits_ocl.h"
51 #include "gromacs/gpu_utils/oclutils.h"
52 #include "gromacs/mdlib/nbnxn_gpu_types_common.h"
53 #include "gromacs/mdlib/nbnxn_pairlist.h"
54 #include "gromacs/mdtypes/interaction_const.h"
55 #include "gromacs/utility/real.h"
56
57 /* kernel does #include "gromacs/math/utilities.h" */
58 /* Move the actual useful stuff here: */
59
60 //! Define 1/sqrt(pi)
61 #define M_FLOAT_1_SQRTPI 0.564189583547756f
62
63 /*! \brief Macros defining platform-dependent defaults for the prune kernel's j4 processing concurrency.
64  *
65  *  The GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY macro allows compile-time override.
66  */
67 /*! @{ */
68 #ifndef GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY
69 #define GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY_AMD       4
70 #define GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY_NVIDIA    4
71 #define GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY_DEFAULT   4
72 #else
73 #define GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY_AMD       GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY
74 #define GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY_NVIDIA    GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY
75 #define GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY_DEFAULT   GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY
76 #endif
77 /*! @} */
78 /*! \brief Constants for platform-dependent defaults for the prune kernel's j4 processing concurrency.
79  *
80  *  Initialized using macros that can be overridden at compile-time (using #GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY).
81  */
82 /*! @{ */
83 const int c_oclPruneKernelJ4ConcurrencyAMD     = GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY_AMD;
84 const int c_oclPruneKernelJ4ConcurrencyNVIDIA  = GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY_NVIDIA;
85 const int c_oclPruneKernelJ4ConcurrencyDefault = GMX_NBNXN_PRUNE_KERNEL_J4_CONCURRENCY_DEFAULT;
86 /*! @} */
87
88 /*! \brief Returns the j4 processing concurrency parameter for the vendor \p vendorId
89  *  \param vendorId takes values from #ocl_vendor_id_t.
90  */
91 static inline int getOclPruneKernelJ4Concurrency(int vendorId)
92 {
93     assert(vendorId < OCL_VENDOR_UNKNOWN);
94     switch (vendorId)
95     {
96         case OCL_VENDOR_AMD:    return c_oclPruneKernelJ4ConcurrencyAMD;     break;
97         case OCL_VENDOR_NVIDIA: return c_oclPruneKernelJ4ConcurrencyNVIDIA;  break;
98         default:                return c_oclPruneKernelJ4ConcurrencyDefault; break;
99     }
100 }
101
102
103 /*! \brief Electrostatic OpenCL kernel flavors.
104  *
105  *  Types of electrostatics implementations available in the OpenCL non-bonded
106  *  force kernels. These represent both the electrostatics types implemented
107  *  by the kernels (cut-off, RF, and Ewald - a subset of what's defined in
108  *  enums.h) as well as encode implementation details analytical/tabulated
109  *  and single or twin cut-off (for Ewald kernels).
110  *  Note that the cut-off and RF kernels have only analytical flavor and unlike
111  *  in the CPU kernels, the tabulated kernels are ATM Ewald-only.
112  *
113  *  The row-order of pointers to different electrostatic kernels defined in
114  *  nbnxn_cuda.cu by the nb_*_kfunc_ptr function pointer table
115  *  should match the order of enumerated types below.
116  */
117 enum eelOcl {
118     eelOclCUT, eelOclRF, eelOclEWALD_TAB, eelOclEWALD_TAB_TWIN, eelOclEWALD_ANA, eelOclEWALD_ANA_TWIN, eelOclNR
119 };
120
121 /*! \brief VdW OpenCL kernel flavors.
122  *
123  * The enumerates values correspond to the LJ implementations in the OpenCL non-bonded
124  * kernels.
125  *
126  * The column-order of pointers to different electrostatic kernels defined in
127  * nbnxn_cuda.cu by the nb_*_kfunc_ptr function pointer table
128  * should match the order of enumerated types below.
129  */
130 enum evdwOcl {
131     evdwOclCUT, evdwOclCUTCOMBGEOM, evdwOclCUTCOMBLB, evdwOclFSWITCH, evdwOclPSWITCH, evdwOclEWALDGEOM, evdwOclEWALDLB, evdwOclNR
132 };
133
134 /*! \brief Pruning kernel flavors.
135  *
136  * The values correspond to the first call of the pruning post-list generation
137  * and the rolling pruning, respectively.
138  */
139 enum ePruneKind {
140     epruneFirst, epruneRolling, ePruneNR
141 };
142
143 /*! \internal
144  * \brief Staging area for temporary data downloaded from the GPU.
145  *
146  *  The energies/shift forces get downloaded here first, before getting added
147  *  to the CPU-side aggregate values.
148  */
149 typedef struct cl_nb_staging
150 {
151     float    *e_lj;           /**< LJ energy                       */
152     float    *e_el;           /**< electrostatic energy            */
153     float   (*fshift)[3];     /**< float3 buffer with shift forces */
154 } cl_nb_staging_t;
155
156 /*! \internal
157  * \brief Nonbonded atom data - both inputs and outputs.
158  */
159 typedef struct cl_atomdata
160 {
161     int         natoms;              /**< number of atoms                              */
162     int         natoms_local;        /**< number of local atoms                        */
163     int         nalloc;              /**< allocation size for the atom data (xq, f)    */
164
165     cl_mem      xq;                  /**< float4 buffer with atom coordinates + charges, size natoms */
166
167     cl_mem      f;                   /**< float3 buffer with force output array, size natoms         */
168     size_t      f_elem_size;         /**< Size in bytes for one element of f buffer      */
169
170     cl_mem      e_lj;                /**< LJ energy output, size 1                       */
171     cl_mem      e_el;                /**< Electrostatics energy input, size 1            */
172
173     cl_mem      fshift;              /**< float3 buffer with shift forces                */
174     size_t      fshift_elem_size;    /**< Size in bytes for one element of fshift buffer */
175
176     int         ntypes;              /**< number of atom types                           */
177     cl_mem      atom_types;          /**< int buffer with atom type indices, size natoms */
178     cl_mem      lj_comb;             /**< float2 buffer with sqrt(c6),sqrt(c12), size natoms */
179
180     cl_mem      shift_vec;           /**< float3 buffer with shifts values               */
181     size_t      shift_vec_elem_size; /**< Size in bytes for one element of shift_vec buffer */
182
183     cl_bool     bShiftVecUploaded;   /**< true if the shift vector has been uploaded  */
184 } cl_atomdata_t;
185
186 /*! \internal
187  * \brief Parameters required for the OpenCL nonbonded calculations.
188  */
189 typedef struct cl_nbparam
190 {
191
192     int             eeltype;           /**< type of electrostatics, takes values from #eelOcl */
193     int             vdwtype;           /**< type of VdW impl., takes values from #evdwOcl     */
194
195     float           epsfac;            /**< charge multiplication factor                      */
196     float           c_rf;              /**< Reaction-field/plain cutoff electrostatics const. */
197     float           two_k_rf;          /**< Reaction-field electrostatics constant            */
198     float           ewald_beta;        /**< Ewald/PME parameter                               */
199     float           sh_ewald;          /**< Ewald/PME correction term substracted from the direct-space potential */
200     float           sh_lj_ewald;       /**< LJ-Ewald/PME correction term added to the correction potential        */
201     float           ewaldcoeff_lj;     /**< LJ-Ewald/PME coefficient                          */
202
203     float           rcoulomb_sq;       /**< Coulomb cut-off squared                           */
204
205     float           rvdw_sq;           /**< VdW cut-off squared                               */
206     float           rvdw_switch;       /**< VdW switched cut-off                              */
207     float           rlistOuter_sq;     /**< Full, outer pair-list cut-off squared             */
208     float           rlistInner_sq;     /**< Inner, dynamic pruned pair-list cut-off squared   */
209     bool            useDynamicPruning; /**< True if we use dynamic pair-list pruning          */
210
211     shift_consts_t  dispersion_shift;  /**< VdW shift dispersion constants           */
212     shift_consts_t  repulsion_shift;   /**< VdW shift repulsion constants            */
213     switch_consts_t vdw_switch;        /**< VdW switch constants                     */
214
215     /* LJ non-bonded parameters - accessed through texture memory */
216     cl_mem                  nbfp_climg2d;      /**< nonbonded parameter table with C6/C12 pairs per atom type-pair, 2*ntype^2 elements */
217     cl_mem                  nbfp_comb_climg2d; /**< nonbonded parameter table per atom type, 2*ntype elements                          */
218
219     /* Ewald Coulomb force table data - accessed through texture memory */
220     float                  coulomb_tab_scale;   /**< table scale/spacing                        */
221     cl_mem                 coulomb_tab_climg2d; /**< pointer to the table in the device memory  */
222 } cl_nbparam_t;
223
224 /*! \internal
225  * \brief Data structure shared between the OpenCL device code and OpenCL host code
226  *
227  * Must not contain OpenCL objects (buffers)
228  * TODO: review, improve */
229 typedef struct cl_nbparam_params
230 {
231
232     int             eeltype;          /**< type of electrostatics, takes values from #eelCu */
233     int             vdwtype;          /**< type of VdW impl., takes values from #evdwCu     */
234
235     float           epsfac;           /**< charge multiplication factor                      */
236     float           c_rf;             /**< Reaction-field/plain cutoff electrostatics const. */
237     float           two_k_rf;         /**< Reaction-field electrostatics constant            */
238     float           ewald_beta;       /**< Ewald/PME parameter                               */
239     float           sh_ewald;         /**< Ewald/PME correction term substracted from the direct-space potential */
240     float           sh_lj_ewald;      /**< LJ-Ewald/PME correction term added to the correction potential        */
241     float           ewaldcoeff_lj;    /**< LJ-Ewald/PME coefficient                          */
242
243     float           rcoulomb_sq;      /**< Coulomb cut-off squared                           */
244
245     float           rvdw_sq;          /**< VdW cut-off squared                               */
246     float           rvdw_switch;      /**< VdW switched cut-off                              */
247     float           rlistOuter_sq;    /**< Full, outer pair-list cut-off squared             */
248     float           rlistInner_sq;    /**< Inner, dynamic pruned pair-list cut-off squared   */
249
250     shift_consts_t  dispersion_shift; /**< VdW shift dispersion constants           */
251     shift_consts_t  repulsion_shift;  /**< VdW shift repulsion constants            */
252     switch_consts_t vdw_switch;       /**< VdW switch constants                     */
253
254     /* Ewald Coulomb force table data - accessed through texture memory */
255     float                  coulomb_tab_scale;  /**< table scale/spacing                        */
256 } cl_nbparam_params_t;
257
258
259 /*! \internal
260  * \brief Pair list data.
261  */
262 using cl_plist_t = gpu_plist;
263
264 /** \internal
265  * \brief Typedef of actual timer type.
266  */
267 typedef struct nbnxn_gpu_timers_t cl_timers_t;
268
269 /*! \internal
270  * \brief Main data structure for OpenCL nonbonded force calculations.
271  */
272 struct gmx_nbnxn_ocl_t
273 {
274     const gmx_device_info_t          *dev_info;    /**< OpenCL device information                              */
275     struct gmx_device_runtime_data_t *dev_rundata; /**< OpenCL runtime data (context, kernels)                 */
276
277     /**< Pointers to non-bonded kernel functions
278      * organized similar with nb_kfunc_xxx arrays in nbnxn_ocl.cpp */
279     ///@{
280     cl_kernel           kernel_noener_noprune_ptr[eelOclNR][evdwOclNR];
281     cl_kernel           kernel_ener_noprune_ptr[eelOclNR][evdwOclNR];
282     cl_kernel           kernel_noener_prune_ptr[eelOclNR][evdwOclNR];
283     cl_kernel           kernel_ener_prune_ptr[eelOclNR][evdwOclNR];
284     ///@}
285     cl_kernel           kernel_pruneonly[ePruneNR]; /**< prune kernels, ePruneKind defined the kernel kinds */
286
287     bool                bPrefetchLjParam;           /**< true if prefetching fg i-atom LJ parameters should be used in the kernels */
288
289     /**< auxiliary kernels implementing memset-like functions */
290     ///@{
291     cl_kernel           kernel_memset_f;
292     cl_kernel           kernel_memset_f2;
293     cl_kernel           kernel_memset_f3;
294     cl_kernel           kernel_zero_e_fshift;
295     ///@}
296
297     cl_bool             bUseTwoStreams;        /**< true if doing both local/non-local NB work on GPU          */
298     cl_bool             bNonLocalStreamActive; /**< true indicates that the nonlocal_done event was enqueued   */
299
300     cl_atomdata_t      *atdat;                 /**< atom data                                                  */
301     cl_nbparam_t       *nbparam;               /**< parameters required for the non-bonded calc.               */
302     cl_plist_t         *plist[2];              /**< pair-list data structures (local and non-local)            */
303     cl_nb_staging_t     nbst;                  /**< staging area where fshift/energies get downloaded          */
304
305     cl_command_queue    stream[2];             /**< local and non-local GPU queues                             */
306
307     /** events used for synchronization */
308     cl_event nonlocal_done;                     /**< event triggered when the non-local non-bonded kernel
309                                                    is done (and the local transfer can proceed) */
310     cl_event misc_ops_and_local_H2D_done;       /**< event triggered when the tasks issued in
311                                                    the local stream that need to precede the
312                                                    non-local force calculations are done
313                                                    (e.g. f buffer 0-ing, local x/q H2D) */
314
315     cl_bool                           bDoTime;  /**< True if event-based timing is enabled.                     */
316     cl_timers_t                      *timers;   /**< OpenCL event-based timers.                                 */
317     struct gmx_wallclock_gpu_nbnxn_t *timings;  /**< Timing data. TODO: deprecate this and query timers for accumulated data instead */
318 };
319
320 #endif  /* NBNXN_OPENCL_TYPES_H */