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) 2011,2012,2013,2014,2015,2016,2017,2018,2019, 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.
39 * \brief This file declares helper functionality for legacy option handling for mdrun
41 * \author Berk Hess <hess@kth.se>
42 * \author David van der Spoel <david.vanderspoel@icm.uu.se>
43 * \author Erik Lindahl <erik@kth.se>
44 * \author Mark Abraham <mark.j.abraham@gmail.com>
46 * \ingroup module_mdrun
50 #include "legacymdrunoptions.h"
56 #include "gromacs/gmxlib/network.h"
57 #include "gromacs/math/functions.h"
58 #include "gromacs/mdrunutility/handlerestart.h"
59 #include "gromacs/mdrunutility/multisim.h"
60 #include "gromacs/mdtypes/commrec.h"
61 #include "gromacs/utility/arraysize.h"
62 #include "gromacs/utility/fatalerror.h"
67 /*! \brief Return whether the command-line parameter that
68 * will trigger a multi-simulation is set */
69 static bool is_multisim_option_set(int argc
, const char *const argv
[])
71 for (int i
= 0; i
< argc
; ++i
)
73 if (strcmp(argv
[i
], "-multidir") == 0)
81 int LegacyMdrunOptions::updateFromCommandLine(int argc
, char **argv
, ArrayRef
<const char *> desc
)
83 unsigned long PCA_Flags
= PCA_CAN_SET_DEFFNM
;
84 // With -multidir, the working directory still needs to be
85 // changed, so we can't check for the existence of files during
86 // parsing. It isn't useful to do any completion based on file
87 // system contents, either.
88 if (is_multisim_option_set(argc
, argv
))
90 PCA_Flags
|= PCA_DISABLE_INPUT_FILE_CHECKING
;
93 if (!parse_common_args(&argc
, argv
, PCA_Flags
,
94 ssize(filenames
), filenames
.data(), asize(pa
), pa
,
95 ssize(desc
), desc
.data(), 0, nullptr, &oenv
))
100 // Handle the options that permits the user to either declare
101 // which compatible GPUs are availble for use, or to select a GPU
102 // task assignment. Either could be in an environment variable (so
103 // that there is a way to customize it, when using MPI in
104 // heterogeneous contexts).
106 // TODO Argument parsing can't handle std::string. We should
107 // fix that by changing the parsing, once more of the roles of
108 // handling, validating and implementing defaults for user
109 // command-line options have been seperated.
110 hw_opt
.gpuIdsAvailable
= gpuIdsAvailable
;
111 hw_opt
.userGpuTaskAssignment
= userGpuTaskAssignment
;
113 const char *env
= getenv("GMX_GPU_ID");
116 if (!hw_opt
.gpuIdsAvailable
.empty())
118 gmx_fatal(FARGS
, "GMX_GPU_ID and -gpu_id can not be used at the same time");
120 hw_opt
.gpuIdsAvailable
= env
;
123 env
= getenv("GMX_GPUTASKS");
126 if (!hw_opt
.userGpuTaskAssignment
.empty())
128 gmx_fatal(FARGS
, "GMX_GPUTASKS and -gputasks can not be used at the same time");
130 hw_opt
.userGpuTaskAssignment
= env
;
133 if (!hw_opt
.gpuIdsAvailable
.empty() && !hw_opt
.userGpuTaskAssignment
.empty())
135 gmx_fatal(FARGS
, "-gpu_id and -gputasks cannot be used at the same time");
139 hw_opt
.threadAffinity
= static_cast<ThreadAffinity
>(nenum(thread_aff_opt_choices
));
141 // now check for a multi-simulation
142 ArrayRef
<const std::string
> multidir
= opt2fnsIfOptionSet("-multidir",
145 if (!multidir
.empty())
147 ms
= std::make_unique
<gmx_multisim_t
>(MPI_COMM_WORLD
, multidir
);
150 /* Prepare the intra-simulation communication */
151 // TODO consolidate this with init_commrec, after changing the
152 // relative ordering of init_commrec and ms initialization.
156 cr
->nnodes
= cr
->nnodes
/ ms
->nsim
;
157 MPI_Comm_split(MPI_COMM_WORLD
, ms
->sim
, cr
->sim_nodeid
, &cr
->mpi_comm_mysim
);
158 cr
->mpi_comm_mygroup
= cr
->mpi_comm_mysim
;
159 MPI_Comm_rank(cr
->mpi_comm_mysim
, &cr
->sim_nodeid
);
160 MPI_Comm_rank(cr
->mpi_comm_mygroup
, &cr
->nodeid
);
164 if (!opt2parg_bSet("-append", asize(pa
), pa
))
166 mdrunOptions
.appendingBehavior
= AppendingBehavior::Auto
;
170 if (opt2parg_bool("-append", asize(pa
), pa
))
172 mdrunOptions
.appendingBehavior
= AppendingBehavior::Appending
;
176 mdrunOptions
.appendingBehavior
= AppendingBehavior::NoAppending
;
180 mdrunOptions
.rerun
= opt2bSet("-rerun",
183 mdrunOptions
.ntompOptionIsSet
= opt2parg_bSet("-ntomp", asize(pa
), pa
);
185 domdecOptions
.rankOrder
= static_cast<DdRankOrder
>(nenum(ddrank_opt_choices
));
186 domdecOptions
.dlbOption
= static_cast<DlbOption
>(nenum(dddlb_opt_choices
));
187 domdecOptions
.numCells
[XX
] = roundToInt(realddxyz
[XX
]);
188 domdecOptions
.numCells
[YY
] = roundToInt(realddxyz
[YY
]);
189 domdecOptions
.numCells
[ZZ
] = roundToInt(realddxyz
[ZZ
]);
194 LegacyMdrunOptions::~LegacyMdrunOptions()
196 output_env_done(oenv
);