Disable instruction fusion on Power8
[gromacs.git] / src / gromacs / fileio / checkpoint.h
blob697e31c14ba8c390f9a19b2235efb86c19f50a61
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2013,2014,2015,2016,2017, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
38 #ifndef _checkpoint_h
39 #define _checkpoint_h
41 #include <cstdio>
43 #include "gromacs/math/vectypes.h"
44 #include "gromacs/utility/basedefinitions.h"
46 #ifdef __cplusplus
47 extern "C" {
48 #endif
50 class energyhistory_t;
51 struct gmx_file_position_t;
52 struct ObservablesHistory;
53 struct t_commrec;
54 struct t_fileio;
55 struct t_inputrec;
56 class t_state;
57 struct t_trxframe;
59 /* the name of the environment variable to disable fsync failure checks with */
60 #define GMX_IGNORE_FSYNC_FAILURE_ENV "GMX_IGNORE_FSYNC_FAILURE"
62 /* Write a checkpoint to <fn>.cpt
63 * Appends the _step<step>.cpt with bNumberAndKeep,
64 * otherwise moves the previous <fn>.cpt to <fn>_prev.cpt
66 void write_checkpoint(const char *fn, gmx_bool bNumberAndKeep,
67 FILE *fplog, t_commrec *cr,
68 ivec domdecCells, int nppnodes,
69 int eIntegrator, int simulation_part,
70 gmx_bool bExpanded, int elamstats,
71 gmx_int64_t step, double t,
72 t_state *state, ObservablesHistory *observablesHistory);
74 /* Loads a checkpoint from fn for run continuation.
75 * Generates a fatal error on system size mismatch.
76 * The master node reads the file
77 * and communicates all the modified number of steps,
78 * but not the state itself.
79 * When bAppend is set, lock the log file and truncate the existing output
80 * files so they can be appended.
81 * With bAppend and bForceAppend: truncate anyhow if the system does not
82 * support file locking.
83 * With reproducibilityRequested warns about version, build, #ranks differences.
85 void load_checkpoint(const char *fn, FILE **fplog,
86 const t_commrec *cr, const ivec dd_nc,
87 t_inputrec *ir, t_state *state,
88 gmx_bool *bReadEkin,
89 ObservablesHistory *observablesHistory,
90 gmx_bool bAppend, gmx_bool bForceAppend,
91 gmx_bool reproducibilityRequested);
93 /* Read the state from checkpoint file.
94 * Arrays in state that are NULL are allocated.
95 * If bReadRNG=TRUE a RNG state compatible with the current
96 * number of nodes was read.
98 void read_checkpoint_state(const char *fn, int *simulation_part,
99 gmx_int64_t *step, double *t, t_state *state);
101 /* Read everything that can be stored in t_trxframe from a checkpoint file */
102 void read_checkpoint_trxframe(struct t_fileio *fp, t_trxframe *fr);
104 /* Print the complete contents of checkpoint file fn to out */
105 void list_checkpoint(const char *fn, FILE *out);
107 /* ! \brief Read simulation step and part from a checkpoint file
109 * Used by tune_pme to handle tuning with a checkpoint file as part of the input.
111 * \param[in] filename Name of checkpoint file
112 * \param[out] simulation_part The part of the simulation that wrote the checkpoint
113 * \param[out] step The final step number of the simulation that wrote the checkpoint
115 * The output variables will both contain 0 if filename is NULL, the file
116 * does not exist, or is not readable. */
117 void read_checkpoint_part_and_step(const char *filename,
118 int *simulation_part,
119 gmx_int64_t *step);
121 /* ! \brief Read simulation part and output filenames from a checkpoint file
123 * Used by mdrun to handle restarts
125 * \param[in] fp Handle to open checkpoint file
126 * \param[out] simulation_part The part of the simulation that wrote the checkpoint
127 * \param[out] nfiles Number of output files from the previous run
128 * \param[out] outputfiles Pointer to array of output file names from the previous run. Pointer is allocated in this function.
130 void
131 read_checkpoint_simulation_part_and_filenames(struct t_fileio *fp,
132 int *simulation_part,
133 int *nfiles,
134 struct gmx_file_position_t **outputfiles);
136 #ifdef __cplusplus
138 #endif
140 #endif