OpenCLIntegrationUtilities.h 4.67 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
32
33
34
35
36
#include "OpenCLContext.h"

namespace OpenMM {

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

40
class OPENMM_EXPORT OpenCLIntegrationUtilities {
41
42
43
44
45
46
47
48
49
public:
    OpenCLIntegrationUtilities(OpenCLContext& context, const System& system);
    ~OpenCLIntegrationUtilities();
    /**
     * Get the array which contains position deltas.
     */
    OpenCLArray<mm_float4>& getPosDelta() {
        return *posDelta;
    }
50
51
52
53
54
55
    /**
     * Get the array which contains random values.
     */
    OpenCLArray<mm_float4>& getRandom() {
        return *random;
    }
56
57
58
59
60
61
    /**
     * Get the array which contains the current step size.
     */
    OpenCLArray<mm_float2>& getStepSize() {
        return *stepSize;
    }
62
63
64
65
66
    /**
     * Apply constraints to the atom positions.
     *
     * @param tol             the constraint tolerance
     */
67
    void applyConstraints(double tol);
68
69
70
71
72
73
74
75
76
77
78
    /**
     * 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);
79
80
private:
    OpenCLContext& context;
81
    cl::Kernel settleKernel;
82
    cl::Kernel shakeKernel;
83
84
85
86
    cl::Kernel ccmaDirectionsKernel;
    cl::Kernel ccmaForceKernel;
    cl::Kernel ccmaMultiplyKernel;
    cl::Kernel ccmaUpdateKernel;
87
    cl::Kernel randomKernel;
88
89
90
91
92
    OpenCLArray<mm_float4>* posDelta;
    OpenCLArray<mm_int4>* settleAtoms;
    OpenCLArray<mm_float2>* settleParams;
    OpenCLArray<mm_int4>* shakeAtoms;
    OpenCLArray<mm_float4>* shakeParams;
93
94
    OpenCLArray<mm_float4>* random;
    OpenCLArray<mm_int4>* randomSeed;
95
    OpenCLArray<mm_float2>* stepSize;
96
97
98
99
100
101
102
103
104
105
    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;
106
107
    int randomPos;
    int lastSeed;
108
    bool hasInitializedConstraintKernels;
109
    struct ShakeCluster;
110
    struct ConstraintOrderer;
111
112
113
114
115
};

} // namespace OpenMM

#endif /*OPENMM_OPENCLINTEGRATIONUTILITIES_H_*/