2a46b2cb1ee2d2560f0c68d7dabeec11c9b7cb47
[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, 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/legacyheaders/types/commrec_fwd.h"
50 #include "gromacs/legacyheaders/types/forcerec.h"
51 #include "gromacs/legacyheaders/types/inputrec.h"
52 #include "gromacs/legacyheaders/types/interaction_const.h"
53 #include "gromacs/legacyheaders/types/state.h"
54 #include "gromacs/timing/wallcycle.h"
55
56 /*! \brief Object to manage PME load balancing */
57 struct pme_load_balancing_t;
58
59 /*! \brief Initialize the PP-PME load balacing data and infrastructure
60  *
61  * Initialize the PP-PME load balacing data and infrastructure.
62  * The actual load balancing might start right away, later or never.
63  * Returns in bPrinting whether the load balancing is printing to fp_err.
64  * The PME grid in pmedata is reused for smaller grids to lower the memory
65  * usage.
66  */
67 void pme_loadbal_init(pme_load_balancing_t     **pme_lb_p,
68                       const t_inputrec          *ir,
69                       matrix                     box,
70                       const interaction_const_t *ic,
71                       struct gmx_pme_t          *pmedata,
72                       gmx_bool                   bUseGPU,
73                       gmx_bool                   bSepPMERanks,
74                       gmx_bool                  *bPrinting);
75
76 /*! \brief Process cycles and PME load balance when necessary
77  *
78  * Process the cycles measured over the last nstlist steps and then
79  * either continue balancing or check if we need to trigger balancing.
80  * Should be called after the ewcSTEP cycle counter has been stopped.
81  * Returns if the load balancing is printing to fp_err.
82  */
83 void pme_loadbal_do(pme_load_balancing_t *pme_lb,
84                     t_commrec            *cr,
85                     FILE                 *fp_err,
86                     FILE                 *fp_log,
87                     t_inputrec           *ir,
88                     t_forcerec           *fr,
89                     t_state              *state,
90                     gmx_wallcycle_t       wcycle,
91                     gmx_int64_t           step,
92                     gmx_int64_t           step_rel,
93                     gmx_bool             *bPrinting);
94
95 /*! \brief Restart the PME load balancing discarding all timings gathered up till now */
96 void restart_pme_loadbal(pme_load_balancing_t *pme_lb, int n);
97
98 /*! \brief Finish the PME load balancing and print the settings when fplog!=NULL */
99 void pme_loadbal_done(pme_load_balancing_t *pme_lb,
100                       t_commrec *cr, FILE *fplog,
101                       gmx_bool bNonBondedOnGPU);
102
103 #endif