Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
* This file is part of the GROMACS molecular simulation package.
*
* Copyright (c) 1991-2000, University of Groningen, The Netherlands.
* Copyright (c) 2001-2004, The GROMACS development team.
* Copyright (c) 2011,2012,2013,2014,2015,2016,2017,2018, by the GROMACS development team, led by
* Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
* and including many others, as listed in the AUTHORS file in the
* top-level source directory and at http://www.gromacs.org.
*
* GROMACS is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* GROMACS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with GROMACS; if not, see
* http://www.gnu.org/licenses, or write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* If you want to redistribute modifications to GROMACS, please
* consider that scientific software is very special. Version
* control is crucial - bugs must be traceable. We will be happy to
* consider code for inclusion in the official distribution, but
* derived work must not be called official GROMACS. Details are found
* in the README & COPYING files - if they are missing, get the
* official version at http://www.gromacs.org.
*
* To help us fund GROMACS development, we humbly ask that you cite
* the research papers on the package. Check out http://www.gromacs.org.
*/
/*! \internal \file
*
* \brief Implements the MD runner routine calling all integrators.
*
* \author David van der Spoel <david.vanderspoel@icm.uu.se>
* \ingroup module_mdlib
*/
#include "gmxpre.h"
#include "runner.h"
#include "config.h"
#include <cassert>
#include <csignal>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include "gromacs/commandline/filenm.h"
#include "gromacs/domdec/domdec.h"
#include "gromacs/domdec/domdec_struct.h"
#include "gromacs/ewald/ewald-utils.h"
#include "gromacs/ewald/pme.h"
#include "gromacs/fileio/checkpoint.h"
#include "gromacs/fileio/oenv.h"
#include "gromacs/fileio/tpxio.h"
#include "gromacs/gmxlib/network.h"
#include "gromacs/gpu_utils/gpu_utils.h"
#include "gromacs/hardware/cpuinfo.h"
#include "gromacs/hardware/detecthardware.h"
#include "gromacs/hardware/printhardware.h"
#include "gromacs/listed-forces/disre.h"
#include "gromacs/listed-forces/orires.h"
#include "gromacs/math/functions.h"
#include "gromacs/math/utilities.h"
#include "gromacs/math/vec.h"
#include "gromacs/mdlib/calc_verletbuf.h"
#include "gromacs/mdlib/constr.h"
#include "gromacs/mdlib/force.h"
#include "gromacs/mdlib/forcerec.h"
#include "gromacs/mdlib/gmx_omp_nthreads.h"
#include "gromacs/mdlib/integrator.h"
#include "gromacs/mdlib/main.h"
#include "gromacs/mdlib/md_support.h"
#include "gromacs/mdlib/mdatoms.h"
#include "gromacs/mdlib/mdrun.h"
#include "gromacs/mdlib/minimize.h"
#include "gromacs/mdlib/nb_verlet.h"
#include "gromacs/mdlib/nbnxn_gpu_data_mgmt.h"
#include "gromacs/mdlib/nbnxn_search.h"
#include "gromacs/mdlib/nbnxn_tuning.h"
#include "gromacs/mdlib/qmmm.h"
#include "gromacs/mdlib/sighandler.h"
#include "gromacs/mdlib/sim_util.h"
#include "gromacs/mdlib/tpi.h"
#include "gromacs/mdrunutility/mdmodules.h"
#include "gromacs/mdrunutility/threadaffinity.h"
#include "gromacs/mdtypes/commrec.h"
#include "gromacs/mdtypes/inputrec.h"
#include "gromacs/mdtypes/md_enums.h"
#include "gromacs/mdtypes/observableshistory.h"
#include "gromacs/mdtypes/state.h"
#include "gromacs/pbcutil/pbc.h"
#include "gromacs/pulling/pull.h"
#include "gromacs/pulling/pull_rotation.h"
#include "gromacs/taskassignment/decidegpuusage.h"
#include "gromacs/taskassignment/resourcedivision.h"
#include "gromacs/taskassignment/taskassignment.h"
#include "gromacs/taskassignment/usergpuids.h"
#include "gromacs/timing/wallcycle.h"
#include "gromacs/topology/mtop_util.h"
#include "gromacs/trajectory/trajectoryframe.h"
#include "gromacs/utility/cstringutil.h"
#include "gromacs/utility/exceptions.h"
#include "gromacs/utility/fatalerror.h"
#include "gromacs/utility/filestream.h"
#include "gromacs/utility/gmxassert.h"
#include "gromacs/utility/gmxmpi.h"
#include "gromacs/utility/logger.h"
#include "gromacs/utility/loggerbuilder.h"
#include "gromacs/utility/pleasecite.h"
#include "gromacs/utility/programcontext.h"
#include "gromacs/utility/smalloc.h"
#include "gromacs/utility/stringutil.h"
#include "deform.h"
#include "md.h"
#include "membed.h"
#include "repl_ex.h"
/* PLUMED */
#include "../../../Plumed.h"
extern int plumedswitch;
extern plumed plumedmain;
/* END PLUMED */
#ifdef GMX_FAHCORE
#include "corewrap.h"
#endif
//! First step used in pressure scaling
gmx_int64_t deform_init_init_step_tpx;
//! Initial box for pressure scaling
matrix deform_init_box_tpx;
//! MPI variable for use in pressure scaling
tMPI_Thread_mutex_t deform_init_box_mutex = TMPI_THREAD_MUTEX_INITIALIZER;
namespace gmx
{
void Mdrunner::reinitializeOnSpawnedThread()
{
// TODO This duplication is formally necessary if any thread might
// modify any memory in fnm or the pointers it contains. If the
// contents are ever provably const, then we can remove this
// allocation (and memory leak).
// TODO This should probably become part of a copy constructor for
// Mdrunner.
fnm = dup_tfn(nfile, fnm);
cr = reinitialize_commrec_for_this_thread(cr);
if (!MASTER(cr))
{
// Only the master rank writes to the log files
fplog = nullptr;
}
}
/*! \brief The callback used for running on spawned threads.
*
* Obtains the pointer to the master mdrunner object from the one
* argument permitted to the thread-launch API call, copies it to make
* a new runner for this thread, reinitializes necessary data, and
* proceeds to the simulation. */
static void mdrunner_start_fn(void *arg)
{
try
{
auto masterMdrunner = reinterpret_cast<const gmx::Mdrunner *>(arg);
/* copy the arg list to make sure that it's thread-local. This
doesn't copy pointed-to items, of course, but those are all
const. */
gmx::Mdrunner mdrunner = *masterMdrunner;
mdrunner.reinitializeOnSpawnedThread();
mdrunner.mdrunner();
}
GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
}
/*! \brief Start thread-MPI threads.
*
* Called by mdrunner() to start a specific number of threads
* (including the main thread) for thread-parallel runs. This in turn
* calls mdrunner() for each thread. All options are the same as for
* mdrunner(). */
t_commrec *Mdrunner::spawnThreads(int numThreadsToLaunch)
{
/* first check whether we even need to start tMPI */
if (numThreadsToLaunch < 2)
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
{
return cr;
}
gmx::Mdrunner spawnedMdrunner = *this;
// TODO This duplication is formally necessary if any thread might
// modify any memory in fnm or the pointers it contains. If the
// contents are ever provably const, then we can remove this
// allocation (and memory leak).
// TODO This should probably become part of a copy constructor for
// Mdrunner.
spawnedMdrunner.fnm = dup_tfn(this->nfile, fnm);
#if GMX_THREAD_MPI
/* now spawn new threads that start mdrunner_start_fn(), while
the main thread returns, we set thread affinity later */
if (tMPI_Init_fn(TRUE, numThreadsToLaunch, TMPI_AFFINITY_NONE,
mdrunner_start_fn, static_cast<void*>(&spawnedMdrunner)) != TMPI_SUCCESS)
{
GMX_THROW(gmx::InternalError("Failed to spawn thread-MPI threads"));
}
#else
GMX_UNUSED_VALUE(mdrunner_start_fn);
#endif
return reinitialize_commrec_for_this_thread(cr);
}
} // namespace
/*! \brief Initialize variables for Verlet scheme simulation */
static void prepare_verlet_scheme(FILE *fplog,
t_commrec *cr,
t_inputrec *ir,
int nstlist_cmdline,
const gmx_mtop_t *mtop,
const matrix box,
bool makeGpuPairList,
const gmx::CpuInfo &cpuinfo)
{
/* For NVE simulations, we will retain the initial list buffer */
if (EI_DYNAMICS(ir->eI) &&
ir->verletbuf_tol > 0 &&
!(EI_MD(ir->eI) && ir->etc == etcNO))
{
/* Update the Verlet buffer size for the current run setup */
/* Here we assume SIMD-enabled kernels are being used. But as currently
* calc_verlet_buffer_size gives the same results for 4x8 and 4x4
* and 4x2 gives a larger buffer than 4x4, this is ok.
*/
ListSetupType listType = (makeGpuPairList ? ListSetupType::Gpu : ListSetupType::CpuSimdWhenSupported);
VerletbufListSetup listSetup = verletbufGetSafeListSetup(listType);
real rlist_new;
calc_verlet_buffer_size(mtop, det(box), ir, ir->nstlist, ir->nstlist - 1, -1, &listSetup, nullptr, &rlist_new);
if (rlist_new != ir->rlist)
{
if (fplog != nullptr)
{
fprintf(fplog, "\nChanging rlist from %g to %g for non-bonded %dx%d atom kernels\n\n",
ir->rlist, rlist_new,
listSetup.cluster_size_i, listSetup.cluster_size_j);
}
ir->rlist = rlist_new;
}
}
if (nstlist_cmdline > 0 && (!EI_DYNAMICS(ir->eI) || ir->verletbuf_tol <= 0))
{
gmx_fatal(FARGS, "Can not set nstlist without %s",
!EI_DYNAMICS(ir->eI) ? "dynamics" : "verlet-buffer-tolerance");
}
if (EI_DYNAMICS(ir->eI))
{
/* Set or try nstlist values */
increaseNstlist(fplog, cr, ir, nstlist_cmdline, mtop, box, makeGpuPairList, cpuinfo);
}
}
/*! \brief Override the nslist value in inputrec
*
* with value passed on the command line (if any)
*/
static void override_nsteps_cmdline(const gmx::MDLogger &mdlog,
gmx_int64_t nsteps_cmdline,
t_inputrec *ir)
{
assert(ir);
/* override with anything else than the default -2 */
if (nsteps_cmdline > -2)
{
char sbuf_steps[STEPSTRSIZE];
char sbuf_msg[STRLEN];
ir->nsteps = nsteps_cmdline;
if (EI_DYNAMICS(ir->eI) && nsteps_cmdline != -1)
{
sprintf(sbuf_msg, "Overriding nsteps with value passed on the command line: %s steps, %.3g ps",
gmx_step_str(nsteps_cmdline, sbuf_steps),
fabs(nsteps_cmdline*ir->delta_t));
}
else
{
sprintf(sbuf_msg, "Overriding nsteps with value passed on the command line: %s steps",
gmx_step_str(nsteps_cmdline, sbuf_steps));
}
GMX_LOG(mdlog.warning).asParagraph().appendText(sbuf_msg);
}
else if (nsteps_cmdline < -2)
{
gmx_fatal(FARGS, "Invalid nsteps value passed on the command line: %d",
nsteps_cmdline);
}
/* Do nothing if nsteps_cmdline == -2 */
}
namespace gmx
{
/*! \brief Return whether GPU acceleration of nonbondeds is supported with the given settings.
*
* If not, and if a warning may be issued, logs a warning about
* falling back to CPU code. With thread-MPI, only the first
* call to this function should have \c issueWarning true. */
static bool gpuAccelerationOfNonbondedIsUseful(const MDLogger &mdlog,
const t_inputrec *ir,
bool issueWarning)
{
if (ir->opts.ngener - ir->nwall > 1)
{
/* The GPU code does not support more than one energy group.
* If the user requested GPUs explicitly, a fatal error is given later.
*/
if (issueWarning)
{
GMX_LOG(mdlog.warning).asParagraph()
.appendText("Multiple energy groups is not implemented for GPUs, falling back to the CPU. "
"For better performance, run on the GPU without energy groups and then do "
"gmx mdrun -rerun option on the trajectory with an energy group .tpr file.");
}
return false;
}
return true;
}
//! \brief Return the correct integrator function.
static integrator_t *my_integrator(unsigned int ei)
{
switch (ei)
{
case eiMD:
case eiBD:
case eiSD1:
case eiVV:
case eiVVAK:
if (!EI_DYNAMICS(ei))
{
GMX_THROW(APIError("do_md integrator would be called for a non-dynamical integrator"));
}
return do_md;
case eiSteep:
return do_steep;
case eiCG:
return do_cg;
case eiNM:
return do_nm;
case eiLBFGS:
return do_lbfgs;
case eiTPI:
case eiTPIC:
if (!EI_TPI(ei))
{
GMX_THROW(APIError("do_tpi integrator would be called for a non-TPI integrator"));
}
return do_tpi;
case eiSD2_REMOVED:
GMX_THROW(NotImplementedError("SD2 integrator has been removed"));
default:
GMX_THROW(APIError("Non existing integrator selected"));
}
}
//! Initializes the logger for mdrun.
static gmx::LoggerOwner buildLogger(FILE *fplog, const t_commrec *cr)
{
gmx::LoggerBuilder builder;
if (fplog != nullptr)
{
builder.addTargetFile(gmx::MDLogger::LogLevel::Info, fplog);
}
if (cr == nullptr || SIMMASTER(cr))
{
builder.addTargetStream(gmx::MDLogger::LogLevel::Warning,
&gmx::TextOutputFile::standardError());
}
return builder.build();
}
//! Make a TaskTarget from an mdrun argument string.
static TaskTarget findTaskTarget(const char *optionString)
{
TaskTarget returnValue = TaskTarget::Auto;
if (strncmp(optionString, "auto", 3) == 0)
{
returnValue = TaskTarget::Auto;
}
else if (strncmp(optionString, "cpu", 3) == 0)
{
returnValue = TaskTarget::Cpu;
}
else if (strncmp(optionString, "gpu", 3) == 0)
{
returnValue = TaskTarget::Gpu;
}
else
{
GMX_ASSERT(false, "Option string should have been checked for sanity already");
}
return returnValue;
}
int Mdrunner::mdrunner()
{
matrix box;
gmx_ddbox_t ddbox = {0};
int npme_major, npme_minor;
t_nrnb *nrnb;
gmx_mtop_t *mtop = nullptr;
t_forcerec *fr = nullptr;
t_fcdata *fcd = nullptr;
real ewaldcoeff_q = 0;
real ewaldcoeff_lj = 0;
gmx_vsite_t *vsite = nullptr;
gmx_constr_t constr;
int nChargePerturbed = -1, nTypePerturbed = 0;
gmx_wallcycle_t wcycle;
gmx_walltime_accounting_t walltime_accounting = nullptr;
int rc;
gmx_int64_t reset_counters;
int nthreads_pme = 1;
gmx_membed_t * membed = nullptr;
gmx_hw_info_t *hwinfo = nullptr;
/* CAUTION: threads may be started later on in this function, so
cr doesn't reflect the final parallel state right now */
gmx::MDModules mdModules;
t_inputrec inputrecInstance;
t_inputrec *inputrec = &inputrecInstance;
snew(mtop, 1);
if (mdrunOptions.continuationOptions.appendFiles)
{
fplog = nullptr;
}
bool doMembed = opt2bSet("-membed", nfile, fnm);
bool doRerun = mdrunOptions.rerun;
// Handle task-assignment related user options.
EmulateGpuNonbonded emulateGpuNonbonded = (getenv("GMX_EMULATE_GPU") != nullptr ?
EmulateGpuNonbonded::Yes : EmulateGpuNonbonded::No);
std::vector<int> gpuIdsAvailable;
try
{
gpuIdsAvailable = parseUserGpuIds(hw_opt.gpuIdsAvailable);
// TODO We could put the GPU IDs into a std::map to find
// duplicates, but for the small numbers of IDs involved, this
// code is simple and fast.
for (size_t i = 0; i != gpuIdsAvailable.size(); ++i)
{
for (size_t j = i+1; j != gpuIdsAvailable.size(); ++j)
{
if (gpuIdsAvailable[i] == gpuIdsAvailable[j])
{
GMX_THROW(InvalidInputError(formatString("The string of available GPU device IDs '%s' may not contain duplicate device IDs", hw_opt.gpuIdsAvailable.c_str())));
}
}
}
}
GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
std::vector<int> userGpuTaskAssignment;
try
{
userGpuTaskAssignment = parseUserGpuIds(hw_opt.userGpuTaskAssignment);
}
GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
auto nonbondedTarget = findTaskTarget(nbpu_opt);
auto pmeTarget = findTaskTarget(pme_opt);
auto pmeFftTarget = findTaskTarget(pme_fft_opt);
PmeRunMode pmeRunMode = PmeRunMode::None;
// Here we assume that SIMMASTER(cr) does not change even after the
// threads are started.
gmx::LoggerOwner logOwner(buildLogger(fplog, cr));
gmx::MDLogger mdlog(logOwner.logger());
hwinfo = gmx_detect_hardware(mdlog, cr);
gmx_print_detected_hardware(fplog, cr, mdlog, hwinfo);
std::vector<int> gpuIdsToUse;
auto compatibleGpus = getCompatibleGpus(hwinfo->gpu_info);
if (gpuIdsAvailable.empty())
{
gpuIdsToUse = compatibleGpus;
}
else
{
for (const auto &availableGpuId : gpuIdsAvailable)
{
bool availableGpuIsCompatible = false;
for (const auto &compatibleGpuId : compatibleGpus)
{
if (availableGpuId == compatibleGpuId)
{
availableGpuIsCompatible = true;
break;
}
}
if (!availableGpuIsCompatible)
{
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);
}
gpuIdsToUse.push_back(availableGpuId);
}
}
if (fplog != nullptr)
{
/* Print references after all software/hardware printing */
please_cite(fplog, "Abraham2015");
please_cite(fplog, "Pall2015");
please_cite(fplog, "Pronk2013");
please_cite(fplog, "Hess2008b");
please_cite(fplog, "Spoel2005a");
please_cite(fplog, "Lindahl2001a");
please_cite(fplog, "Berendsen95a");
}
std::unique_ptr<t_state> globalState;
if (SIMMASTER(cr))
{
/* Only the master rank has the global state */
globalState = std::unique_ptr<t_state>(new t_state);
/* Read (nearly) all data required for the simulation */
read_tpx_state(ftp2fn(efTPR, nfile, fnm), inputrec, globalState.get(), mtop);
if (inputrec->cutoff_scheme != ecutsVERLET)
{
if (nstlist_cmdline > 0)
{
gmx_fatal(FARGS, "Can not set nstlist with the group cut-off scheme");
}
if (!compatibleGpus.empty())
{
GMX_LOG(mdlog.warning).asParagraph().appendText(
"NOTE: GPU(s) found, but the current simulation can not use GPUs\n"
" To use a GPU, set the mdp option: cutoff-scheme = Verlet");
}
}
}
/* Check and update the hardware options for internal consistency */
check_and_update_hw_opt_1(mdlog, &hw_opt, cr, domdecOptions.numPmeRanks);
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
/* Early check for externally set process affinity. */
gmx_check_thread_affinity_set(mdlog, cr,
&hw_opt, hwinfo->nthreads_hw_avail, FALSE);
if (GMX_THREAD_MPI && SIMMASTER(cr))
{
if (domdecOptions.numPmeRanks > 0 && hw_opt.nthreads_tmpi <= 0)
{
gmx_fatal(FARGS, "You need to explicitly specify the number of MPI threads (-ntmpi) when using separate PME ranks");
}
/* Since the master knows the cut-off scheme, update hw_opt for this.
* This is done later for normal MPI and also once more with tMPI
* for all tMPI ranks.
*/
check_and_update_hw_opt_2(&hw_opt, inputrec->cutoff_scheme);
bool useGpuForNonbonded = false;
bool useGpuForPme = false;
try
{
// If the user specified the number of ranks, then we must
// respect that, but in default mode, we need to allow for
// the number of GPUs to choose the number of ranks.
useGpuForNonbonded = decideWhetherToUseGpusForNonbondedWithThreadMpi
(nonbondedTarget, gpuIdsToUse, userGpuTaskAssignment, emulateGpuNonbonded,
inputrec->cutoff_scheme == ecutsVERLET,
gpuAccelerationOfNonbondedIsUseful(mdlog, inputrec, GMX_THREAD_MPI),
hw_opt.nthreads_tmpi);
auto inputSystemHasPme = EEL_PME(inputrec->coulombtype) || EVDW_PME(inputrec->vdwtype);
auto canUseGpuForPme = inputSystemHasPme && pme_gpu_supports_input(inputrec, nullptr);
useGpuForPme = decideWhetherToUseGpusForPmeWithThreadMpi
(useGpuForNonbonded, pmeTarget, gpuIdsToUse, userGpuTaskAssignment,
canUseGpuForPme, hw_opt.nthreads_tmpi, domdecOptions.numPmeRanks);
}
GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
/* Determine how many thread-MPI ranks to start.
*
* TODO Over-writing the user-supplied value here does
* prevent any possible subsequent checks from working
* correctly. */
hw_opt.nthreads_tmpi = get_nthreads_mpi(hwinfo,
&hw_opt,
gpuIdsToUse,
useGpuForNonbonded,
useGpuForPme,
inputrec, mtop,
mdlog,
doMembed);
// Now start the threads for thread MPI.
cr = spawnThreads(hw_opt.nthreads_tmpi);
/* The main thread continues here with a new cr. We don't deallocate
the old cr because other threads may still be reading it. */
// TODO Both master and spawned threads call dup_tfn and
// reinitialize_commrec_for_this_thread. Find a way to express
// this better.
}
/* END OF CAUTION: cr is now reliable */
if (PAR(cr))
{
/* now broadcast everything to the non-master nodes/threads: */
init_parallel(cr, inputrec, mtop);
}
// Now each rank knows the inputrec that SIMMASTER read and used,
// and (if applicable) cr->nnodes has been assigned the number of
// thread-MPI ranks that have been chosen. The ranks can now all
// run the task-deciding functions and will agree on the result
// without needing to communicate.
//
// TODO Should we do the communication in debug mode to support
// having an assertion?
//
// Note that these variables describe only their own node.
bool useGpuForNonbonded = false;
bool useGpuForPme = false;
try
{
// It's possible that there are different numbers of GPUs on
// different nodes, which is the user's responsibilty to
// handle. If unsuitable, we will notice that during task
// assignment.
bool gpusWereDetected = hwinfo->ngpu_compatible_tot > 0;
useGpuForNonbonded = decideWhetherToUseGpusForNonbonded(nonbondedTarget, userGpuTaskAssignment,
emulateGpuNonbonded, inputrec->cutoff_scheme == ecutsVERLET,
gpuAccelerationOfNonbondedIsUseful(mdlog, inputrec, !GMX_THREAD_MPI),
gpusWereDetected);
auto inputSystemHasPme = EEL_PME(inputrec->coulombtype) || EVDW_PME(inputrec->vdwtype);
auto canUseGpuForPme = inputSystemHasPme && pme_gpu_supports_input(inputrec, nullptr);
useGpuForPme = decideWhetherToUseGpusForPme(useGpuForNonbonded, pmeTarget, userGpuTaskAssignment,
canUseGpuForPme, cr->nnodes, domdecOptions.numPmeRanks,
gpusWereDetected);
pmeRunMode = (useGpuForPme ? PmeRunMode::GPU : PmeRunMode::CPU);
if (pmeRunMode == PmeRunMode::GPU)
{
if (pmeFftTarget == TaskTarget::Cpu)
{
pmeRunMode = PmeRunMode::Mixed;
}
}
else if (pmeFftTarget == TaskTarget::Gpu)
{
gmx_fatal(FARGS, "Assigning FFTs to GPU requires PME to be assigned to GPU as well. With PME on CPU you should not be using -pmefft.");
}
}
GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
// TODO: Error handling
mdModules.assignOptionsToModules(*inputrec->params, nullptr);
if (fplog != nullptr)
{
pr_inputrec(fplog, 0, "Input Parameters", inputrec, FALSE);
fprintf(fplog, "\n");
}
if (SIMMASTER(cr))
{
/* now make sure the state is initialized and propagated */
set_state_entries(globalState.get(), inputrec);
}
/* NM and TPI parallelize over force/energy calculations, not atoms,
* so we need to initialize and broadcast the global state.
*/
if (inputrec->eI == eiNM || inputrec->eI == eiTPI)
{
if (!MASTER(cr))
{
globalState = std::unique_ptr<t_state>(new t_state);
}
broadcastStateWithoutDynamics(cr, globalState.get());
}
/* A parallel command line option consistency check that we can
only do after any threads have started. */
if (!PAR(cr) && (domdecOptions.numCells[XX] > 1 ||
domdecOptions.numCells[YY] > 1 ||
domdecOptions.numCells[ZZ] > 1 ||
domdecOptions.numPmeRanks > 0))
{
gmx_fatal(FARGS,
"The -dd or -npme option request a parallel simulation, "
#if !GMX_MPI
"but %s was compiled without threads or MPI enabled"
#else
#if GMX_THREAD_MPI
"but the number of MPI-threads (option -ntmpi) is not set or is 1"
#else
"but %s was not started through mpirun/mpiexec or only one rank was requested through mpirun/mpiexec"
#endif
#endif
, output_env_get_program_display_name(oenv)
);
}
if (doRerun &&
(EI_ENERGY_MINIMIZATION(inputrec->eI) || eiNM == inputrec->eI))
{
gmx_fatal(FARGS, "The .mdp file specified an energy mininization or normal mode algorithm, and these are not compatible with mdrun -rerun");
}
if (can_use_allvsall(inputrec, TRUE, cr, fplog) && DOMAINDECOMP(cr))
{
gmx_fatal(FARGS, "All-vs-all loops do not work with domain decomposition, use a single MPI rank");
}
if (!(EEL_PME(inputrec->coulombtype) || EVDW_PME(inputrec->vdwtype)))
{
if (domdecOptions.numPmeRanks > 0)
{
gmx_fatal_collective(FARGS, cr->mpi_comm_mysim, MASTER(cr),
"PME-only ranks are requested, but the system does not use PME for electrostatics or LJ");
}
domdecOptions.numPmeRanks = 0;
}
if (useGpuForNonbonded && domdecOptions.numPmeRanks < 0)
{
/* With NB GPUs we don't automatically use PME-only CPU ranks. PME ranks can
* improve performance with many threads per GPU, since our OpenMP
* scaling is bad, but it's difficult to automate the setup.
*/
domdecOptions.numPmeRanks = 0;
}
if (useGpuForPme)
{
if (domdecOptions.numPmeRanks < 0)
{
domdecOptions.numPmeRanks = 0;
// TODO possibly print a note that one can opt-in for a separate PME GPU rank?
}
else
{
GMX_RELEASE_ASSERT(domdecOptions.numPmeRanks <= 1, "PME GPU decomposition is not supported");
}
}
#ifdef GMX_FAHCORE
if (MASTER(cr))
{
fcRegisterSteps(inputrec->nsteps, inputrec->init_step);
}
#endif
/* NMR restraints must be initialized before load_checkpoint,
* since with time averaging the history is added to t_state.
* For proper consistency check we therefore need to extend
* t_state here.
* So the PME-only nodes (if present) will also initialize
* the distance restraints.
*/
snew(fcd, 1);
/* This needs to be called before read_checkpoint to extend the state */
init_disres(fplog, mtop, inputrec, cr, fcd, globalState.get(), replExParams.exchangeInterval > 0);
init_orires(fplog, mtop, inputrec, cr, globalState.get(), &(fcd->orires));
if (inputrecDeform(inputrec))
{
/* Store the deform reference box before reading the checkpoint */
if (SIMMASTER(cr))
{
copy_mat(globalState->box, box);
}
if (PAR(cr))
{
gmx_bcast(sizeof(box), box, cr);
}
/* Because we do not have the update struct available yet
* in which the reference values should be stored,
* we store them temporarily in static variables.
* This should be thread safe, since they are only written once
* and with identical values.
*/
tMPI_Thread_mutex_lock(&deform_init_box_mutex);
deform_init_init_step_tpx = inputrec->init_step;
copy_mat(box, deform_init_box_tpx);
tMPI_Thread_mutex_unlock(&deform_init_box_mutex);
}
ObservablesHistory observablesHistory = {};
ContinuationOptions &continuationOptions = mdrunOptions.continuationOptions;
if (continuationOptions.startedFromCheckpoint)
{
/* Check if checkpoint file exists before doing continuation.
* This way we can use identical input options for the first and subsequent runs...
*/
gmx_bool bReadEkin;
load_checkpoint(opt2fn_master("-cpi", nfile, fnm, cr), &fplog,
cr, domdecOptions.numCells,
inputrec, globalState.get(),
&bReadEkin, &observablesHistory,
continuationOptions.appendFiles,
continuationOptions.appendFilesOptionSet,
mdrunOptions.reproducible);
if (bReadEkin)
{
continuationOptions.haveReadEkin = true;
}
}
if (SIMMASTER(cr) && continuationOptions.appendFiles)
{
gmx_log_open(ftp2fn(efLOG, nfile, fnm), cr,
continuationOptions.appendFiles, &fplog);
logOwner = buildLogger(fplog, nullptr);
mdlog = logOwner.logger();
}
if (mdrunOptions.numStepsCommandline > -2)
{
GMX_LOG(mdlog.info).asParagraph().
appendText("The -nsteps functionality is deprecated, and may be removed in a future version. "
"Consider using gmx convert-tpr -nsteps or changing the appropriate .mdp file field.");
}
/* override nsteps with value set on the commamdline */
override_nsteps_cmdline(mdlog, mdrunOptions.numStepsCommandline, inputrec);
if (SIMMASTER(cr))
{
copy_mat(globalState->box, box);
}
if (PAR(cr))
{
gmx_bcast(sizeof(box), box, cr);
}
/* Update rlist and nstlist. */
if (inputrec->cutoff_scheme == ecutsVERLET)
{
prepare_verlet_scheme(fplog, cr, inputrec, nstlist_cmdline, mtop, box,
useGpuForNonbonded || (emulateGpuNonbonded == EmulateGpuNonbonded::Yes), *hwinfo->cpuInfo);
}
if (PAR(cr) && !(EI_TPI(inputrec->eI) ||
inputrec->eI == eiNM))
{
const rvec *xOnMaster = (SIMMASTER(cr) ? as_rvec_array(globalState->x.data()) : nullptr);
cr->dd = init_domain_decomposition(fplog, cr, domdecOptions, mdrunOptions,
mtop, inputrec,
box, xOnMaster,
&ddbox, &npme_major, &npme_minor);
// Note that local state still does not exist yet.
}
else
{
/* PME, if used, is done on all nodes with 1D decomposition */
cr->npmenodes = 0;
cr->duty = (DUTY_PP | DUTY_PME);
npme_major = 1;
npme_minor = 1;
if (inputrec->ePBC == epbcSCREW)
{
gmx_fatal(FARGS,
"pbc=%s is only implemented with domain decomposition",
epbc_names[inputrec->ePBC]);
}
}
if (PAR(cr))
{
/* After possible communicator splitting in make_dd_communicators.
* we can set up the intra/inter node communication.
*/
gmx_setup_nodecomm(fplog, cr);
}
/* Initialize per-physical-node MPI process/thread ID and counters. */
gmx_init_intranode_counters(cr);
if (cr->ms && cr->ms->nsim > 1 && !opt2bSet("-multidir", nfile, fnm))
{
GMX_LOG(mdlog.info).asParagraph().
appendText("The -multi flag is deprecated, and may be removed in a future version. Please "
"update your workflows to use -multidir instead.");
}
#if GMX_MPI
if (MULTISIM(cr))
{
GMX_LOG(mdlog.warning).asParagraph().appendTextFormatted(
"This is simulation %d out of %d running as a composite GROMACS\n"
"multi-simulation job. Setup for this simulation:\n",
cr->ms->sim, cr->ms->nsim);
}
GMX_LOG(mdlog.warning).appendTextFormatted(
"Using %d MPI %s\n",
cr->nnodes,
#if GMX_THREAD_MPI
cr->nnodes == 1 ? "thread" : "threads"
#else
cr->nnodes == 1 ? "process" : "processes"
#endif
);
fflush(stderr);
#endif
/* Check and update hw_opt for the cut-off scheme */
check_and_update_hw_opt_2(&hw_opt, inputrec->cutoff_scheme);
/* Check and update the number of OpenMP threads requested */
checkAndUpdateRequestedNumOpenmpThreads(&hw_opt, *hwinfo, cr, pmeRunMode, *mtop);
gmx_omp_nthreads_init(mdlog, cr,
hwinfo->nthreads_hw_avail,
hw_opt.nthreads_omp,
hw_opt.nthreads_omp_pme,
!thisRankHasDuty(cr, DUTY_PP),
inputrec->cutoff_scheme == ecutsVERLET);
// Disabled for the rest of the lifetime of release-2018 branch
// to prevent false positives.
/*
#ifndef NDEBUG
if (EI_TPI(inputrec->eI) &&
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
// Build a data structure that expresses which kinds of non-bonded
// task are handled by this rank.
//
// TODO Later, this might become a loop over all registered modules
// relevant to the mdp inputs, to find those that have such tasks.
//
// TODO This could move before init_domain_decomposition() as part
// of refactoring that separates the responsibility for duty
// assignment from setup for communication between tasks, and
// setup for tasks handled with a domain (ie including short-ranged
// tasks, bonded tasks, etc.).
//
// Note that in general useGpuForNonbonded, etc. can have a value
// that is inconsistent with the presence of actual GPUs on any
// rank, and that is not known to be a problem until the
// duty of the ranks on a node become node.
//
// TODO Later we might need the concept of computeTasksOnThisRank,
// from which we construct gpuTasksOnThisRank.
//
// Currently the DD code assigns duty to ranks that can
// include PP work that currently can be executed on a single
// GPU, if present and compatible. This has to be coordinated
// across PP ranks on a node, with possible multiple devices
// or sharing devices on a node, either from the user
// selection, or automatically.
auto haveGpus = !gpuIdsToUse.empty();
std::vector<GpuTask> gpuTasksOnThisRank;
if (thisRankHasDuty(cr, DUTY_PP))
{
if (useGpuForNonbonded)
{
if (haveGpus)
{
gpuTasksOnThisRank.push_back(GpuTask::Nonbonded);
}
else if (nonbondedTarget == TaskTarget::Gpu)
{
gmx_fatal(FARGS, "Cannot run short-ranged nonbonded interactions on a GPU because there is none detected.");
}
}
}
// TODO cr->duty & DUTY_PME should imply that a PME algorithm is active, but currently does not.
if (EEL_PME(inputrec->coulombtype) && (thisRankHasDuty(cr, DUTY_PME)))
{
if (useGpuForPme)
{
if (haveGpus)
{
gpuTasksOnThisRank.push_back(GpuTask::Pme);
}
else if (pmeTarget == TaskTarget::Gpu)
{
gmx_fatal(FARGS, "Cannot run PME on a GPU because there is none detected.");
}
}
}
GpuTaskAssignment gpuTaskAssignment;
try
{
// Produce the task assignment for this rank.
gpuTaskAssignment = runTaskAssignment(gpuIdsToUse, userGpuTaskAssignment, *hwinfo,
mdlog, cr, gpuTasksOnThisRank);
}
GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
/* Prevent other ranks from continuing after an issue was found
* and reported as a fatal error.
*
* TODO This function implements a barrier so that MPI runtimes
* can organize an orderly shutdown if one of the ranks has had to
* issue a fatal error in various code already run. When we have
* MPI-aware error handling and reporting, this should be
* improved. */
#if GMX_MPI
if (PAR(cr))
{
MPI_Barrier(cr->mpi_comm_mysim);
}
if (MULTISIM(cr))
{
if (SIMMASTER(cr))
{
MPI_Barrier(cr->ms->mpi_comm_masters);
}
/* We need another barrier to prevent non-master ranks from contiuing
* when an error occured in a different simulation.
*/
MPI_Barrier(cr->mpi_comm_mysim);
}
#endif
/* Now that we know the setup is consistent, check for efficiency */
check_resource_division_efficiency(hwinfo, !gpuTaskAssignment.empty(), mdrunOptions.ntompOptionIsSet,
cr, mdlog);
gmx_device_info_t *nonbondedDeviceInfo = nullptr;
if (thisRankHasDuty(cr, DUTY_PP))
{
// This works because only one task of each type is currently permitted.
auto nbGpuTaskMapping = std::find_if(gpuTaskAssignment.begin(), gpuTaskAssignment.end(),
hasTaskType<GpuTask::Nonbonded>);
if (nbGpuTaskMapping != gpuTaskAssignment.end())
{
int nonbondedDeviceId = nbGpuTaskMapping->deviceId_;
nonbondedDeviceInfo = getDeviceInfo(hwinfo->gpu_info, nonbondedDeviceId);
init_gpu(mdlog, nonbondedDeviceInfo);
if (DOMAINDECOMP(cr))
{
/* When we share GPUs over ranks, we need to know this for the DLB */
dd_setup_dlb_resource_sharing(cr, nonbondedDeviceId);
}
}
}
gmx_device_info_t *pmeDeviceInfo = nullptr;
// This works because only one task of each type is currently permitted.
auto pmeGpuTaskMapping = std::find_if(gpuTaskAssignment.begin(), gpuTaskAssignment.end(), hasTaskType<GpuTask::Pme>);
if (pmeGpuTaskMapping != gpuTaskAssignment.end())
{
pmeDeviceInfo = getDeviceInfo(hwinfo->gpu_info, pmeGpuTaskMapping->deviceId_);
init_gpu(mdlog, pmeDeviceInfo);
}
/* getting number of PP/PME threads
PME: env variable should be read only on one node to make sure it is
identical everywhere;
*/
nthreads_pme = gmx_omp_nthreads_get(emntPME);
int numThreadsOnThisRank;
/* threads on this MPI process or TMPI thread */
if (thisRankHasDuty(cr, DUTY_PP))
{
numThreadsOnThisRank = gmx_omp_nthreads_get(emntNonbonded);
}
else
{
numThreadsOnThisRank = nthreads_pme;
}
checkHardwareOversubscription(numThreadsOnThisRank,
*hwinfo->hardwareTopology,
cr, mdlog);
if (hw_opt.thread_affinity != threadaffOFF)
{
/* Before setting affinity, check whether the affinity has changed
* - which indicates that probably the OpenMP library has changed it
* since we first checked).
*/
gmx_check_thread_affinity_set(mdlog, cr,
&hw_opt, hwinfo->nthreads_hw_avail, TRUE);
/* Set the CPU affinity */
gmx_set_thread_affinity(mdlog, cr, &hw_opt, *hwinfo->hardwareTopology,
numThreadsOnThisRank, nullptr);
}
if (mdrunOptions.timingOptions.resetStep > -1)
{
GMX_LOG(mdlog.info).asParagraph().
appendText("The -resetstep functionality is deprecated, and may be removed in a future version.");
}
wcycle = wallcycle_init(fplog, mdrunOptions.timingOptions.resetStep, cr);
if (PAR(cr))
{
/* Master synchronizes its value of reset_counters with all nodes
* including PME only nodes */
reset_counters = wcycle_get_reset_counters(wcycle);
gmx_bcast_sim(sizeof(reset_counters), &reset_counters, cr);
wcycle_set_reset_counters(wcycle, reset_counters);
}
// Membrane embedding must be initialized before we call init_forcerec()
if (doMembed)
{
if (MASTER(cr))
{
fprintf(stderr, "Initializing membed");
}
/* Note that membed cannot work in parallel because mtop is
* changed here. Fix this if we ever want to make it run with
* multiple ranks. */
membed = init_membed(fplog, nfile, fnm, mtop, inputrec, globalState.get(), cr, &mdrunOptions.checkpointOptions.period);
}
std::unique_ptr<MDAtoms> mdAtoms;
snew(nrnb, 1);
if (thisRankHasDuty(cr, DUTY_PP))
{
/* Initiate forcerecord */
fr = mk_forcerec();
fr->forceProviders = mdModules.initForceProviders();
init_forcerec(fplog, mdlog, fr, fcd,
inputrec, mtop, cr, box,
opt2fn("-table", nfile, fnm),
opt2fn("-tablep", nfile, fnm),
getFilenm("-tableb", nfile, fnm),
*hwinfo, nonbondedDeviceInfo,
FALSE,
pforce);
/* Initialize QM-MM */
if (fr->bQMMM)
{
GMX_LOG(mdlog.info).asParagraph().
appendText("Large parts of the QM/MM support is deprecated, and may be removed in a future "
"version. Please get in touch with the developers if you find the support useful, "
"as help is needed if the functionality is to continue to be available.");
init_QMMMrec(cr, mtop, inputrec, fr);
}
/* Initialize the mdAtoms structure.
* mdAtoms is not filled with atom data,
* as this can not be done now with domain decomposition.
*/
const bool useGpuForPme = (pmeRunMode == PmeRunMode::GPU) || (pmeRunMode == PmeRunMode::Mixed);
mdAtoms = makeMDAtoms(fplog, *mtop, *inputrec, useGpuForPme && thisRankHasDuty(cr, DUTY_PME));
if (globalState)
{
// The pinning of coordinates in the global state object works, because we only use
// PME on GPU without DD or on a separate PME rank, and because the local state pointer
// points to the global state object without DD.
// FIXME: MD and EM separately set up the local state - this should happen in the same function,
// which should also perform the pinning.
changePinningPolicy(&globalState->x, useGpuForPme ? PinningPolicy::CanBePinned : PinningPolicy::CannotBePinned);
}
/* Initialize the virtual site communication */
vsite = initVsite(*mtop, cr);
calc_shifts(box, fr->shift_vec);
/* With periodic molecules the charge groups should be whole at start up
* and the virtual sites should not be far from their proper positions.
*/
if (!inputrec->bContinuation && MASTER(cr) &&
!(inputrec->ePBC != epbcNONE && inputrec->bPeriodicMols))
{
/* Make molecules whole at start of run */
if (fr->ePBC != epbcNONE)
{
rvec *xGlobal = as_rvec_array(globalState->x.data());
do_pbc_first_mtop(fplog, inputrec->ePBC, box, mtop, xGlobal);
}
if (vsite)
{
/* Correct initial vsite positions are required
* for the initial distribution in the domain decomposition
* and for the initial shell prediction.
*/
constructVsitesGlobal(*mtop, globalState->x);
}
}
if (EEL_PME(fr->ic->eeltype) || EVDW_PME(fr->ic->vdwtype))
{
ewaldcoeff_q = fr->ic->ewaldcoeff_q;
ewaldcoeff_lj = fr->ic->ewaldcoeff_lj;
}
}
else
{
/* This is a PME only node */
GMX_ASSERT(globalState == nullptr, "We don't need the state on a PME only rank and expect it to be unitialized");
ewaldcoeff_q = calc_ewaldcoeff_q(inputrec->rcoulomb, inputrec->ewald_rtol);
ewaldcoeff_lj = calc_ewaldcoeff_lj(inputrec->rvdw, inputrec->ewald_rtol_lj);
}
gmx_pme_t *sepPmeData = nullptr;
// This reference hides the fact that PME data is owned by runner on PME-only ranks and by forcerec on other ranks
GMX_ASSERT(thisRankHasDuty(cr, DUTY_PP) == (fr != nullptr), "Double-checking that only PME-only ranks have no forcerec");
gmx_pme_t * &pmedata = fr ? fr->pmedata : sepPmeData;
/* Initiate PME if necessary,
* either on all nodes or on dedicated PME nodes only. */
if (EEL_PME(inputrec->coulombtype) || EVDW_PME(inputrec->vdwtype))
{
if (mdAtoms && mdAtoms->mdatoms())
{
nChargePerturbed = mdAtoms->mdatoms()->nChargePerturbed;
if (EVDW_PME(inputrec->vdwtype))
{
nTypePerturbed = mdAtoms->mdatoms()->nTypePerturbed;
}
}
if (cr->npmenodes > 0)
{
/* The PME only nodes need to know nChargePerturbed(FEP on Q) and nTypePerturbed(FEP on LJ)*/
gmx_bcast_sim(sizeof(nChargePerturbed), &nChargePerturbed, cr);
gmx_bcast_sim(sizeof(nTypePerturbed), &nTypePerturbed, cr);
}
if (thisRankHasDuty(cr, DUTY_PME))
{
try
{
pmedata = gmx_pme_init(cr, npme_major, npme_minor, inputrec,
mtop ? mtop->natoms : 0, nChargePerturbed, nTypePerturbed,
mdrunOptions.reproducible,
ewaldcoeff_q, ewaldcoeff_lj,
nthreads_pme,
pmeRunMode, nullptr, pmeDeviceInfo, mdlog);
}
GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
}
}
if (EI_DYNAMICS(inputrec->eI))
{
/* Turn on signal handling on all nodes */
/*
* (A user signal from the PME nodes (if any)
* is communicated to the PP nodes.
*/
signal_handler_install();
}
if (thisRankHasDuty(cr, DUTY_PP))
{
/* Assumes uniform use of the number of OpenMP threads */
walltime_accounting = walltime_accounting_init(gmx_omp_nthreads_get(emntDefault));
if (inputrec->bPull)
{
/* Initialize pull code */
inputrec->pull_work =
init_pull(fplog, inputrec->pull, inputrec, nfile, fnm,
mtop, cr, oenv, inputrec->fepvals->init_lambda,
EI_DYNAMICS(inputrec->eI) && MASTER(cr),
continuationOptions);
}
if (inputrec->bRot)
{
/* Initialize enforced rotation code */
init_rot(fplog, inputrec, nfile, fnm, cr, globalState.get(), mtop, oenv, mdrunOptions);
}
/* Let init_constraints know whether we have essential dynamics constraints.
* TODO: inputrec should tell us whether we use an algorithm, not a file option or the checkpoint
*/
bool doEdsam = (opt2fn_null("-ei", nfile, fnm) != nullptr || observablesHistory.edsamHistory);
constr = init_constraints(fplog, mtop, inputrec, doEdsam, cr);
if (DOMAINDECOMP(cr))
{
GMX_RELEASE_ASSERT(fr, "fr was NULL while cr->duty was DUTY_PP");
/* This call is not included in init_domain_decomposition mainly
* because fr->cginfo_mb is set later.
*/
dd_init_bondeds(fplog, cr->dd, mtop, vsite, inputrec,
domdecOptions.checkBondedInteractions,
fr->cginfo_mb);
}
/* PLUMED */
if(plumedswitch){
/* detect plumed API version */
int pversion=0;
plumed_cmd(plumedmain,"getApiVersion",&pversion);
if(pversion>5) {
int nth = gmx_omp_nthreads_get(emntDefault);
if(pversion>5) plumed_cmd(plumedmain,"setNumOMPthreads",&nth);
}
}
/* END PLUMED */
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
/* Now do whatever the user wants us to do (how flexible...) */
my_integrator(inputrec->eI) (fplog, cr, mdlog, nfile, fnm,
oenv,
mdrunOptions,
vsite, constr,
mdModules.outputProvider(),
inputrec, mtop,
fcd,
globalState.get(),
&observablesHistory,
mdAtoms.get(), nrnb, wcycle, fr,
replExParams,
membed,
walltime_accounting);
if (inputrec->bRot)
{
finish_rot(inputrec->rot);
}
if (inputrec->bPull)
{
finish_pull(inputrec->pull_work);
}
}
else
{
GMX_RELEASE_ASSERT(pmedata, "pmedata was NULL while cr->duty was not DUTY_PP");
/* do PME only */
walltime_accounting = walltime_accounting_init(gmx_omp_nthreads_get(emntPME));
gmx_pmeonly(pmedata, cr, nrnb, wcycle, walltime_accounting, inputrec, pmeRunMode);
}
wallcycle_stop(wcycle, ewcRUN);
/* Finish up, write some stuff
* if rerunMD, don't write last frame again
*/
finish_run(fplog, mdlog, cr,
inputrec, nrnb, wcycle, walltime_accounting,
fr ? fr->nbv : nullptr,
pmedata,
EI_DYNAMICS(inputrec->eI) && !MULTISIM(cr));
// Free PME data
if (pmedata)
{
gmx_pme_destroy(pmedata);
pmedata = nullptr;
}
// FIXME: this is only here to manually unpin mdAtoms->chargeA_ and state->x,
// before we destroy the GPU context(s) in free_gpu_resources().
// Pinned buffers are associated with contexts in CUDA.
// As soon as we destroy GPU contexts after mdrunner() exits, these lines should go.
mdAtoms.reset(nullptr);
globalState.reset(nullptr);
/* Free GPU memory and set a physical node tMPI barrier (which should eventually go away) */
free_gpu_resources(fr, cr);
free_gpu(nonbondedDeviceInfo);
free_gpu(pmeDeviceInfo);
if (doMembed)
{
free_membed(membed);
}
gmx_hardware_info_free();
/* Does what it says */
print_date_and_time(fplog, cr->nodeid, "Finished mdrun", gmx_gettime());
walltime_accounting_destroy(walltime_accounting);
/* PLUMED */
if(plumedswitch){
plumed_finalize(plumedmain);
}
/* END PLUMED */
/* Close logfile already here if we were appending to it */
if (MASTER(cr) && continuationOptions.appendFiles)
{
gmx_log_close(fplog);
}
rc = (int)gmx_get_stop_condition();
#if GMX_THREAD_MPI
/* we need to join all threads. The sub-threads join when they
exit this function, but the master thread needs to be told to
wait for that. */
if (PAR(cr) && MASTER(cr))
{
tMPI_Finalize();
}
#endif
return rc;
}
} // namespace gmx