2#ifndef STORMM_HPC_INTEGRATION_H
3#define STORMM_HPC_INTEGRATION_H
6# include <cuda_runtime.h>
9#include "Accelerator/core_kernel_manager.h"
10#include "Constants/behavior.h"
11#include "DataTypes/common_types.h"
12#include "DataTypes/stormm_vector_types.h"
13#include "MolecularMechanics/mm_controls.h"
14#include "Numerics/numeric_enumerators.h"
15#include "Potential/cacheresource.h"
16#include "Potential/cellgrid.h"
17#include "Potential/energy_enumerators.h"
18#include "Synthesis/atomgraph_synthesis.h"
19#include "Synthesis/phasespace_synthesis.h"
20#include "thermostat.h"
21#include "trajectory_enumerators.h"
26using card::CoreKlManager;
27using constants::PrecisionModel;
28using energy::CacheResource;
29using energy::CacheResourceKit;
30using energy::CellGrid;
31using energy::CellGridReader;
32using energy::ValenceKernelSize;
33using mm::MolecularMechanicsControls;
34using mm::MMControlKit;
35using numerics::AccumulationMethod;
36using synthesis::AtomGraphSynthesis;
37using synthesis::PhaseSpaceSynthesis;
38using synthesis::PsSynthesisWriter;
39using synthesis::SyAtomUpdateKit;
40using synthesis::SyValenceKit;
65cudaFuncAttributes queryIntegrationKernelRequirements(PrecisionModel calc_prec,
66 PrecisionModel neighbor_prec,
67 UnitCellType unit_cell,
68 AccumulationMethod acc_meth,
69 ValenceKernelSize kwidth,
70 IntegrationStage process);
72cudaFuncAttributes queryIntegrationKernelRequirements(PrecisionModel calc_prec,
73 AccumulationMethod acc_meth,
74 ValenceKernelSize kwidth,
75 IntegrationStage process);
113 IntegrationStage process);
119 AccumulationMethod acc_meth, ValenceKernelSize kwidth,
120 IntegrationStage process);
128 IntegrationStage process);
136 IntegrationStage process);
145 IntegrationStage process);
154 IntegrationStage process);
162 AccumulationMethod acc_meth, IntegrationStage process);
170 AccumulationMethod acc_meth, IntegrationStage process);
179 AccumulationMethod acc_meth, IntegrationStage process);
188 AccumulationMethod acc_meth, IntegrationStage process);
193 PrecisionModel prec, AccumulationMethod acc_meth,
194 IntegrationStage process);
200 PrecisionModel prec, AccumulationMethod acc_meth,
201 IntegrationStage process);
207 PrecisionModel prec, AccumulationMethod acc_meth,
208 IntegrationStage process);
215 PrecisionModel prec, AccumulationMethod acc_meth,
216 IntegrationStage process);
223 PrecisionModel prec, AccumulationMethod acc_meth,
224 IntegrationStage process);
A class to guide the implementation of GPU kernels, with selected thread counts per block and block c...
Definition core_kernel_manager.h:56
An object to hold temporary data for a particular work unit (whether bonded or non-bonded),...
Definition cacheresource.h:63
An object to manage the spatial decomposition of a system of particles. The general strategy is to ar...
Definition cellgrid.h:562
A collection of contol data for molecular mechanics simulations, conveying the current step number,...
Definition mm_controls.h:100
A collection of one or more AtomGraph objects, with similar components arranged in contiguous arrays ...
Definition atomgraph_synthesis.h:55
A fixed-precision representation of coordinates, velocities, and forces to manage a set of simulation...
Definition phasespace_synthesis.h:325
Store the parameters for a simulation thermostat. Includes Berendsen, Andersen, and Langevin methods....
Definition thermostat.h:221
Abstract for the CacheResource object, accessible as a C-style struct and suitable for passing to GPU...
Definition cacheresource.h:17
Read-only abstract for the CellGrid object. This is unused in typical MD applications,...
Definition cellgrid.h:296
The C-style, always writeable abstract for the MolecularMechanicsControls object. To not be able to m...
Definition mm_controls.h:52
The writer for a PhaseSpaceSynthesis object, containing all of the data relevant for propagating dyna...
Definition phasespace_synthesis.h:87
Collect the virtual site details and constraint parameters of the topology synthesis into a single ab...
Definition synthesis_abstracts.h:257
Collect the critical valence parameters and indexing information for work unit-based evaluation of th...
Definition synthesis_abstracts.h:19
Partially writeable abstract for the Thermostat object. As with the MMControlKit struct (see the libr...
Definition thermostat.h:58