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