Fix typos.
[alexxy/gromacs.git] / src / gromacs / nbnxm / opencl / nbnxm_ocl_jit_support.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2014,2015,2016,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 /*! \internal \file
36  *  \brief Defines functions that support JIT compilation (e.g. for OpenCL)
37  *
38  *  \author Dimitrios Karkoulis <dimitris.karkoulis@gmail.com>
39  *  \author Mark Abraham <mark.j.abraham@gmail.com>
40  *  \ingroup module_nbnxm
41  */
42 #include "gmxpre.h"
43
44 #include <stdlib.h>
45
46 #include <cassert>
47
48 #include <string>
49
50 #include "gromacs/gpu_utils/gpu_utils.h"
51 #include "gromacs/gpu_utils/ocl_compiler.h"
52 #include "gromacs/mdtypes/interaction_const.h"
53 #include "gromacs/mdtypes/md_enums.h"
54 #include "gromacs/nbnxm/gpu_jit_support.h"
55 #include "gromacs/nbnxm/nbnxm_gpu.h"
56 #include "gromacs/pbcutil/ishift.h"
57 #include "gromacs/utility/cstringutil.h"
58 #include "gromacs/utility/exceptions.h"
59 #include "gromacs/utility/fatalerror.h"
60 #include "gromacs/utility/stringutil.h"
61
62 #include "nbnxm_ocl_types.h"
63
64 /*! \brief Stringifies the input argument
65  */
66 #define STRINGIFY_PARAM(c) #c
67
68 /*! \brief Stringifies the result of expansion of a macro argument
69  */
70 #define STRINGIFY_MACRO(c) STRINGIFY_PARAM(c)
71
72 /*! \brief Array of the defines needed to generate a specific eel flavour
73  *
74  * The twin-cutoff entries are not normally used, because those setups are
75  * not available to the user. FastGen takes care of generating both
76  * single- and twin-cutoff versions because PME tuning might need both.
77  */
78 static const char * kernel_electrostatic_family_definitions[] =
79 {
80     " -DEL_CUTOFF -DEELNAME=_ElecCut",
81     " -DEL_RF -DEELNAME=_ElecRF",
82     " -DEL_EWALD_TAB -DEELNAME=_ElecEwQSTab",
83     " -DEL_EWALD_TAB -DVDW_CUTOFF_CHECK -DEELNAME=_ElecEwQSTabTwinCut",
84     " -DEL_EWALD_ANA -DEELNAME=_ElecEw",
85     " -DEL_EWALD_ANA -DVDW_CUTOFF_CHECK -DEELNAME=_ElecEwTwinCut"
86 };
87
88 /*! \brief Array of the defines needed to generate a specific vdw flavour
89  */
90 static const char * kernel_VdW_family_definitions[] =
91 {
92     " -DVDWNAME=_VdwLJ",
93     " -DLJ_COMB_GEOM -DVDWNAME=_VdwLJCombGeom",
94     " -DLJ_COMB_LB -DVDWNAME=_VdwLJCombLB",
95     " -DLJ_FORCE_SWITCH -DVDWNAME=_VdwLJFsw",
96     " -DLJ_POT_SWITCH -DVDWNAME=_VdwLJPsw",
97     " -DLJ_EWALD_COMB_GEOM -DVDWNAME=_VdwLJEwCombGeom",
98     " -DLJ_EWALD_COMB_LB -DVDWNAME=_VdwLJEwCombLB"
99 };
100
101 /*! \brief Returns a string with the compiler defines required to avoid all flavour generation
102  *
103  * For example if flavour eelOclRF with evdwOclFSWITCH, the output will be such that the corresponding
104  * kernel flavour is generated:
105  * -DGMX_OCL_FASTGEN          (will replace flavour generator nbnxn_ocl_kernels.clh with nbnxn_ocl_kernels_fastgen.clh)
106  * -DEL_RF                    (The eelOclRF flavour)
107  * -DEELNAME=_ElecRF          (The first part of the generated kernel name )
108  * -DLJ_EWALD_COMB_GEOM       (The evdwOclFSWITCH flavour)
109  * -DVDWNAME=_VdwLJEwCombGeom (The second part of the generated kernel name )
110  *
111  * prune/energy are still generated as originally. It is only the flavour-level that has changed, so that
112  * only the required flavour for the simulation is compiled.
113  *
114  * If eeltype is single-range Ewald, then we need to add the
115  * twin-cutoff flavour kernels to the JIT, because PME tuning might
116  * need it. This path sets -DGMX_OCL_FASTGEN_ADD_TWINCUT, which
117  * triggers the use of nbnxn_ocl_kernels_fastgen_add_twincut.clh. This
118  * hard-codes the generation of extra kernels that have the same base
119  * flavour, and add the required -DVDW_CUTOFF_CHECK and "TwinCut" to
120  * the kernel name.
121  *
122  * If FastGen is not active, then nothing needs to be returned. The
123  * JIT defaults to compiling all kernel flavours.
124  *
125  * \param[in]  bFastGen    Whether FastGen should be used
126  * \param[in]  eeltype     Electrostatics kernel flavour for FastGen
127  * \param[in]  vdwtype     VDW kernel flavour for FastGen
128  * \return                 String with the defines if FastGen is active
129  *
130  * \throws std::bad_alloc if out of memory
131  */
132 static std::string
133 makeDefinesForKernelTypes(bool bFastGen,
134                           int  eeltype,
135                           int  vdwtype)
136 {
137     std::string defines_for_kernel_types;
138
139     if (bFastGen)
140     {
141         bool bIsEwaldSingleCutoff = (eeltype == eelOclEWALD_TAB ||
142                                      eeltype == eelOclEWALD_ANA);
143
144         if (bIsEwaldSingleCutoff)
145         {
146             defines_for_kernel_types += "-DGMX_OCL_FASTGEN_ADD_TWINCUT";
147         }
148         else
149         {
150             /* This triggers the use of
151                nbnxn_ocl_kernels_fastgen.clh. */
152             defines_for_kernel_types += "-DGMX_OCL_FASTGEN";
153         }
154         defines_for_kernel_types += kernel_electrostatic_family_definitions[eeltype];
155         defines_for_kernel_types += kernel_VdW_family_definitions[vdwtype];
156     }
157
158     return defines_for_kernel_types;
159 }
160
161 /*! \brief Compiles nbnxn kernels for OpenCL GPU given by \p mygpu
162  *
163  * With OpenCL, a call to this function must not precede nbnxn_gpu_init() (which also calls it).
164  *
165  * Doing bFastGen means only the requested kernels are compiled,
166  * significantly reducing the total compilation time. If false, all
167  * OpenCL kernels are compiled.
168  *
169  * A fatal error results if compilation fails.
170  *
171  * \param[inout] nb  Manages OpenCL non-bonded calculations; compiled kernels returned in dev_info members
172  *
173  * Does not throw
174  */
175 void
176 nbnxn_gpu_compile_kernels(gmx_nbnxn_ocl_t *nb)
177 {
178     gmx_bool                  bFastGen = TRUE;
179     cl_program                program  = nullptr;
180
181     if (getenv("GMX_OCL_NOFASTGEN") != nullptr)
182     {
183         bFastGen = FALSE;
184     }
185
186     /* Need to catch std::bad_alloc here and during compilation string
187        handling. */
188     try
189     {
190         std::string extraDefines = makeDefinesForKernelTypes(bFastGen,
191                                                              nb->nbparam->eeltype,
192                                                              nb->nbparam->vdwtype);
193
194         /* Here we pass macros and static const int variables defined
195          * in include files outside the opencl as macros, to avoid
196          * including those files in the JIT compilation that happens
197          * at runtime. This is particularly a problem for headers that
198          * depend on config.h, such as pairlist.h. */
199         extraDefines += gmx::formatString(
200                     " -DNBNXN_GPU_CLUSTER_SIZE=%d "
201                     "%s",
202                     c_nbnxnGpuClusterSize,                                  /* Defined in nbnxn_pairlist.h */
203                     (nb->bPrefetchLjParam) ? "-DIATYPE_SHMEM" : ""
204                     );
205         try
206         {
207             /* TODO when we have a proper MPI-aware logging module,
208                the log output here should be written there */
209             program = gmx::ocl::compileProgram(stderr,
210                                                "gromacs/nbnxm/opencl",
211                                                "nbnxm_ocl_kernels.cl",
212                                                extraDefines,
213                                                nb->dev_rundata->context,
214                                                nb->dev_info->ocl_gpu_id.ocl_device_id,
215                                                nb->dev_info->vendor_e);
216         }
217         catch (gmx::GromacsException &e)
218         {
219             e.prependContext(gmx::formatString("Failed to compile NBNXN kernels for GPU #%s\n",
220                                                nb->dev_info->device_name));
221             throw;
222         }
223     }
224     GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
225
226     nb->dev_rundata->program = program;
227 }