Update clang-tidy to clang version 8
[gromacs.git] / src / gromacs / mdrun / legacymdrunoptions.cpp
blob5d029a4a655c95beac9b9f4cb490b59c906028d0
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) 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.
37 /*! \internal \file
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
48 #include "gmxpre.h"
50 #include "legacymdrunoptions.h"
52 #include "config.h"
54 #include <cstring>
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"
64 namespace gmx
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)
75 return true;
78 return false;
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))
97 return 0;
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");
114 if (env != nullptr)
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");
124 if (env != nullptr)
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",
143 ssize(filenames),
144 filenames.data());
146 ms = init_multisystem(MPI_COMM_WORLD, multidir);
148 /* Prepare the intra-simulation communication */
149 // TODO consolidate this with init_commrec, after changing the
150 // relative ordering of init_commrec and init_multisystem
151 #if GMX_MPI
152 if (ms != nullptr)
154 cr->nnodes = cr->nnodes / ms->nsim;
155 MPI_Comm_split(MPI_COMM_WORLD, ms->sim, cr->sim_nodeid, &cr->mpi_comm_mysim);
156 cr->mpi_comm_mygroup = cr->mpi_comm_mysim;
157 MPI_Comm_rank(cr->mpi_comm_mysim, &cr->sim_nodeid);
158 MPI_Comm_rank(cr->mpi_comm_mygroup, &cr->nodeid);
160 #endif
162 if (!opt2parg_bSet("-append", asize(pa), pa))
164 mdrunOptions.appendingBehavior = AppendingBehavior::Auto;
166 else
168 if (opt2parg_bool("-append", asize(pa), pa))
170 mdrunOptions.appendingBehavior = AppendingBehavior::Appending;
172 else
174 mdrunOptions.appendingBehavior = AppendingBehavior::NoAppending;
178 mdrunOptions.rerun = opt2bSet("-rerun",
179 ssize(filenames),
180 filenames.data());
181 mdrunOptions.ntompOptionIsSet = opt2parg_bSet("-ntomp", asize(pa), pa);
183 domdecOptions.rankOrder = static_cast<DdRankOrder>(nenum(ddrank_opt_choices));
184 domdecOptions.dlbOption = static_cast<DlbOption>(nenum(dddlb_opt_choices));
185 domdecOptions.numCells[XX] = roundToInt(realddxyz[XX]);
186 domdecOptions.numCells[YY] = roundToInt(realddxyz[YY]);
187 domdecOptions.numCells[ZZ] = roundToInt(realddxyz[ZZ]);
189 return 1;
192 LegacyMdrunOptions::~LegacyMdrunOptions()
194 if (GMX_LIB_MPI)
196 done_commrec(cr);
198 output_env_done(oenv);
199 done_multisim(ms);
202 } // namespace gmx