Manually sort some includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / mdlib / nbnxn_cuda / nbnxn_cuda.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012,2013,2014, 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 #ifndef NBNXN_CUDA_H
36 #define NBNXN_CUDA_H
37
38 #include "gromacs/legacyheaders/types/nbnxn_cuda_types_ext.h"
39 #include "gromacs/legacyheaders/types/simple.h"
40
41 #include "config.h"
42
43 #ifdef GMX_GPU
44 #define FUNC_TERM ;
45 #else
46 #define FUNC_TERM {}
47 #endif
48
49 #ifdef __cplusplus
50 extern "C" {
51 #endif
52
53 struct nbnxn_atomdata_t;
54
55 /*! \brief
56  * Launch asynchronously the nonbonded force calculations.
57  *
58  *  This consists of the following (async) steps launched:
59  *  - upload x and q;
60  *  - upload shift vector;
61  *  - launch kernel;
62  *  The local and non-local interaction calculations are launched in two
63  *  separate streams.
64  */
65 void nbnxn_cuda_launch_kernel(nbnxn_cuda_ptr_t              gmx_unused  cu_nb,
66                               const struct nbnxn_atomdata_t gmx_unused *nbdata,
67                               int                           gmx_unused  flags,
68                               int                           gmx_unused  iloc) FUNC_TERM
69
70 /*! \brief
71  * Launch asynchronously the download of nonbonded forces from the GPU
72  * (and energies/shift forces if required).
73  */
74 void nbnxn_cuda_launch_cpyback(nbnxn_cuda_ptr_t              gmx_unused  cu_nb,
75                                const struct nbnxn_atomdata_t gmx_unused *nbatom,
76                                int                           gmx_unused  flags,
77                                int                           gmx_unused  aloc) FUNC_TERM
78
79 /*! \brief
80  * Wait for the asynchronously launched nonbonded calculations and data
81  * transfers to finish.
82  */
83 void nbnxn_cuda_wait_gpu(nbnxn_cuda_ptr_t              gmx_unused  cu_nb,
84                          const struct nbnxn_atomdata_t gmx_unused *nbatom,
85                          int                           gmx_unused  flags,
86                          int                           gmx_unused  aloc,
87                          real                          gmx_unused *e_lj,
88                          real                          gmx_unused *e_el,
89                          rvec                          gmx_unused *fshift) FUNC_TERM
90
91 #ifdef __cplusplus
92 }
93 #endif
94
95 #undef FUNC_TERM
96
97 #endif /* NBNXN_CUDA_H */