Newer
Older
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
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
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
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);
}
/* 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);
/* 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