9c45fde828e4350619a00248642d6ccaf502896c
[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 by the GROMACS development team.
5  * Copyright (c) 2017,2018,2019,2020, by the GROMACS development team, led by
6  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
7  * and including many others, as listed in the AUTHORS file in the
8  * top-level source directory and at http://www.gromacs.org.
9  *
10  * GROMACS is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public License
12  * as published by the Free Software Foundation; either version 2.1
13  * of the License, or (at your option) any later version.
14  *
15  * GROMACS is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with GROMACS; if not, see
22  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
23  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
24  *
25  * If you want to redistribute modifications to GROMACS, please
26  * consider that scientific software is very special. Version
27  * control is crucial - bugs must be traceable. We will be happy to
28  * consider code for inclusion in the official distribution, but
29  * derived work must not be called official GROMACS. Details are found
30  * in the README & COPYING files - if they are missing, get the
31  * official version at http://www.gromacs.org.
32  *
33  * To help us fund GROMACS development, we humbly ask that you cite
34  * the research papers on the package. Check out http://www.gromacs.org.
35  */
36 /*! \libinternal \file
37  *
38  * \brief This file contains function declarations necessary for
39  * managing automatic load balance of PME calculations (Coulomb and
40  * LJ).
41  *
42  * \author Berk Hess <hess@kth.se>
43  * \inlibraryapi
44  * \ingroup module_ewald
45  */
46
47 #ifndef GMX_EWALD_PME_LOAD_BALANCING_H
48 #define GMX_EWALD_PME_LOAD_BALANCING_H
49
50 #include "gromacs/mdtypes/forcerec.h"
51 #include "gromacs/mdtypes/interaction_const.h"
52 #include "gromacs/timing/wallcycle.h"
53
54 struct nonbonded_verlet_t;
55 struct t_commrec;
56 struct t_inputrec;
57 class t_state;
58
59 namespace gmx
60 {
61 class MDLogger;
62 template<typename T>
63 class ArrayRef;
64 } // namespace gmx
65
66 /*! \brief Object to manage PME load balancing */
67 struct pme_load_balancing_t;
68
69 /*! \brief Return whether PME load balancing is active */
70 bool pme_loadbal_is_active(const pme_load_balancing_t* pme_lb);
71
72 /*! \brief Initialize the PP-PME load balacing data and infrastructure
73  *
74  * Initialize the PP-PME load balacing data and infrastructure.
75  * The actual load balancing might start right away, later or never.
76  * The PME grid in pmedata is reused for smaller grids to lower the memory
77  * usage.
78  */
79 void pme_loadbal_init(pme_load_balancing_t**     pme_lb_p,
80                       t_commrec*                 cr,
81                       const gmx::MDLogger&       mdlog,
82                       const t_inputrec&          ir,
83                       const matrix               box,
84                       const interaction_const_t& ic,
85                       const nonbonded_verlet_t&  nbv,
86                       gmx_pme_t*                 pmedata,
87                       gmx_bool                   bUseGPU);
88
89 /*! \brief Process cycles and PME load balance when necessary
90  *
91  * Process the cycles measured over the last nstlist steps and then
92  * either continue balancing or check if we need to trigger balancing.
93  * Should be called after the ewcSTEP cycle counter has been stopped.
94  * Returns if the load balancing is printing to fp_err.
95  */
96 void pme_loadbal_do(pme_load_balancing_t*          pme_lb,
97                     struct t_commrec*              cr,
98                     FILE*                          fp_err,
99                     FILE*                          fp_log,
100                     const gmx::MDLogger&           mdlog,
101                     const t_inputrec&              ir,
102                     t_forcerec*                    fr,
103                     const matrix                   box,
104                     gmx::ArrayRef<const gmx::RVec> x,
105                     gmx_wallcycle_t                wcycle,
106                     int64_t                        step,
107                     int64_t                        step_rel,
108                     gmx_bool*                      bPrinting,
109                     bool                           useGpuPmePpCommunication);
110
111 /*! \brief Finish the PME load balancing and print the settings when fplog!=NULL */
112 void pme_loadbal_done(pme_load_balancing_t* pme_lb, FILE* fplog, const gmx::MDLogger& mdlog, gmx_bool bNonBondedOnGPU);
113
114 #endif