"vscode:/vscode.git/clone" did not exist on "f9cebbf0a3fcb8ba6ec7faf1030cc8a1c581ba07"
OpenCLIntegrationUtilities.h 6.31 KB
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
#ifndef OPENMM_OPENCLINTEGRATIONUTILITIES_H_
#define OPENMM_OPENCLINTEGRATIONUTILITIES_H_

/* -------------------------------------------------------------------------- *
 *                                   OpenMM                                   *
 * -------------------------------------------------------------------------- *
 * This is part of the OpenMM molecular simulation toolkit originating from   *
 * Simbios, the NIH National Center for Physics-Based Simulation of           *
 * Biological Structures at Stanford, funded under the NIH Roadmap for        *
 * Medical Research, grant U54 GM072970. See https://simtk.org.               *
 *                                                                            *
 * Portions copyright (c) 2009 Stanford University and the Authors.           *
 * Authors: Peter Eastman                                                     *
 * Contributors:                                                              *
 *                                                                            *
 * This program 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 3 of the License, or       *
 * (at your option) any later version.                                        *
 *                                                                            *
 * This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.      *
 * -------------------------------------------------------------------------- */

Peter Eastman's avatar
Bug fix  
Peter Eastman committed
30
#include "openmm/System.h"
31
#include "OpenCLContext.h"
32
#include "openmm/internal/windowsExport.h"
Peter Eastman's avatar
Peter Eastman committed
33
#include <iosfwd>
34
35
36
37
38

namespace OpenMM {

/**
 * This class implements features that are used by many different integrators, including
39
 * common workspace arrays, random number generation, and enforcing constraints.
40
41
 */

42
class OPENMM_EXPORT OpenCLIntegrationUtilities {
43
44
45
46
47
48
public:
    OpenCLIntegrationUtilities(OpenCLContext& context, const System& system);
    ~OpenCLIntegrationUtilities();
    /**
     * Get the array which contains position deltas.
     */
49
    OpenCLArray& getPosDelta() {
50
51
        return *posDelta;
    }
52
    /**
53
54
     * Get the array which contains random values.  Each element is a float4, whose components
     * are independent, normally distributed random numbers with mean 0 and variance 1.
55
     */
56
    OpenCLArray& getRandom() {
57
58
        return *random;
    }
59
60
61
    /**
     * Get the array which contains the current step size.
     */
62
    OpenCLArray& getStepSize() {
63
64
        return *stepSize;
    }
65
66
67
68
69
    /**
     * Apply constraints to the atom positions.
     *
     * @param tol             the constraint tolerance
     */
70
    void applyConstraints(double tol);
71
72
73
74
75
76
    /**
     * Apply constraints to the atom velocities.
     *
     * @param tol             the constraint tolerance
     */
    void applyVelocityConstraints(double tol);
77
78
79
80
81
82
83
84
85
86
87
    /**
     * Initialize the random number generator.
     */
    void initRandomNumberGenerator(unsigned int randomNumberSeed);
    /**
     * Ensure that sufficient random numbers are available in the array, and generate new ones if not.
     *
     * @param numValues     the number of random float4's that will be required
     * @return the index in the array at which to start reading
     */
    int prepareRandomNumbers(int numValues);
88
89
90
91
92
93
94
95
    /**
     * Compute the positions of virtual sites.
     */
    void computeVirtualSites();
    /**
     * Distribute forces from virtual sites to the atoms they are based on.
     */
    void distributeForcesFromVirtualSites();
Peter Eastman's avatar
Peter Eastman committed
96
97
98
99
100
101
102
103
104
105
106
107
    /**
     * Create a checkpoint recording the current state of the random number generator.
     * 
     * @param stream    an output stream the checkpoint data should be written to
     */
    void createCheckpoint(std::ostream& stream);
    /**
     * Load a checkpoint that was written by createCheckpoint().
     * 
     * @param stream    an input stream the checkpoint data should be read from
     */
    void loadCheckpoint(std::istream& stream);
108
109
110
111
112
113
114
    /**
     * Compute the kinetic energy of the system, possibly shifting the velocities in time to account
     * for a leapfrog integrator.
     * 
     * @param timeShift   the amount by which to shift the velocities in time
     */
    double computeKineticEnergy(double timeShift);
115
private:
116
    void applyConstraints(bool constrainVelocities, double tol);
117
    OpenCLContext& context;
118
119
    cl::Kernel settlePosKernel, settleVelKernel;
    cl::Kernel shakePosKernel, shakeVelKernel;
120
    cl::Kernel ccmaDirectionsKernel;
121
    cl::Kernel ccmaPosForceKernel, ccmaVelForceKernel;
122
    cl::Kernel ccmaMultiplyKernel;
123
    cl::Kernel ccmaPosUpdateKernel, ccmaVelUpdateKernel;
124
    cl::Kernel vsitePositionKernel, vsiteForceKernel;
125
    cl::Kernel randomKernel;
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
    OpenCLArray* posDelta;
    OpenCLArray* settleAtoms;
    OpenCLArray* settleParams;
    OpenCLArray* shakeAtoms;
    OpenCLArray* shakeParams;
    OpenCLArray* random;
    OpenCLArray* randomSeed;
    OpenCLArray* stepSize;
    OpenCLArray* ccmaAtoms;
    OpenCLArray* ccmaDistance;
    OpenCLArray* ccmaReducedMass;
    OpenCLArray* ccmaAtomConstraints;
    OpenCLArray* ccmaNumAtomConstraints;
    OpenCLArray* ccmaConstraintMatrixColumn;
    OpenCLArray* ccmaConstraintMatrixValue;
    OpenCLArray* ccmaDelta1;
    OpenCLArray* ccmaDelta2;
    OpenCLArray* ccmaConverged;
Peter Eastman's avatar
Peter Eastman committed
144
145
    cl::Buffer* ccmaConvergedBuffer;
    cl_int* ccmaConvergedMemory;
146
147
148
149
150
151
    OpenCLArray* vsite2AvgAtoms;
    OpenCLArray* vsite2AvgWeights;
    OpenCLArray* vsite3AvgAtoms;
    OpenCLArray* vsite3AvgWeights;
    OpenCLArray* vsiteOutOfPlaneAtoms;
    OpenCLArray* vsiteOutOfPlaneWeights;
152
    int randomPos;
153
    int lastSeed, numVsites;
154
    bool hasInitializedPosConstraintKernels, hasInitializedVelConstraintKernels;
155
    struct ShakeCluster;
156
    struct ConstraintOrderer;
157
158
159
160
161
};

} // namespace OpenMM

#endif /*OPENMM_OPENCLINTEGRATIONUTILITIES_H_*/