2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2018,2019, 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.
38 * Tests for the energy minimization functionality.
40 * \author Mark Abraham <mark.j.abraham@gmail.com>
41 * \ingroup module_mdrun_integration_tests
51 #include <gtest/gtest.h>
53 #include "gromacs/options/filenameoption.h"
54 #include "gromacs/topology/idef.h"
55 #include "gromacs/topology/ifunc.h"
56 #include "gromacs/trajectory/energyframe.h"
57 #include "gromacs/trajectory/trajectoryframe.h"
58 #include "gromacs/utility/basenetwork.h"
59 #include "gromacs/utility/stringutil.h"
61 #include "testutils/mpitest.h"
62 #include "testutils/refdata.h"
63 #include "testutils/simulationdatabase.h"
64 #include "testutils/testasserts.h"
66 #include "energycomparison.h"
67 #include "energyreader.h"
68 #include "moduletest.h"
77 /*! \brief Test fixture base for energy minimizaiton
79 * This test ensures mdrun can run an energy minimization, reaching
80 * a reproducible final energy.
82 * The choices for tolerance are arbitrary but sufficient. */
83 class EnergyMinimizationTest
: public MdrunTestFixture
,
84 public ::testing::WithParamInterface
<
85 std::tuple
< std::string
, std::string
>>
89 /*! \brief Database of empirical tolerances for EM integrators on the various systems. */
90 std::unordered_map
<std::string
, FloatingPointTolerance
> potentialEnergyToleranceForSystem_g
=
94 relativeToleranceAsPrecisionDependentUlp(-1, 10, 200)
98 relativeToleranceAsPrecisionDependentUlp(-50, 150, 3800)
102 relativeToleranceAsPrecisionDependentUlp(1000, 100, 100)
105 "alanine_vsite_vacuo",
106 relativeToleranceAsPrecisionDependentUlp(-160, 150, 400)
109 "glycine_no_constraints_vacuo",
110 relativeToleranceAsPrecisionDependentUlp(2000, 100, 100)
114 TEST_P(EnergyMinimizationTest
, WithinTolerances
)
116 auto params
= GetParam();
117 auto simulationName
= std::get
<0>(params
);
118 auto minimizer
= std::get
<1>(params
);
119 SCOPED_TRACE(formatString("Comparing '%s' energy minimization for simulation '%s'",
120 minimizer
.c_str(), simulationName
.c_str()));
122 // TODO At some point we should also test PME-only ranks.
123 int numRanksAvailable
= getNumberOfTestMpiRanks();
124 if (!isNumberOfPpRanksSupported(simulationName
, numRanksAvailable
))
126 fprintf(stdout
, "Test system '%s' cannot run with %d ranks.\n"
127 "The supported numbers are: %s\n",
128 simulationName
.c_str(), numRanksAvailable
,
129 reportNumbersOfPpRanksSupported(simulationName
).c_str());
133 auto mdpFieldValues
= prepareMdpFieldValues(simulationName
.c_str(),
136 mdpFieldValues
["nsteps"] = "4";
138 int maxWarningsTolerated
= (minimizer
== "l-bfgs") ? 1 : 0;
139 // prepare the .tpr file
141 // TODO evolve grompp to report the number of warnings issued, so
142 // tests always expect the right number.
144 caller
.append("grompp");
145 caller
.addOption("-maxwarn", maxWarningsTolerated
);
146 runner_
.useTopGroAndNdxFromDatabase(simulationName
);
147 runner_
.useStringAsMdpFile(prepareMdpFileContents(mdpFieldValues
));
148 EXPECT_EQ(0, runner_
.callGrompp(caller
));
151 // do mdrun, preparing to check the energies later
152 runner_
.edrFileName_
= fileManager_
.getTemporaryFilePath("minimize.edr");
154 CommandLine mdrunCaller
;
155 mdrunCaller
.append("mdrun");
156 if (minimizer
== "l-bfgs" && getNumberOfTestMpiRanks() > 1)
158 // Ideally we would use this death test, but it is not
159 // stable enough in Jenkins, so we just skip it.
160 //EXPECT_DEATH_IF_SUPPORTED(runner_.callMdrun(mdrunCaller),
161 // "L-BFGS minimization only supports a single rank");
166 ASSERT_EQ(0, runner_
.callMdrun(mdrunCaller
));
170 EnergyTermsToCompare energyTermsToCompare
173 interaction_function
[F_EPOT
].longname
, potentialEnergyToleranceForSystem_g
.at(simulationName
)
177 TestReferenceData refData
;
178 auto checker
= refData
.rootChecker()
179 .checkCompound("Simulation", simulationName
)
180 .checkCompound("Minimizer", minimizer
);
181 checkEnergiesAgainstReferenceData(runner_
.edrFileName_
,
182 energyTermsToCompare
,
186 //! Containers of systems and integrators to test.
188 std::vector
<std::string
> unconstrainedSystemsToTest_g
= { "argon12", "glycine_no_constraints_vacuo" };
189 std::vector
<std::string
> minimizersToTest_g
= { "steep", "cg", "l-bfgs" };
191 std::vector
<std::string
> constrainedSystemsToTest_g
= { "tip3p5", "glycine_vacuo", "alanine_vsite_vacuo" };
192 std::vector
<std::string
> minimizersToTestWithConstraints_g
= { "steep", "cg" };
195 // The time for OpenCL kernel compilation means these tests might time
196 // out. If that proves to be a problem, these can be disabled for
197 // OpenCL builds. However, once that compilation is cached for the
198 // lifetime of the whole test binary process, these tests should run in
199 // such configurations.
200 INSTANTIATE_TEST_CASE_P(MinimizersWorkWithConstraints
, EnergyMinimizationTest
,
201 ::testing::Combine(::testing::ValuesIn(constrainedSystemsToTest_g
),
202 ::testing::ValuesIn(minimizersToTestWithConstraints_g
)));
203 INSTANTIATE_TEST_CASE_P(MinimizersWork
, EnergyMinimizationTest
,
204 ::testing::Combine(::testing::ValuesIn(unconstrainedSystemsToTest_g
),
205 ::testing::ValuesIn(minimizersToTest_g
)));