Sort all includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / mdlib / nbnxn_cuda / nbnxn_cuda_data_mgmt.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
36 #ifndef NBNXN_CUDA_DATA_MGMT_H
37 #define NBNXN_CUDA_DATA_MGMT_H
38
39 #include "config.h"
40
41 #include "gromacs/legacyheaders/types/hw_info.h"
42 #include "gromacs/legacyheaders/types/interaction_const.h"
43 #include "gromacs/legacyheaders/types/nbnxn_cuda_types_ext.h"
44 #include "gromacs/legacyheaders/types/simple.h"
45
46 #ifdef GMX_GPU
47 #define FUNC_TERM ;
48 #define FUNC_QUALIFIER
49 #else
50 #define FUNC_TERM {}
51 #define FUNC_QUALIFIER static
52 #endif
53
54 #ifdef __cplusplus
55 extern "C" {
56 #endif
57
58 struct nonbonded_verlet_group_t;
59 struct nbnxn_pairlist_t;
60 struct nbnxn_atomdata_t;
61
62 /** Initializes the data structures related to CUDA nonbonded calculations. */
63 FUNC_QUALIFIER
64 void nbnxn_cuda_init(FILE gmx_unused                 *fplog,
65                      nbnxn_cuda_ptr_t gmx_unused     *p_cu_nb,
66                      const gmx_gpu_info_t gmx_unused *gpu_info,
67                      const gmx_gpu_opt_t gmx_unused  *gpu_opt,
68                      int gmx_unused                   my_gpu_index,
69                      /* true of both local and non-local are don on GPU */
70                      gmx_bool gmx_unused              bLocalAndNonlocal) FUNC_TERM
71
72 /** Initializes simulation constant data. */
73 FUNC_QUALIFIER
74 void nbnxn_cuda_init_const(nbnxn_cuda_ptr_t               gmx_unused         cu_nb,
75                            const interaction_const_t      gmx_unused        *ic,
76                            const struct nonbonded_verlet_group_t gmx_unused *nbv_group) FUNC_TERM
77
78 /** Initializes pair-list data for GPU, called at every pair search step. */
79 FUNC_QUALIFIER
80 void nbnxn_cuda_init_pairlist(nbnxn_cuda_ptr_t       gmx_unused         cu_nb,
81                               const struct nbnxn_pairlist_t gmx_unused *h_nblist,
82                               int                    gmx_unused         iloc) FUNC_TERM
83
84 /** Initializes atom-data on the GPU, called at every pair search step. */
85 FUNC_QUALIFIER
86 void nbnxn_cuda_init_atomdata(const nbnxn_cuda_ptr_t       gmx_unused   cu_nb,
87                               const struct nbnxn_atomdata_t gmx_unused *atomdata) FUNC_TERM
88
89 /*! \brief Update parameters during PP-PME load balancing. */
90 FUNC_QUALIFIER
91 void nbnxn_cuda_pme_loadbal_update_param(const struct nonbonded_verlet_t gmx_unused *nbv,
92                                          const interaction_const_t gmx_unused       *ic) FUNC_TERM
93
94 /** Uploads shift vector to the GPU if the box is dynamic (otherwise just returns). */
95 FUNC_QUALIFIER
96 void nbnxn_cuda_upload_shiftvec(nbnxn_cuda_ptr_t       gmx_unused         cu_nb,
97                                 const struct nbnxn_atomdata_t gmx_unused *nbatom) FUNC_TERM
98
99 /** Clears GPU outputs: nonbonded force, shift force and energy. */
100 FUNC_QUALIFIER
101 void nbnxn_cuda_clear_outputs(nbnxn_cuda_ptr_t gmx_unused cu_nb,
102                               int              gmx_unused flags) FUNC_TERM
103
104 /** Frees all GPU resources used for the nonbonded calculations. */
105 FUNC_QUALIFIER
106 void nbnxn_cuda_free(nbnxn_cuda_ptr_t gmx_unused  cu_nb) FUNC_TERM
107
108 /** Returns the GPU timings structure or NULL if GPU is not used or timing is off. */
109 FUNC_QUALIFIER
110 wallclock_gpu_t * nbnxn_cuda_get_timings(nbnxn_cuda_ptr_t gmx_unused cu_nb)
111 #ifdef GMX_GPU
112 ;
113 #else
114 {
115     return NULL;
116 }
117 #endif
118
119 /** Resets nonbonded GPU timings. */
120 FUNC_QUALIFIER
121 void nbnxn_cuda_reset_timings(struct nonbonded_verlet_t gmx_unused *nbv) FUNC_TERM
122
123 /** Calculates the minimum size of proximity lists to improve SM load balance
124  *  with CUDA non-bonded kernels. */
125 FUNC_QUALIFIER
126 int nbnxn_cuda_min_ci_balanced(nbnxn_cuda_ptr_t gmx_unused cu_nb)
127 #ifdef GMX_GPU
128 ;
129 #else
130 {
131     return -1;
132 }
133 #endif
134
135 /** Returns if analytical Ewald CUDA kernels are used. */
136 FUNC_QUALIFIER
137 gmx_bool nbnxn_cuda_is_kernel_ewald_analytical(const nbnxn_cuda_ptr_t gmx_unused cu_nb)
138 #ifdef GMX_GPU
139 ;
140 #else
141 {
142     return FALSE;
143 }
144 #endif
145
146 #ifdef __cplusplus
147 }
148 #endif
149
150 #undef FUNC_TERM
151 #undef FUNC_QUALIFIER
152
153 #endif /* NBNXN_CUDA_DATA_MGMT_H */