OpenCLIntegrationUtilities.h 5.83 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"
33
34
35
36
37

namespace OpenMM {

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

41
class OPENMM_EXPORT OpenCLIntegrationUtilities {
42
43
44
45
46
47
48
49
50
public:
    OpenCLIntegrationUtilities(OpenCLContext& context, const System& system);
    ~OpenCLIntegrationUtilities();
    /**
     * Get the array which contains position deltas.
     */
    OpenCLArray<mm_float4>& getPosDelta() {
        return *posDelta;
    }
51
    /**
52
53
     * 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.
54
55
56
57
     */
    OpenCLArray<mm_float4>& getRandom() {
        return *random;
    }
58
59
60
61
62
63
    /**
     * Get the array which contains the current step size.
     */
    OpenCLArray<mm_float2>& getStepSize() {
        return *stepSize;
    }
64
65
66
67
68
    /**
     * Apply constraints to the atom positions.
     *
     * @param tol             the constraint tolerance
     */
69
    void applyConstraints(double tol);
70
71
72
73
74
75
    /**
     * Apply constraints to the atom velocities.
     *
     * @param tol             the constraint tolerance
     */
    void applyVelocityConstraints(double tol);
76
77
78
79
80
81
82
83
84
85
86
    /**
     * 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);
87
88
89
90
91
92
93
94
    /**
     * Compute the positions of virtual sites.
     */
    void computeVirtualSites();
    /**
     * Distribute forces from virtual sites to the atoms they are based on.
     */
    void distributeForcesFromVirtualSites();
95
private:
96
    void applyConstraints(bool constrainVelocities, double tol);
97
    OpenCLContext& context;
98
99
    cl::Kernel settlePosKernel, settleVelKernel;
    cl::Kernel shakePosKernel, shakeVelKernel;
100
    cl::Kernel ccmaDirectionsKernel;
101
    cl::Kernel ccmaPosForceKernel, ccmaVelForceKernel;
102
    cl::Kernel ccmaMultiplyKernel;
103
    cl::Kernel ccmaPosUpdateKernel, ccmaVelUpdateKernel;
104
    cl::Kernel vsitePositionKernel, vsiteForceKernel;
105
    cl::Kernel randomKernel;
106
107
108
109
110
    OpenCLArray<mm_float4>* posDelta;
    OpenCLArray<mm_int4>* settleAtoms;
    OpenCLArray<mm_float2>* settleParams;
    OpenCLArray<mm_int4>* shakeAtoms;
    OpenCLArray<mm_float4>* shakeParams;
111
112
    OpenCLArray<mm_float4>* random;
    OpenCLArray<mm_int4>* randomSeed;
113
    OpenCLArray<mm_float2>* stepSize;
114
115
116
117
118
119
120
121
122
123
    OpenCLArray<mm_int2>* ccmaAtoms;
    OpenCLArray<mm_float4>* ccmaDistance;
    OpenCLArray<cl_float>* ccmaReducedMass;
    OpenCLArray<cl_int>* ccmaAtomConstraints;
    OpenCLArray<cl_int>* ccmaNumAtomConstraints;
    OpenCLArray<cl_int>* ccmaConstraintMatrixColumn;
    OpenCLArray<cl_float>* ccmaConstraintMatrixValue;
    OpenCLArray<cl_float>* ccmaDelta1;
    OpenCLArray<cl_float>* ccmaDelta2;
    OpenCLArray<cl_int>* ccmaConverged;
Peter Eastman's avatar
Peter Eastman committed
124
125
    cl::Buffer* ccmaConvergedBuffer;
    cl_int* ccmaConvergedMemory;
126
127
128
129
130
131
    OpenCLArray<mm_int4>* vsite2AvgAtoms;
    OpenCLArray<mm_float2>* vsite2AvgWeights;
    OpenCLArray<mm_int4>* vsite3AvgAtoms;
    OpenCLArray<mm_float4>* vsite3AvgWeights;
    OpenCLArray<mm_int4>* vsiteOutOfPlaneAtoms;
    OpenCLArray<mm_float4>* vsiteOutOfPlaneWeights;
132
    int randomPos;
133
    int lastSeed, numVsites;
134
    bool hasInitializedPosConstraintKernels, hasInitializedVelConstraintKernels;
135
    struct ShakeCluster;
136
    struct ConstraintOrderer;
137
138
139
140
141
};

} // namespace OpenMM

#endif /*OPENMM_OPENCLINTEGRATIONUTILITIES_H_*/