3052ac05a5df619b72ff5365da21e2731675ae2f
[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, 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 t_commrec;
54 struct t_inputrec;
55 class t_state;
56
57 namespace gmx
58 {
59 class MDLogger;
60 }
61
62 /*! \brief Object to manage PME load balancing */
63 struct pme_load_balancing_t;
64
65 /*! \brief Return whether PME load balancing is active */
66 bool pme_loadbal_is_active(const pme_load_balancing_t *pme_lb);
67
68 /*! \brief Initialize the PP-PME load balacing data and infrastructure
69  *
70  * Initialize the PP-PME load balacing data and infrastructure.
71  * The actual load balancing might start right away, later or never.
72  * Returns in bPrinting whether the load balancing is printing to fp_err.
73  * The PME grid in pmedata is reused for smaller grids to lower the memory
74  * usage.
75  */
76 void pme_loadbal_init(pme_load_balancing_t     **pme_lb_p,
77                       t_commrec                 *cr,
78                       const gmx::MDLogger       &mdlog,
79                       const t_inputrec          *ir,
80                       matrix                     box,
81                       const interaction_const_t *ic,
82                       gmx_pme_t                 *pmedata,
83                       gmx_bool                   bUseGPU,
84                       gmx_bool                  *bPrinting);
85
86 /*! \brief Process cycles and PME load balance when necessary
87  *
88  * Process the cycles measured over the last nstlist steps and then
89  * either continue balancing or check if we need to trigger balancing.
90  * Should be called after the ewcSTEP cycle counter has been stopped.
91  * Returns if the load balancing is printing to fp_err.
92  */
93 void pme_loadbal_do(pme_load_balancing_t  *pme_lb,
94                     struct t_commrec      *cr,
95                     FILE                  *fp_err,
96                     FILE                  *fp_log,
97                     const gmx::MDLogger   &mdlog,
98                     const t_inputrec      *ir,
99                     t_forcerec            *fr,
100                     t_state               *state,
101                     gmx_wallcycle_t        wcycle,
102                     gmx_int64_t            step,
103                     gmx_int64_t            step_rel,
104                     gmx_bool              *bPrinting);
105
106 /*! \brief Finish the PME load balancing and print the settings when fplog!=NULL */
107 void pme_loadbal_done(pme_load_balancing_t *pme_lb,
108                       FILE                 *fplog,
109                       const gmx::MDLogger  &mdlog,
110                       gmx_bool              bNonBondedOnGPU);
111
112 #endif