Remove gmx custom fixed int (e.g. gmx_int64_t) types
[alexxy/gromacs.git] / src / gromacs / ewald / pme-load-balancing.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 /*! \libinternal \file
36  *
37  * \brief This file contains function declarations necessary for
38  * managing automatic load balance of PME calculations (Coulomb and
39  * LJ).
40  *
41  * \author Berk Hess <hess@kth.se>
42  * \inlibraryapi
43  * \ingroup module_ewald
44  */
45
46 #ifndef GMX_EWALD_PME_LOAD_BALANCING_H
47 #define GMX_EWALD_PME_LOAD_BALANCING_H
48
49 #include "gromacs/mdtypes/forcerec.h"
50 #include "gromacs/mdtypes/interaction_const.h"
51 #include "gromacs/timing/wallcycle.h"
52
53 struct NbnxnListParameters;
54 struct t_commrec;
55 struct t_inputrec;
56 class t_state;
57
58 namespace gmx
59 {
60 class MDLogger;
61 }
62
63 /*! \brief Object to manage PME load balancing */
64 struct pme_load_balancing_t;
65
66 /*! \brief Return whether PME load balancing is active */
67 bool pme_loadbal_is_active(const pme_load_balancing_t *pme_lb);
68
69 /*! \brief Initialize the PP-PME load balacing data and infrastructure
70  *
71  * Initialize the PP-PME load balacing data and infrastructure.
72  * The actual load balancing might start right away, later or never.
73  * Returns in bPrinting whether the load balancing is printing to fp_err.
74  * The PME grid in pmedata is reused for smaller grids to lower the memory
75  * usage.
76  */
77 void pme_loadbal_init(pme_load_balancing_t     **pme_lb_p,
78                       t_commrec                 *cr,
79                       const gmx::MDLogger       &mdlog,
80                       const t_inputrec          *ir,
81                       matrix                     box,
82                       const interaction_const_t *ic,
83                       const NbnxnListParameters *listParams,
84                       gmx_pme_t                 *pmedata,
85                       gmx_bool                   bUseGPU,
86                       gmx_bool                  *bPrinting);
87
88 /*! \brief Process cycles and PME load balance when necessary
89  *
90  * Process the cycles measured over the last nstlist steps and then
91  * either continue balancing or check if we need to trigger balancing.
92  * Should be called after the ewcSTEP cycle counter has been stopped.
93  * Returns if the load balancing is printing to fp_err.
94  */
95 void pme_loadbal_do(pme_load_balancing_t  *pme_lb,
96                     struct t_commrec      *cr,
97                     FILE                  *fp_err,
98                     FILE                  *fp_log,
99                     const gmx::MDLogger   &mdlog,
100                     const t_inputrec      *ir,
101                     t_forcerec            *fr,
102                     t_state               *state,
103                     gmx_wallcycle_t        wcycle,
104                     int64_t                step,
105                     int64_t                step_rel,
106                     gmx_bool              *bPrinting);
107
108 /*! \brief Finish the PME load balancing and print the settings when fplog!=NULL */
109 void pme_loadbal_done(pme_load_balancing_t *pme_lb,
110                       FILE                 *fplog,
111                       const gmx::MDLogger  &mdlog,
112                       gmx_bool              bNonBondedOnGPU);
113
114 #endif