Do not call mixed CPU+GPU PME mode "Hybrid"
[gromacs.git] / src / programs / mdrun / runner.cpp
blob58059f5c4c51a738e550130adaa9626a3edc8bcb
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, 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 Implements the MD runner routine calling all integrators.
41 * \author David van der Spoel <david.vanderspoel@icm.uu.se>
42 * \ingroup module_mdlib
44 #include "gmxpre.h"
46 #include "runner.h"
48 #include "config.h"
50 #include <cassert>
51 #include <csignal>
52 #include <cstdlib>
53 #include <cstring>
55 #include <algorithm>
57 #include "gromacs/commandline/filenm.h"
58 #include "gromacs/domdec/domdec.h"
59 #include "gromacs/domdec/domdec_struct.h"
60 #include "gromacs/ewald/ewald-utils.h"
61 #include "gromacs/ewald/pme.h"
62 #include "gromacs/fileio/checkpoint.h"
63 #include "gromacs/fileio/oenv.h"
64 #include "gromacs/fileio/tpxio.h"
65 #include "gromacs/gmxlib/network.h"
66 #include "gromacs/gpu_utils/gpu_utils.h"
67 #include "gromacs/hardware/cpuinfo.h"
68 #include "gromacs/hardware/detecthardware.h"
69 #include "gromacs/hardware/printhardware.h"
70 #include "gromacs/listed-forces/disre.h"
71 #include "gromacs/listed-forces/orires.h"
72 #include "gromacs/math/functions.h"
73 #include "gromacs/math/utilities.h"
74 #include "gromacs/math/vec.h"
75 #include "gromacs/mdlib/calc_verletbuf.h"
76 #include "gromacs/mdlib/constr.h"
77 #include "gromacs/mdlib/force.h"
78 #include "gromacs/mdlib/forcerec.h"
79 #include "gromacs/mdlib/gmx_omp_nthreads.h"
80 #include "gromacs/mdlib/integrator.h"
81 #include "gromacs/mdlib/main.h"
82 #include "gromacs/mdlib/md_support.h"
83 #include "gromacs/mdlib/mdatoms.h"
84 #include "gromacs/mdlib/mdrun.h"
85 #include "gromacs/mdlib/minimize.h"
86 #include "gromacs/mdlib/nb_verlet.h"
87 #include "gromacs/mdlib/nbnxn_gpu_data_mgmt.h"
88 #include "gromacs/mdlib/nbnxn_search.h"
89 #include "gromacs/mdlib/nbnxn_tuning.h"
90 #include "gromacs/mdlib/qmmm.h"
91 #include "gromacs/mdlib/sighandler.h"
92 #include "gromacs/mdlib/sim_util.h"
93 #include "gromacs/mdlib/tpi.h"
94 #include "gromacs/mdrunutility/mdmodules.h"
95 #include "gromacs/mdrunutility/threadaffinity.h"
96 #include "gromacs/mdtypes/commrec.h"
97 #include "gromacs/mdtypes/inputrec.h"
98 #include "gromacs/mdtypes/md_enums.h"
99 #include "gromacs/mdtypes/observableshistory.h"
100 #include "gromacs/mdtypes/state.h"
101 #include "gromacs/pbcutil/pbc.h"
102 #include "gromacs/pulling/pull.h"
103 #include "gromacs/pulling/pull_rotation.h"
104 #include "gromacs/taskassignment/decidegpuusage.h"
105 #include "gromacs/taskassignment/resourcedivision.h"
106 #include "gromacs/taskassignment/taskassignment.h"
107 #include "gromacs/taskassignment/usergpuids.h"
108 #include "gromacs/timing/wallcycle.h"
109 #include "gromacs/topology/mtop_util.h"
110 #include "gromacs/trajectory/trajectoryframe.h"
111 #include "gromacs/utility/cstringutil.h"
112 #include "gromacs/utility/exceptions.h"
113 #include "gromacs/utility/fatalerror.h"
114 #include "gromacs/utility/filestream.h"
115 #include "gromacs/utility/gmxassert.h"
116 #include "gromacs/utility/gmxmpi.h"
117 #include "gromacs/utility/logger.h"
118 #include "gromacs/utility/loggerbuilder.h"
119 #include "gromacs/utility/pleasecite.h"
120 #include "gromacs/utility/programcontext.h"
121 #include "gromacs/utility/smalloc.h"
122 #include "gromacs/utility/stringutil.h"
124 #include "deform.h"
125 #include "md.h"
126 #include "membed.h"
127 #include "repl_ex.h"
129 #ifdef GMX_FAHCORE
130 #include "corewrap.h"
131 #endif
133 //! First step used in pressure scaling
134 gmx_int64_t deform_init_init_step_tpx;
135 //! Initial box for pressure scaling
136 matrix deform_init_box_tpx;
137 //! MPI variable for use in pressure scaling
138 tMPI_Thread_mutex_t deform_init_box_mutex = TMPI_THREAD_MUTEX_INITIALIZER;
140 namespace gmx
143 void Mdrunner::reinitializeOnSpawnedThread()
145 // TODO This duplication is formally necessary if any thread might
146 // modify any memory in fnm or the pointers it contains. If the
147 // contents are ever provably const, then we can remove this
148 // allocation (and memory leak).
149 // TODO This should probably become part of a copy constructor for
150 // Mdrunner.
151 fnm = dup_tfn(nfile, fnm);
153 cr = reinitialize_commrec_for_this_thread(cr);
155 if (!MASTER(cr))
157 // Only the master rank writes to the log files
158 fplog = nullptr;
162 /*! \brief The callback used for running on spawned threads.
164 * Obtains the pointer to the master mdrunner object from the one
165 * argument permitted to the thread-launch API call, copies it to make
166 * a new runner for this thread, reinitializes necessary data, and
167 * proceeds to the simulation. */
168 static void mdrunner_start_fn(void *arg)
172 auto masterMdrunner = reinterpret_cast<const gmx::Mdrunner *>(arg);
173 /* copy the arg list to make sure that it's thread-local. This
174 doesn't copy pointed-to items, of course, but those are all
175 const. */
176 gmx::Mdrunner mdrunner = *masterMdrunner;
177 mdrunner.reinitializeOnSpawnedThread();
178 mdrunner.mdrunner();
180 GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
184 /*! \brief Start thread-MPI threads.
186 * Called by mdrunner() to start a specific number of threads
187 * (including the main thread) for thread-parallel runs. This in turn
188 * calls mdrunner() for each thread. All options are the same as for
189 * mdrunner(). */
190 t_commrec *Mdrunner::spawnThreads(int numThreadsToLaunch)
193 /* first check whether we even need to start tMPI */
194 if (numThreadsToLaunch < 2)
196 return cr;
199 gmx::Mdrunner spawnedMdrunner = *this;
200 // TODO This duplication is formally necessary if any thread might
201 // modify any memory in fnm or the pointers it contains. If the
202 // contents are ever provably const, then we can remove this
203 // allocation (and memory leak).
204 // TODO This should probably become part of a copy constructor for
205 // Mdrunner.
206 spawnedMdrunner.fnm = dup_tfn(this->nfile, fnm);
208 #if GMX_THREAD_MPI
209 /* now spawn new threads that start mdrunner_start_fn(), while
210 the main thread returns, we set thread affinity later */
211 if (tMPI_Init_fn(TRUE, numThreadsToLaunch, TMPI_AFFINITY_NONE,
212 mdrunner_start_fn, static_cast<void*>(&spawnedMdrunner)) != TMPI_SUCCESS)
214 GMX_THROW(gmx::InternalError("Failed to spawn thread-MPI threads"));
216 #else
217 GMX_UNUSED_VALUE(mdrunner_start_fn);
218 #endif
220 return reinitialize_commrec_for_this_thread(cr);
223 } // namespace
225 /*! \brief Initialize variables for Verlet scheme simulation */
226 static void prepare_verlet_scheme(FILE *fplog,
227 t_commrec *cr,
228 t_inputrec *ir,
229 int nstlist_cmdline,
230 const gmx_mtop_t *mtop,
231 const matrix box,
232 bool makeGpuPairList,
233 const gmx::CpuInfo &cpuinfo)
235 /* For NVE simulations, we will retain the initial list buffer */
236 if (EI_DYNAMICS(ir->eI) &&
237 ir->verletbuf_tol > 0 &&
238 !(EI_MD(ir->eI) && ir->etc == etcNO))
240 /* Update the Verlet buffer size for the current run setup */
242 /* Here we assume SIMD-enabled kernels are being used. But as currently
243 * calc_verlet_buffer_size gives the same results for 4x8 and 4x4
244 * and 4x2 gives a larger buffer than 4x4, this is ok.
246 ListSetupType listType = (makeGpuPairList ? ListSetupType::Gpu : ListSetupType::CpuSimdWhenSupported);
247 VerletbufListSetup listSetup = verletbufGetSafeListSetup(listType);
249 real rlist_new;
250 calc_verlet_buffer_size(mtop, det(box), ir, ir->nstlist, ir->nstlist - 1, -1, &listSetup, nullptr, &rlist_new);
252 if (rlist_new != ir->rlist)
254 if (fplog != nullptr)
256 fprintf(fplog, "\nChanging rlist from %g to %g for non-bonded %dx%d atom kernels\n\n",
257 ir->rlist, rlist_new,
258 listSetup.cluster_size_i, listSetup.cluster_size_j);
260 ir->rlist = rlist_new;
264 if (nstlist_cmdline > 0 && (!EI_DYNAMICS(ir->eI) || ir->verletbuf_tol <= 0))
266 gmx_fatal(FARGS, "Can not set nstlist without %s",
267 !EI_DYNAMICS(ir->eI) ? "dynamics" : "verlet-buffer-tolerance");
270 if (EI_DYNAMICS(ir->eI))
272 /* Set or try nstlist values */
273 increaseNstlist(fplog, cr, ir, nstlist_cmdline, mtop, box, makeGpuPairList, cpuinfo);
277 /*! \brief Override the nslist value in inputrec
279 * with value passed on the command line (if any)
281 static void override_nsteps_cmdline(const gmx::MDLogger &mdlog,
282 gmx_int64_t nsteps_cmdline,
283 t_inputrec *ir)
285 assert(ir);
287 /* override with anything else than the default -2 */
288 if (nsteps_cmdline > -2)
290 char sbuf_steps[STEPSTRSIZE];
291 char sbuf_msg[STRLEN];
293 ir->nsteps = nsteps_cmdline;
294 if (EI_DYNAMICS(ir->eI) && nsteps_cmdline != -1)
296 sprintf(sbuf_msg, "Overriding nsteps with value passed on the command line: %s steps, %.3g ps",
297 gmx_step_str(nsteps_cmdline, sbuf_steps),
298 fabs(nsteps_cmdline*ir->delta_t));
300 else
302 sprintf(sbuf_msg, "Overriding nsteps with value passed on the command line: %s steps",
303 gmx_step_str(nsteps_cmdline, sbuf_steps));
306 GMX_LOG(mdlog.warning).asParagraph().appendText(sbuf_msg);
308 else if (nsteps_cmdline < -2)
310 gmx_fatal(FARGS, "Invalid nsteps value passed on the command line: %d",
311 nsteps_cmdline);
313 /* Do nothing if nsteps_cmdline == -2 */
316 namespace gmx
319 /*! \brief Return whether GPU acceleration of nonbondeds is useful with the given settings.
321 * If not, logs a message about falling back to CPU code. */
322 static bool gpuAccelerationOfNonbondedIsUseful(const MDLogger &mdlog,
323 const t_inputrec *ir,
324 bool doRerun)
326 if (doRerun && ir->opts.ngener > 1)
328 /* Rerun execution time is dominated by I/O and pair search,
329 * so GPUs are not very useful, plus they do not support more
330 * than one energy group. If the user requested GPUs
331 * explicitly, a fatal error is given later. With non-reruns,
332 * we fall back to a single whole-of system energy group
333 * (which runs much faster than a multiple-energy-groups
334 * implementation would), and issue a note in the .log
335 * file. Users can re-run if they want the information. */
336 GMX_LOG(mdlog.warning).asParagraph().appendText("Multiple energy groups is not implemented for GPUs, so is not useful for this rerun, so falling back to the CPU");
337 return false;
340 return true;
343 //! \brief Return the correct integrator function.
344 static integrator_t *my_integrator(unsigned int ei)
346 switch (ei)
348 case eiMD:
349 case eiBD:
350 case eiSD1:
351 case eiVV:
352 case eiVVAK:
353 if (!EI_DYNAMICS(ei))
355 GMX_THROW(APIError("do_md integrator would be called for a non-dynamical integrator"));
357 return do_md;
358 case eiSteep:
359 return do_steep;
360 case eiCG:
361 return do_cg;
362 case eiNM:
363 return do_nm;
364 case eiLBFGS:
365 return do_lbfgs;
366 case eiTPI:
367 case eiTPIC:
368 if (!EI_TPI(ei))
370 GMX_THROW(APIError("do_tpi integrator would be called for a non-TPI integrator"));
372 return do_tpi;
373 case eiSD2_REMOVED:
374 GMX_THROW(NotImplementedError("SD2 integrator has been removed"));
375 default:
376 GMX_THROW(APIError("Non existing integrator selected"));
380 //! Initializes the logger for mdrun.
381 static gmx::LoggerOwner buildLogger(FILE *fplog, const t_commrec *cr)
383 gmx::LoggerBuilder builder;
384 if (fplog != nullptr)
386 builder.addTargetFile(gmx::MDLogger::LogLevel::Info, fplog);
388 if (cr == nullptr || SIMMASTER(cr))
390 builder.addTargetStream(gmx::MDLogger::LogLevel::Warning,
391 &gmx::TextOutputFile::standardError());
393 return builder.build();
396 //! Make a TaskTarget from an mdrun argument string.
397 static TaskTarget findTaskTarget(const char *optionString)
399 TaskTarget returnValue = TaskTarget::Auto;
401 if (strncmp(optionString, "auto", 3) == 0)
403 returnValue = TaskTarget::Auto;
405 else if (strncmp(optionString, "cpu", 3) == 0)
407 returnValue = TaskTarget::Cpu;
409 else if (strncmp(optionString, "gpu", 3) == 0)
411 returnValue = TaskTarget::Gpu;
413 else
415 GMX_ASSERT(false, "Option string should have been checked for sanity already");
418 return returnValue;
421 int Mdrunner::mdrunner()
423 matrix box;
424 gmx_ddbox_t ddbox = {0};
425 int npme_major, npme_minor;
426 t_nrnb *nrnb;
427 gmx_mtop_t *mtop = nullptr;
428 t_forcerec *fr = nullptr;
429 t_fcdata *fcd = nullptr;
430 real ewaldcoeff_q = 0;
431 real ewaldcoeff_lj = 0;
432 gmx_vsite_t *vsite = nullptr;
433 gmx_constr_t constr;
434 int nChargePerturbed = -1, nTypePerturbed = 0;
435 gmx_wallcycle_t wcycle;
436 gmx_walltime_accounting_t walltime_accounting = nullptr;
437 int rc;
438 gmx_int64_t reset_counters;
439 int nthreads_pme = 1;
440 gmx_membed_t * membed = nullptr;
441 gmx_hw_info_t *hwinfo = nullptr;
443 /* CAUTION: threads may be started later on in this function, so
444 cr doesn't reflect the final parallel state right now */
445 gmx::MDModules mdModules;
446 t_inputrec inputrecInstance;
447 t_inputrec *inputrec = &inputrecInstance;
448 snew(mtop, 1);
450 if (mdrunOptions.continuationOptions.appendFiles)
452 fplog = nullptr;
455 bool doMembed = opt2bSet("-membed", nfile, fnm);
456 bool doRerun = mdrunOptions.rerun;
458 // Handle task-assignment related user options.
459 EmulateGpuNonbonded emulateGpuNonbonded = (getenv("GMX_EMULATE_GPU") != nullptr ?
460 EmulateGpuNonbonded::Yes : EmulateGpuNonbonded::No);
461 std::vector<int> gpuIdsAvailable;
464 gpuIdsAvailable = parseUserGpuIds(hw_opt.gpuIdsAvailable);
465 // TODO We could put the GPU IDs into a std::map to find
466 // duplicates, but for the small numbers of IDs involved, this
467 // code is simple and fast.
468 for (size_t i = 0; i != gpuIdsAvailable.size(); ++i)
470 for (size_t j = i+1; j != gpuIdsAvailable.size(); ++j)
472 if (gpuIdsAvailable[i] == gpuIdsAvailable[j])
474 GMX_THROW(InvalidInputError(formatString("The string of available GPU device IDs '%s' may not contain duplicate device IDs", hw_opt.gpuIdsAvailable.c_str())));
479 GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
481 std::vector<int> userGpuTaskAssignment;
484 userGpuTaskAssignment = parseUserGpuIds(hw_opt.userGpuTaskAssignment);
486 GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
487 auto nonbondedTarget = findTaskTarget(nbpu_opt);
488 auto pmeTarget = findTaskTarget(pme_opt);
489 auto pmeFftTarget = findTaskTarget(pme_fft_opt);
490 PmeRunMode pmeRunMode = PmeRunMode::None;
492 // Here we assume that SIMMASTER(cr) does not change even after the
493 // threads are started.
494 gmx::LoggerOwner logOwner(buildLogger(fplog, cr));
495 gmx::MDLogger mdlog(logOwner.logger());
497 hwinfo = gmx_detect_hardware(mdlog, cr);
499 gmx_print_detected_hardware(fplog, cr, mdlog, hwinfo);
501 std::vector<int> gpuIdsToUse;
502 auto compatibleGpus = getCompatibleGpus(hwinfo->gpu_info);
503 if (gpuIdsAvailable.empty())
505 gpuIdsToUse = compatibleGpus;
507 else
509 for (const auto &availableGpuId : gpuIdsAvailable)
511 bool availableGpuIsCompatible = false;
512 for (const auto &compatibleGpuId : compatibleGpus)
514 if (availableGpuId == compatibleGpuId)
516 availableGpuIsCompatible = true;
517 break;
520 if (!availableGpuIsCompatible)
522 gmx_fatal(FARGS, "You limited the set of compatible GPUs to a set that included ID #%d, but that ID is not for a compatible GPU. List only compatible GPUs.", availableGpuId);
524 gpuIdsToUse.push_back(availableGpuId);
528 if (fplog != nullptr)
530 /* Print references after all software/hardware printing */
531 please_cite(fplog, "Abraham2015");
532 please_cite(fplog, "Pall2015");
533 please_cite(fplog, "Pronk2013");
534 please_cite(fplog, "Hess2008b");
535 please_cite(fplog, "Spoel2005a");
536 please_cite(fplog, "Lindahl2001a");
537 please_cite(fplog, "Berendsen95a");
540 std::unique_ptr<t_state> globalState;
542 if (SIMMASTER(cr))
544 /* Only the master rank has the global state */
545 globalState = std::unique_ptr<t_state>(new t_state);
547 /* Read (nearly) all data required for the simulation */
548 read_tpx_state(ftp2fn(efTPR, nfile, fnm), inputrec, globalState.get(), mtop);
550 if (inputrec->cutoff_scheme != ecutsVERLET)
552 if (nstlist_cmdline > 0)
554 gmx_fatal(FARGS, "Can not set nstlist with the group cut-off scheme");
557 if (!compatibleGpus.empty())
559 GMX_LOG(mdlog.warning).asParagraph().appendText(
560 "NOTE: GPU(s) found, but the current simulation can not use GPUs\n"
561 " To use a GPU, set the mdp option: cutoff-scheme = Verlet");
566 /* Check and update the hardware options for internal consistency */
567 check_and_update_hw_opt_1(&hw_opt, cr, domdecOptions.numPmeRanks);
569 /* Early check for externally set process affinity. */
570 gmx_check_thread_affinity_set(mdlog, cr,
571 &hw_opt, hwinfo->nthreads_hw_avail, FALSE);
573 if (GMX_THREAD_MPI && SIMMASTER(cr))
575 if (domdecOptions.numPmeRanks > 0 && hw_opt.nthreads_tmpi <= 0)
577 gmx_fatal(FARGS, "You need to explicitly specify the number of MPI threads (-ntmpi) when using separate PME ranks");
580 /* Since the master knows the cut-off scheme, update hw_opt for this.
581 * This is done later for normal MPI and also once more with tMPI
582 * for all tMPI ranks.
584 check_and_update_hw_opt_2(&hw_opt, inputrec->cutoff_scheme);
586 bool useGpuForNonbonded = false;
587 bool useGpuForPme = false;
590 // If the user specified the number of ranks, then we must
591 // respect that, but in default mode, we need to allow for
592 // the number of GPUs to choose the number of ranks.
594 useGpuForNonbonded = decideWhetherToUseGpusForNonbondedWithThreadMpi
595 (nonbondedTarget, gpuIdsToUse, userGpuTaskAssignment, emulateGpuNonbonded,
596 inputrec->cutoff_scheme == ecutsVERLET,
597 gpuAccelerationOfNonbondedIsUseful(mdlog, inputrec, doRerun),
598 hw_opt.nthreads_tmpi);
599 auto inputSystemHasPme = EEL_PME(inputrec->coulombtype) || EVDW_PME(inputrec->vdwtype);
600 auto canUseGpuForPme = inputSystemHasPme && pme_gpu_supports_input(inputrec, nullptr);
601 useGpuForPme = decideWhetherToUseGpusForPmeWithThreadMpi
602 (useGpuForNonbonded, pmeTarget, gpuIdsToUse, userGpuTaskAssignment,
603 canUseGpuForPme, hw_opt.nthreads_tmpi);
605 GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
606 /* Determine how many thread-MPI ranks to start.
608 * TODO Over-writing the user-supplied value here does
609 * prevent any possible subsequent checks from working
610 * correctly. */
611 hw_opt.nthreads_tmpi = get_nthreads_mpi(hwinfo,
612 &hw_opt,
613 gpuIdsToUse,
614 useGpuForNonbonded,
615 useGpuForPme,
616 inputrec, mtop,
617 mdlog,
618 doMembed);
620 // Now start the threads for thread MPI.
621 cr = spawnThreads(hw_opt.nthreads_tmpi);
622 /* The main thread continues here with a new cr. We don't deallocate
623 the old cr because other threads may still be reading it. */
624 // TODO Both master and spawned threads call dup_tfn and
625 // reinitialize_commrec_for_this_thread. Find a way to express
626 // this better.
628 /* END OF CAUTION: cr is now reliable */
630 if (PAR(cr))
632 /* now broadcast everything to the non-master nodes/threads: */
633 init_parallel(cr, inputrec, mtop);
636 // Now each rank knows the inputrec that SIMMASTER read and used,
637 // and (if applicable) cr->nnodes has been assigned the number of
638 // thread-MPI ranks that have been chosen. The ranks can now all
639 // run the task-deciding functions and will agree on the result
640 // without needing to communicate.
642 // TODO Should we do the communication in debug mode to support
643 // having an assertion?
645 // Note that these variables describe only their own node.
646 bool useGpuForNonbonded = false;
647 bool useGpuForPme = false;
650 useGpuForNonbonded = decideWhetherToUseGpusForNonbonded(nonbondedTarget, gpuIdsToUse, userGpuTaskAssignment,
651 emulateGpuNonbonded, inputrec->cutoff_scheme == ecutsVERLET,
652 gpuAccelerationOfNonbondedIsUseful(mdlog, inputrec, doRerun));
653 auto inputSystemHasPme = EEL_PME(inputrec->coulombtype) || EVDW_PME(inputrec->vdwtype);
654 auto canUseGpuForPme = inputSystemHasPme && pme_gpu_supports_input(inputrec, nullptr);
655 useGpuForPme = decideWhetherToUseGpusForPme(useGpuForNonbonded, pmeTarget, userGpuTaskAssignment, canUseGpuForPme, cr->nnodes);
656 pmeRunMode = (useGpuForPme ? PmeRunMode::GPU : PmeRunMode::CPU);
657 if ((pmeRunMode == PmeRunMode::GPU) && (pmeFftTarget == TaskTarget::Cpu))
659 pmeRunMode = PmeRunMode::Mixed;
662 GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
664 // TODO: Error handling
665 mdModules.assignOptionsToModules(*inputrec->params, nullptr);
667 if (fplog != nullptr)
669 pr_inputrec(fplog, 0, "Input Parameters", inputrec, FALSE);
670 fprintf(fplog, "\n");
673 if (SIMMASTER(cr))
675 /* now make sure the state is initialized and propagated */
676 set_state_entries(globalState.get(), inputrec);
679 /* NM and TPI parallelize over force/energy calculations, not atoms,
680 * so we need to initialize and broadcast the global state.
682 if (inputrec->eI == eiNM || inputrec->eI == eiTPI)
684 if (!MASTER(cr))
686 globalState = std::unique_ptr<t_state>(new t_state);
688 broadcastStateWithoutDynamics(cr, globalState.get());
691 /* A parallel command line option consistency check that we can
692 only do after any threads have started. */
693 if (!PAR(cr) && (domdecOptions.numCells[XX] > 1 ||
694 domdecOptions.numCells[YY] > 1 ||
695 domdecOptions.numCells[ZZ] > 1 ||
696 domdecOptions.numPmeRanks > 0))
698 gmx_fatal(FARGS,
699 "The -dd or -npme option request a parallel simulation, "
700 #if !GMX_MPI
701 "but %s was compiled without threads or MPI enabled"
702 #else
703 #if GMX_THREAD_MPI
704 "but the number of MPI-threads (option -ntmpi) is not set or is 1"
705 #else
706 "but %s was not started through mpirun/mpiexec or only one rank was requested through mpirun/mpiexec"
707 #endif
708 #endif
709 , output_env_get_program_display_name(oenv)
713 if (doRerun &&
714 (EI_ENERGY_MINIMIZATION(inputrec->eI) || eiNM == inputrec->eI))
716 gmx_fatal(FARGS, "The .mdp file specified an energy mininization or normal mode algorithm, and these are not compatible with mdrun -rerun");
719 if (can_use_allvsall(inputrec, TRUE, cr, fplog) && DOMAINDECOMP(cr))
721 gmx_fatal(FARGS, "All-vs-all loops do not work with domain decomposition, use a single MPI rank");
724 if (!(EEL_PME(inputrec->coulombtype) || EVDW_PME(inputrec->vdwtype)))
726 if (domdecOptions.numPmeRanks > 0)
728 gmx_fatal_collective(FARGS, cr->mpi_comm_mysim, MASTER(cr),
729 "PME-only ranks are requested, but the system does not use PME for electrostatics or LJ");
732 domdecOptions.numPmeRanks = 0;
735 if (useGpuForNonbonded && domdecOptions.numPmeRanks < 0)
737 /* With GPUs we don't automatically use PME-only ranks. PME ranks can
738 * improve performance with many threads per GPU, since our OpenMP
739 * scaling is bad, but it's difficult to automate the setup.
741 domdecOptions.numPmeRanks = 0;
743 if (useGpuForPme)
745 if (domdecOptions.numPmeRanks < 0)
747 domdecOptions.numPmeRanks = 0; // separate GPU ranks not supported
749 else
751 GMX_RELEASE_ASSERT(domdecOptions.numPmeRanks == 0, "Separate PME GPU ranks are not yet supported");
755 #ifdef GMX_FAHCORE
756 if (MASTER(cr))
758 fcRegisterSteps(inputrec->nsteps, inputrec->init_step);
760 #endif
762 /* NMR restraints must be initialized before load_checkpoint,
763 * since with time averaging the history is added to t_state.
764 * For proper consistency check we therefore need to extend
765 * t_state here.
766 * So the PME-only nodes (if present) will also initialize
767 * the distance restraints.
769 snew(fcd, 1);
771 /* This needs to be called before read_checkpoint to extend the state */
772 init_disres(fplog, mtop, inputrec, cr, fcd, globalState.get(), replExParams.exchangeInterval > 0);
774 init_orires(fplog, mtop, inputrec, cr, globalState.get(), &(fcd->orires));
776 if (inputrecDeform(inputrec))
778 /* Store the deform reference box before reading the checkpoint */
779 if (SIMMASTER(cr))
781 copy_mat(globalState->box, box);
783 if (PAR(cr))
785 gmx_bcast(sizeof(box), box, cr);
787 /* Because we do not have the update struct available yet
788 * in which the reference values should be stored,
789 * we store them temporarily in static variables.
790 * This should be thread safe, since they are only written once
791 * and with identical values.
793 tMPI_Thread_mutex_lock(&deform_init_box_mutex);
794 deform_init_init_step_tpx = inputrec->init_step;
795 copy_mat(box, deform_init_box_tpx);
796 tMPI_Thread_mutex_unlock(&deform_init_box_mutex);
799 ObservablesHistory observablesHistory = {};
801 ContinuationOptions &continuationOptions = mdrunOptions.continuationOptions;
803 if (continuationOptions.startedFromCheckpoint)
805 /* Check if checkpoint file exists before doing continuation.
806 * This way we can use identical input options for the first and subsequent runs...
808 gmx_bool bReadEkin;
810 load_checkpoint(opt2fn_master("-cpi", nfile, fnm, cr), &fplog,
811 cr, domdecOptions.numCells,
812 inputrec, globalState.get(),
813 &bReadEkin, &observablesHistory,
814 continuationOptions.appendFiles,
815 continuationOptions.appendFilesOptionSet,
816 mdrunOptions.reproducible);
818 if (bReadEkin)
820 continuationOptions.haveReadEkin = true;
824 if (SIMMASTER(cr) && continuationOptions.appendFiles)
826 gmx_log_open(ftp2fn(efLOG, nfile, fnm), cr,
827 continuationOptions.appendFiles, &fplog);
828 logOwner = buildLogger(fplog, nullptr);
829 mdlog = logOwner.logger();
832 /* override nsteps with value set on the commamdline */
833 override_nsteps_cmdline(mdlog, mdrunOptions.numStepsCommandline, inputrec);
835 if (SIMMASTER(cr))
837 copy_mat(globalState->box, box);
840 if (PAR(cr))
842 gmx_bcast(sizeof(box), box, cr);
845 /* Update rlist and nstlist. */
846 if (inputrec->cutoff_scheme == ecutsVERLET)
848 prepare_verlet_scheme(fplog, cr, inputrec, nstlist_cmdline, mtop, box,
849 useGpuForNonbonded || (emulateGpuNonbonded == EmulateGpuNonbonded::Yes), *hwinfo->cpuInfo);
852 if (PAR(cr) && !(EI_TPI(inputrec->eI) ||
853 inputrec->eI == eiNM))
855 const rvec *xOnMaster = (SIMMASTER(cr) ? as_rvec_array(globalState->x.data()) : nullptr);
857 cr->dd = init_domain_decomposition(fplog, cr, domdecOptions, mdrunOptions,
858 mtop, inputrec,
859 box, xOnMaster,
860 &ddbox, &npme_major, &npme_minor);
861 // Note that local state still does not exist yet.
863 else
865 /* PME, if used, is done on all nodes with 1D decomposition */
866 cr->npmenodes = 0;
867 cr->duty = (DUTY_PP | DUTY_PME);
868 npme_major = 1;
869 npme_minor = 1;
871 if (inputrec->ePBC == epbcSCREW)
873 gmx_fatal(FARGS,
874 "pbc=%s is only implemented with domain decomposition",
875 epbc_names[inputrec->ePBC]);
879 if (PAR(cr))
881 /* After possible communicator splitting in make_dd_communicators.
882 * we can set up the intra/inter node communication.
884 gmx_setup_nodecomm(fplog, cr);
887 /* Initialize per-physical-node MPI process/thread ID and counters. */
888 gmx_init_intranode_counters(cr);
889 #if GMX_MPI
890 if (MULTISIM(cr))
892 GMX_LOG(mdlog.warning).asParagraph().appendTextFormatted(
893 "This is simulation %d out of %d running as a composite GROMACS\n"
894 "multi-simulation job. Setup for this simulation:\n",
895 cr->ms->sim, cr->ms->nsim);
897 GMX_LOG(mdlog.warning).appendTextFormatted(
898 "Using %d MPI %s\n",
899 cr->nnodes,
900 #if GMX_THREAD_MPI
901 cr->nnodes == 1 ? "thread" : "threads"
902 #else
903 cr->nnodes == 1 ? "process" : "processes"
904 #endif
906 fflush(stderr);
907 #endif
909 /* Check and update hw_opt for the cut-off scheme */
910 check_and_update_hw_opt_2(&hw_opt, inputrec->cutoff_scheme);
912 /* Check and update the number of OpenMP threads requested */
913 checkAndUpdateRequestedNumOpenmpThreads(&hw_opt, *hwinfo, cr, pmeRunMode, *mtop);
915 gmx_omp_nthreads_init(mdlog, cr,
916 hwinfo->nthreads_hw_avail,
917 hw_opt.nthreads_omp,
918 hw_opt.nthreads_omp_pme,
919 !thisRankHasDuty(cr, DUTY_PP),
920 inputrec->cutoff_scheme == ecutsVERLET);
922 #ifndef NDEBUG
923 if (EI_TPI(inputrec->eI) &&
924 inputrec->cutoff_scheme == ecutsVERLET)
926 gmx_feenableexcept();
928 #endif
930 // Build a data structure that expresses which kinds of non-bonded
931 // task are handled by this rank.
933 // TODO Later, this might become a loop over all registered modules
934 // relevant to the mdp inputs, to find those that have such tasks.
936 // TODO This could move before init_domain_decomposition() as part
937 // of refactoring that separates the responsibility for duty
938 // assignment from setup for communication between tasks, and
939 // setup for tasks handled with a domain (ie including short-ranged
940 // tasks, bonded tasks, etc.).
942 // Note that in general useGpuForNonbonded, etc. can have a value
943 // that is inconsistent with the presence of actual GPUs on any
944 // rank, and that is not known to be a problem until the
945 // duty of the ranks on a node become node.
947 // TODO Later we might need the concept of computeTasksOnThisRank,
948 // from which we construct gpuTasksOnThisRank.
950 // Currently the DD code assigns duty to ranks that can
951 // include PP work that currently can be executed on a single
952 // GPU, if present and compatible. This has to be coordinated
953 // across PP ranks on a node, with possible multiple devices
954 // or sharing devices on a node, either from the user
955 // selection, or automatically.
956 auto haveGpus = !gpuIdsToUse.empty();
957 std::vector<GpuTask> gpuTasksOnThisRank;
958 if (thisRankHasDuty(cr, DUTY_PP))
960 if (useGpuForNonbonded)
962 if (haveGpus)
964 gpuTasksOnThisRank.push_back(GpuTask::Nonbonded);
966 else if (nonbondedTarget == TaskTarget::Gpu)
968 gmx_fatal(FARGS, "Cannot run short-ranged nonbonded interactions on a GPU because there is none detected.");
972 // TODO cr->duty & DUTY_PME should imply that a PME algorithm is active, but currently does not.
973 if (EEL_PME(inputrec->coulombtype) && (thisRankHasDuty(cr, DUTY_PME)))
975 if (useGpuForPme)
977 if (haveGpus)
979 gpuTasksOnThisRank.push_back(GpuTask::Pme);
981 else if (pmeTarget == TaskTarget::Gpu)
983 gmx_fatal(FARGS, "Cannot run PME on a GPU because there is none detected.");
988 GpuTaskAssignment gpuTaskAssignment;
991 // Produce the task assignment for this rank.
992 gpuTaskAssignment = runTaskAssignment(gpuIdsToUse, userGpuTaskAssignment, *hwinfo,
993 mdlog, cr, gpuTasksOnThisRank);
995 GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
997 /* Prevent other ranks from continuing after an issue was found
998 * and reported as a fatal error.
1000 * TODO This function implements a barrier so that MPI runtimes
1001 * can organize an orderly shutdown if one of the ranks has had to
1002 * issue a fatal error in various code already run. When we have
1003 * MPI-aware error handling and reporting, this should be
1004 * improved. */
1005 #if GMX_MPI
1006 if (PAR(cr))
1008 MPI_Barrier(cr->mpi_comm_mysim);
1010 if (MULTISIM(cr))
1012 MPI_Barrier(cr->ms->mpi_comm_masters);
1014 #endif
1016 /* Now that we know the setup is consistent, check for efficiency */
1017 check_resource_division_efficiency(hwinfo, hw_opt.nthreads_tot, !gpuTaskAssignment.empty(), mdrunOptions.ntompOptionIsSet,
1018 cr, mdlog);
1020 gmx_device_info_t *nonbondedDeviceInfo = nullptr;
1022 if (thisRankHasDuty(cr, DUTY_PP))
1024 // This works because only one task of each type is currently permitted.
1025 auto nbGpuTaskMapping = std::find_if(gpuTaskAssignment.begin(), gpuTaskAssignment.end(),
1026 hasTaskType<GpuTask::Nonbonded>);
1027 if (nbGpuTaskMapping != gpuTaskAssignment.end())
1029 int nonbondedDeviceId = nbGpuTaskMapping->deviceId_;
1030 nonbondedDeviceInfo = getDeviceInfo(hwinfo->gpu_info, nonbondedDeviceId);
1031 init_gpu(mdlog, nonbondedDeviceInfo);
1033 if (DOMAINDECOMP(cr))
1035 /* When we share GPUs over ranks, we need to know this for the DLB */
1036 dd_setup_dlb_resource_sharing(cr, nonbondedDeviceId);
1042 gmx_device_info_t *pmeDeviceInfo = nullptr;
1043 // This works because only one task of each type is currently permitted.
1044 auto pmeGpuTaskMapping = std::find_if(gpuTaskAssignment.begin(), gpuTaskAssignment.end(), hasTaskType<GpuTask::Pme>);
1045 if (pmeGpuTaskMapping != gpuTaskAssignment.end())
1047 pmeDeviceInfo = getDeviceInfo(hwinfo->gpu_info, pmeGpuTaskMapping->deviceId_);
1050 /* getting number of PP/PME threads
1051 PME: env variable should be read only on one node to make sure it is
1052 identical everywhere;
1054 nthreads_pme = gmx_omp_nthreads_get(emntPME);
1056 wcycle = wallcycle_init(fplog, mdrunOptions.timingOptions.resetStep, cr);
1058 if (PAR(cr))
1060 /* Master synchronizes its value of reset_counters with all nodes
1061 * including PME only nodes */
1062 reset_counters = wcycle_get_reset_counters(wcycle);
1063 gmx_bcast_sim(sizeof(reset_counters), &reset_counters, cr);
1064 wcycle_set_reset_counters(wcycle, reset_counters);
1067 // Membrane embedding must be initialized before we call init_forcerec()
1068 if (doMembed)
1070 if (MASTER(cr))
1072 fprintf(stderr, "Initializing membed");
1074 /* Note that membed cannot work in parallel because mtop is
1075 * changed here. Fix this if we ever want to make it run with
1076 * multiple ranks. */
1077 membed = init_membed(fplog, nfile, fnm, mtop, inputrec, globalState.get(), cr, &mdrunOptions.checkpointOptions.period);
1080 std::unique_ptr<MDAtoms> mdAtoms;
1082 snew(nrnb, 1);
1083 if (thisRankHasDuty(cr, DUTY_PP))
1085 /* Initiate forcerecord */
1086 fr = mk_forcerec();
1087 fr->forceProviders = mdModules.initForceProviders();
1088 init_forcerec(fplog, mdlog, fr, fcd,
1089 inputrec, mtop, cr, box,
1090 opt2fn("-table", nfile, fnm),
1091 opt2fn("-tablep", nfile, fnm),
1092 getFilenm("-tableb", nfile, fnm),
1093 nonbondedDeviceInfo,
1094 FALSE,
1095 pforce);
1097 /* Initialize QM-MM */
1098 if (fr->bQMMM)
1100 init_QMMMrec(cr, mtop, inputrec, fr);
1103 /* Initialize the mdAtoms structure.
1104 * mdAtoms is not filled with atom data,
1105 * as this can not be done now with domain decomposition.
1107 const bool useGpuForPme = (pmeRunMode == PmeRunMode::GPU) || (pmeRunMode == PmeRunMode::Mixed);
1108 mdAtoms = makeMDAtoms(fplog, *mtop, *inputrec, useGpuForPme && thisRankHasDuty(cr, DUTY_PME));
1109 if (globalState)
1111 // The pinning of coordinates in the global state object works, because we only use
1112 // PME on GPU without DD or on a separate PME rank, and because the local state pointer
1113 // points to the global state object without DD.
1114 // FIXME: MD and EM separately set up the local state - this should happen in the same function,
1115 // which should also perform the pinning.
1116 changePinningPolicy(&globalState->x, useGpuForPme ? PinningPolicy::CanBePinned : PinningPolicy::CannotBePinned);
1119 /* Initialize the virtual site communication */
1120 vsite = initVsite(*mtop, cr);
1122 calc_shifts(box, fr->shift_vec);
1124 /* With periodic molecules the charge groups should be whole at start up
1125 * and the virtual sites should not be far from their proper positions.
1127 if (!inputrec->bContinuation && MASTER(cr) &&
1128 !(inputrec->ePBC != epbcNONE && inputrec->bPeriodicMols))
1130 /* Make molecules whole at start of run */
1131 if (fr->ePBC != epbcNONE)
1133 rvec *xGlobal = as_rvec_array(globalState->x.data());
1134 do_pbc_first_mtop(fplog, inputrec->ePBC, box, mtop, xGlobal);
1136 if (vsite)
1138 /* Correct initial vsite positions are required
1139 * for the initial distribution in the domain decomposition
1140 * and for the initial shell prediction.
1142 constructVsitesGlobal(*mtop, globalState->x);
1146 if (EEL_PME(fr->ic->eeltype) || EVDW_PME(fr->ic->vdwtype))
1148 ewaldcoeff_q = fr->ic->ewaldcoeff_q;
1149 ewaldcoeff_lj = fr->ic->ewaldcoeff_lj;
1152 else
1154 /* This is a PME only node */
1156 GMX_ASSERT(globalState == nullptr, "We don't need the state on a PME only rank and expect it to be unitialized");
1158 ewaldcoeff_q = calc_ewaldcoeff_q(inputrec->rcoulomb, inputrec->ewald_rtol);
1159 ewaldcoeff_lj = calc_ewaldcoeff_lj(inputrec->rvdw, inputrec->ewald_rtol_lj);
1162 gmx_pme_t *sepPmeData = nullptr;
1163 // This reference hides the fact that PME data is owned by runner on PME-only ranks and by forcerec on other ranks
1164 GMX_ASSERT(thisRankHasDuty(cr, DUTY_PP) == (fr != nullptr), "Double-checking that only PME-only ranks have no forcerec");
1165 gmx_pme_t * &pmedata = fr ? fr->pmedata : sepPmeData;
1167 if (hw_opt.thread_affinity != threadaffOFF)
1169 /* Before setting affinity, check whether the affinity has changed
1170 * - which indicates that probably the OpenMP library has changed it
1171 * since we first checked).
1173 gmx_check_thread_affinity_set(mdlog, cr,
1174 &hw_opt, hwinfo->nthreads_hw_avail, TRUE);
1176 int nthread_local;
1177 /* threads on this MPI process or TMPI thread */
1178 if (thisRankHasDuty(cr, DUTY_PP))
1180 nthread_local = gmx_omp_nthreads_get(emntNonbonded);
1182 else
1184 nthread_local = gmx_omp_nthreads_get(emntPME);
1187 /* Set the CPU affinity */
1188 gmx_set_thread_affinity(mdlog, cr, &hw_opt, *hwinfo->hardwareTopology,
1189 nthread_local, nullptr);
1192 /* Initiate PME if necessary,
1193 * either on all nodes or on dedicated PME nodes only. */
1194 if (EEL_PME(inputrec->coulombtype) || EVDW_PME(inputrec->vdwtype))
1196 if (mdAtoms && mdAtoms->mdatoms())
1198 nChargePerturbed = mdAtoms->mdatoms()->nChargePerturbed;
1199 if (EVDW_PME(inputrec->vdwtype))
1201 nTypePerturbed = mdAtoms->mdatoms()->nTypePerturbed;
1204 if (cr->npmenodes > 0)
1206 /* The PME only nodes need to know nChargePerturbed(FEP on Q) and nTypePerturbed(FEP on LJ)*/
1207 gmx_bcast_sim(sizeof(nChargePerturbed), &nChargePerturbed, cr);
1208 gmx_bcast_sim(sizeof(nTypePerturbed), &nTypePerturbed, cr);
1211 if (thisRankHasDuty(cr, DUTY_PME))
1215 if (pmeDeviceInfo != nullptr && pmeDeviceInfo != nonbondedDeviceInfo)
1217 GMX_THROW(NotImplementedError
1218 ("PME on a GPU can run only on the same GPU as nonbonded, because "
1219 "context switching is not yet supported."));
1221 pmedata = gmx_pme_init(cr, npme_major, npme_minor, inputrec,
1222 mtop ? mtop->natoms : 0, nChargePerturbed, nTypePerturbed,
1223 mdrunOptions.reproducible,
1224 ewaldcoeff_q, ewaldcoeff_lj,
1225 nthreads_pme,
1226 pmeRunMode, nullptr, pmeDeviceInfo, mdlog);
1228 GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
1233 if (EI_DYNAMICS(inputrec->eI))
1235 /* Turn on signal handling on all nodes */
1237 * (A user signal from the PME nodes (if any)
1238 * is communicated to the PP nodes.
1240 signal_handler_install();
1243 if (thisRankHasDuty(cr, DUTY_PP))
1245 /* Assumes uniform use of the number of OpenMP threads */
1246 walltime_accounting = walltime_accounting_init(gmx_omp_nthreads_get(emntDefault));
1248 if (inputrec->bPull)
1250 /* Initialize pull code */
1251 inputrec->pull_work =
1252 init_pull(fplog, inputrec->pull, inputrec, nfile, fnm,
1253 mtop, cr, oenv, inputrec->fepvals->init_lambda,
1254 EI_DYNAMICS(inputrec->eI) && MASTER(cr),
1255 continuationOptions);
1258 if (inputrec->bRot)
1260 /* Initialize enforced rotation code */
1261 init_rot(fplog, inputrec, nfile, fnm, cr, globalState.get(), mtop, oenv, mdrunOptions);
1264 /* Let init_constraints know whether we have essential dynamics constraints.
1265 * TODO: inputrec should tell us whether we use an algorithm, not a file option or the checkpoint
1267 bool doEdsam = (opt2fn_null("-ei", nfile, fnm) != nullptr || observablesHistory.edsamHistory);
1269 constr = init_constraints(fplog, mtop, inputrec, doEdsam, cr);
1271 if (DOMAINDECOMP(cr))
1273 GMX_RELEASE_ASSERT(fr, "fr was NULL while cr->duty was DUTY_PP");
1274 /* This call is not included in init_domain_decomposition mainly
1275 * because fr->cginfo_mb is set later.
1277 dd_init_bondeds(fplog, cr->dd, mtop, vsite, inputrec,
1278 domdecOptions.checkBondedInteractions,
1279 fr->cginfo_mb);
1282 /* Now do whatever the user wants us to do (how flexible...) */
1283 my_integrator(inputrec->eI) (fplog, cr, mdlog, nfile, fnm,
1284 oenv,
1285 mdrunOptions,
1286 vsite, constr,
1287 mdModules.outputProvider(),
1288 inputrec, mtop,
1289 fcd,
1290 globalState.get(),
1291 &observablesHistory,
1292 mdAtoms.get(), nrnb, wcycle, fr,
1293 replExParams,
1294 membed,
1295 walltime_accounting);
1297 if (inputrec->bRot)
1299 finish_rot(inputrec->rot);
1302 if (inputrec->bPull)
1304 finish_pull(inputrec->pull_work);
1308 else
1310 GMX_RELEASE_ASSERT(pmedata, "pmedata was NULL while cr->duty was not DUTY_PP");
1311 /* do PME only */
1312 walltime_accounting = walltime_accounting_init(gmx_omp_nthreads_get(emntPME));
1313 gmx_pmeonly(pmedata, cr, nrnb, wcycle, walltime_accounting, inputrec, pmeRunMode);
1316 wallcycle_stop(wcycle, ewcRUN);
1318 /* Finish up, write some stuff
1319 * if rerunMD, don't write last frame again
1321 finish_run(fplog, mdlog, cr,
1322 inputrec, nrnb, wcycle, walltime_accounting,
1323 fr ? fr->nbv : nullptr,
1324 pmedata,
1325 EI_DYNAMICS(inputrec->eI) && !MULTISIM(cr));
1327 // Free PME data
1328 if (pmedata)
1330 gmx_pme_destroy(pmedata);
1331 pmedata = nullptr;
1334 // FIXME: this is only here to manually unpin mdAtoms->chargeA_ and state->x,
1335 // before we destroy the GPU context(s) in free_gpu_resources().
1336 // Pinned buffers are associated with contexts in CUDA.
1337 // As soon as we destroy GPU contexts after mdrunner() exits, these lines should go.
1338 mdAtoms.reset(nullptr);
1339 globalState.reset(nullptr);
1341 /* Free GPU memory and set a physical node tMPI barrier (which should eventually go away) */
1342 free_gpu_resources(fr, cr);
1343 free_gpu(nonbondedDeviceInfo);
1345 if (doMembed)
1347 free_membed(membed);
1350 gmx_hardware_info_free();
1352 /* Does what it says */
1353 print_date_and_time(fplog, cr->nodeid, "Finished mdrun", gmx_gettime());
1354 walltime_accounting_destroy(walltime_accounting);
1356 /* Close logfile already here if we were appending to it */
1357 if (MASTER(cr) && continuationOptions.appendFiles)
1359 gmx_log_close(fplog);
1362 rc = (int)gmx_get_stop_condition();
1364 #if GMX_THREAD_MPI
1365 /* we need to join all threads. The sub-threads join when they
1366 exit this function, but the master thread needs to be told to
1367 wait for that. */
1368 if (PAR(cr) && MASTER(cr))
1370 tMPI_Finalize();
1372 #endif
1374 return rc;
1377 } // namespace gmx