Implement alternating GPU wait
[alexxy/gromacs.git] / src / gromacs / mdlib / nbnxn_gpu.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012,2013,2014,2015,2017, 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 Declare interface for GPU execution for NBNXN module
37  *
38  *  \author Szilard Pall <pall.szilard@gmail.com>
39  *  \author Mark Abraham <mark.j.abraham@gmail.com>
40  *  \ingroup module_mdlib
41  */
42
43 #ifndef GMX_MDLIB_NBNXN_GPU_H
44 #define GMX_MDLIB_NBNXN_GPU_H
45
46 #include "gromacs/gpu_utils/gpu_macros.h"
47 #include "gromacs/math/vectypes.h"
48 #include "gromacs/mdlib/nbnxn_gpu_types.h"
49 #include "gromacs/utility/basedefinitions.h"
50 #include "gromacs/utility/real.h"
51
52 #ifdef __cplusplus
53 extern "C" {
54 #endif
55
56 struct nbnxn_atomdata_t;
57 enum class GpuTaskCompletion;
58
59 /*! \brief
60  * Launch asynchronously the nonbonded force calculations.
61  *
62  *  This consists of the following (async) steps launched:
63  *  - upload x and q;
64  *  - upload shift vector;
65  *  - launch kernel;
66  *  The local and non-local interaction calculations are launched in two
67  *  separate streams.
68  */
69 GPU_FUNC_QUALIFIER
70 void nbnxn_gpu_launch_kernel(gmx_nbnxn_gpu_t gmx_unused               *nb,
71                              const struct nbnxn_atomdata_t gmx_unused *nbdata,
72                              int gmx_unused                            flags,
73                              int gmx_unused                            iloc) GPU_FUNC_TERM
74
75 /*! \brief
76  * Launch asynchronously the nonbonded prune-only kernel.
77  *
78  *  The local and non-local list pruning are launched in their separate streams.
79  *
80  *  Notes for future scheduling tuning:
81  *  Currently we schedule the dynamic pruning between two MD steps *after* both local and
82  *  nonlocal force D2H transfers completed. We could launch already after the cpyback
83  *  is launched, but we want to avoid prune kernels (especially in the non-local
84  *  high prio-stream) competing with nonbonded work.
85  *
86  *  However, this is not ideal as this schedule does not expose the available
87  *  concurrency. The dynamic pruning kernel:
88  *    - should be allowed to overlap with any task other than force compute, including
89  *      transfers (F D2H and the next step's x H2D as well as force clearing).
90  *    - we'd prefer to avoid competition with non-bonded force kernels belonging
91  *      to the same rank and ideally other ranks too.
92  *
93  *  In the most general case, the former would require scheduling pruning in a separate
94  *  stream and adding additional event sync points to ensure that force kernels read
95  *  consistent pair list data. This would lead to some overhead (due to extra
96  *  cudaStreamWaitEvent calls, 3-5 us/call) which we might be able to live with.
97  *  The gains from additional overlap might not be significant as long as
98  *  update+constraints anyway takes longer than pruning, but there will still
99  *  be use-cases where more overlap may help (e.g. multiple ranks per GPU,
100  *  no/hbonds only constraints).
101  *  The above second point is harder to address given that multiple ranks will often
102  *  share a GPU. Ranks that complete their nonbondeds sooner can schedule pruning earlier
103  *  and without a third priority level it is difficult to avoid some interference of
104  *  prune kernels with force tasks (in particular preemption of low-prio local force task).
105  *
106  * \param [inout] nb        GPU nonbonded data.
107  * \param [in]    iloc      Interaction locality flag.
108  * \param [in]    numParts  Number of parts the pair list is split into in the rolling kernel.
109  */
110 GPU_FUNC_QUALIFIER
111 void nbnxn_gpu_launch_kernel_pruneonly(gmx_nbnxn_gpu_t gmx_unused *nb,
112                                        int gmx_unused              iloc,
113                                        int gmx_unused              numParts) GPU_FUNC_TERM
114
115 /*! \brief
116  * Launch asynchronously the download of nonbonded forces from the GPU
117  * (and energies/shift forces if required).
118  */
119 GPU_FUNC_QUALIFIER
120 void nbnxn_gpu_launch_cpyback(gmx_nbnxn_gpu_t  gmx_unused              *nb,
121                               const struct nbnxn_atomdata_t gmx_unused *nbatom,
122                               int                    gmx_unused         flags,
123                               int                    gmx_unused         aloc) GPU_FUNC_TERM
124
125 /*! \brief Attempts to complete nonbonded GPU task.
126  *
127  *  This function attempts to complete the nonbonded task (both GPU and CPU auxiliary work).
128  *  Success, i.e. that the tasks completed and results are ready to be consumed, is signaled
129  *  by the return value (always true if blocking wait mode requested).
130  *
131  *  The \p completionKind parameter controls whether the behavior is non-blocking
132  *  (achieved by passing GpuTaskCompletion::Check) or blocking wait until the results
133  *  are ready (when GpuTaskCompletion::Wait is passed).
134  *  As the "Check" mode the function will return immediately if the GPU stream
135  *  still contain tasks that have not completed, it allows more flexible overlapping
136  *  of work on the CPU with GPU execution.
137  *
138  *  Note that it is only safe to use the results, and to continue to the next MD
139  *  step when this function has returned true which indicates successful completion of
140  *  - All nonbonded GPU tasks: both compute and device transfer(s)
141  *  - auxiliary tasks: updating the internal module state (timing accumulation, list pruning states) and
142  *  - internal staging reduction of (\p fshift, \p e_el, \p e_lj).
143  *
144  *  TODO: improve the handling of outputs e.g. by ensuring that this function explcitly returns the
145  *  force buffer (instead of that being passed only to nbnxn_gpu_launch_cpyback()) and by returning
146  *  the energy and Fshift contributions for some external/centralized reduction.
147  *
148  * \param[in]  nb     The nonbonded data GPU structure
149  * \param[in]  flags  Force flags
150  * \param[in]  aloc   Atom locality identifier
151  * \param[out] e_lj   Pointer to the LJ energy output to accumulate into
152  * \param[out] e_el   Pointer to the electrostatics energy output to accumulate into
153  * \param[out] fshift Pointer to the shift force buffer to accumulate into
154  * \param[in]  completionKind Indicates whether nnbonded task completion should only be checked rather than waited for
155  * \returns              True if the nonbonded tasks associated with \p aloc locality have completed
156  */
157 GPU_FUNC_QUALIFIER
158 bool nbnxn_gpu_try_finish_task(gmx_nbnxn_gpu_t gmx_unused  *nb,
159                                int             gmx_unused   flags,
160                                int             gmx_unused   aloc,
161                                real            gmx_unused  *e_lj,
162                                real            gmx_unused  *e_el,
163                                rvec            gmx_unused  *fshift,
164                                GpuTaskCompletion gmx_unused completionKind) GPU_FUNC_TERM_WITH_RETURN(false)
165
166 /*! \brief  Completes the nonbonded GPU task blocking until GPU tasks and data
167  * transfers to finish.
168  *
169  * Also does timing accounting and reduction of the internal staging buffers.
170  * As this is called at the end of the step, it also resets the pair list and
171  * pruning flags.
172  *
173  * \param[in] nb The nonbonded data GPU structure
174  * \param[in] flags Force flags
175  * \param[in] aloc Atom locality identifier
176  * \param[out] e_lj Pointer to the LJ energy output to accumulate into
177  * \param[out] e_el Pointer to the electrostatics energy output to accumulate into
178  * \param[out] fshift Pointer to the shift force buffer to accumulate into
179  */
180 GPU_FUNC_QUALIFIER
181 void nbnxn_gpu_wait_finish_task(gmx_nbnxn_gpu_t gmx_unused *nb,
182                                 int             gmx_unused  flags,
183                                 int             gmx_unused  aloc,
184                                 real            gmx_unused *e_lj,
185                                 real            gmx_unused *e_el,
186                                 rvec            gmx_unused *fshift) GPU_FUNC_TERM
187
188 /*! \brief Selects the Ewald kernel type, analytical or tabulated, single or twin cut-off. */
189 GPU_FUNC_QUALIFIER
190 int nbnxn_gpu_pick_ewald_kernel_type(bool gmx_unused bTwinCut) GPU_FUNC_TERM_WITH_RETURN(-1)
191
192 #ifdef __cplusplus
193 }
194 #endif
195
196 #endif