2#ifndef STORMM_HPC_REDUCTION_H
3#define STORMM_HPC_REDUCTION_H
6#include "Accelerator/core_kernel_manager.h"
7#include "MolecularMechanics/mm_controls.h"
8#include "Synthesis/atomgraph_synthesis.h"
9#include "Synthesis/phasespace_synthesis.h"
10#include "reduction_abstracts.h"
11#include "reduction_bridge.h"
12#include "reduction_enumerators.h"
17using card::CoreKlManager;
18using constants::PrecisionModel;
19using mm::MolecularMechanicsControls;
20using mm::MMControlKit;
21using synthesis::AtomGraphSynthesis;
22using synthesis::PhaseSpaceSynthesis;
33cudaFuncAttributes queryReductionKernelRequirements(
const PrecisionModel prec,
34 const ReductionGoal purpose,
35 const ReductionStage 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
A collection of contol data for molecular mechanics simulations, conveying the current step number,...
Definition mm_controls.h:100
Allocate space for reduction operations to store temporary accumulations, bridging the gap between ga...
Definition reduction_bridge.h:18
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
The C-style, always writeable abstract for the MolecularMechanicsControls object. To not be able to m...
Definition mm_controls.h:52
Collect pointers needed for conjugate gradient reduction operations, normalizing forces and mixing th...
Definition reduction_abstracts.h:121
Collect the simple components needed to guide reductions across all systems in a topology synthesis (...
Definition reduction_abstracts.h:24