CpuCustomNonbondedForce.h 9.63 KB
Newer Older
1

2
/* Portions copyright (c) 2009-2022 Stanford University and Simbios.
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
 * Contributors: Peter Eastman
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject
 * to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 * IN NO EVENT SHALL THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

#ifndef OPENMM_CPU_CUSTOM_NONBONDED_FORCE_H__
#define OPENMM_CPU_CUSTOM_NONBONDED_FORCE_H__

#include "AlignedArray.h"
#include "CpuNeighborList.h"
30
#include "openmm/internal/CompiledExpressionSet.h"
31
32
#include "openmm/internal/ThreadPool.h"
#include "openmm/internal/vectorize.h"
33
34
#include "lepton/CompiledVectorExpression.h"
#include "lepton/ParsedExpression.h"
peastman's avatar
peastman committed
35
#include <atomic>
36
37
38
39
40
41
42
#include <map>
#include <set>
#include <utility>
#include <vector>

namespace OpenMM {

43
44
class CpuCustomNonbondedForce {
public:
45
46
47
48
49
50
      /**---------------------------------------------------------------------------------------

         Constructor

         --------------------------------------------------------------------------------------- */

51
       CpuCustomNonbondedForce(ThreadPool& threads, const CpuNeighborList& neighbors);
52
53
54
55
56

       void initialize(const Lepton::ParsedExpression& energyExpression, const Lepton::ParsedExpression& forceExpression,
                       const std::vector<std::string>& parameterNames, const std::vector<std::set<int> >& exclusions,
                       const std::vector<Lepton::ParsedExpression> energyParamDerivExpressions,
                       const std::vector<std::string>& computedValueNames, const std::vector<Lepton::ParsedExpression> computedValueExpressions);
57
58
59
60
61
62
63

      /**---------------------------------------------------------------------------------------

         Destructor

         --------------------------------------------------------------------------------------- */

64
       virtual ~CpuCustomNonbondedForce();
65
66
67
68
69
70
71
72
73

      /**---------------------------------------------------------------------------------------

         Set the force to use a cutoff.

         @param distance            the cutoff distance

         --------------------------------------------------------------------------------------- */

74
      void setUseCutoff(double distance);
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94

      /**---------------------------------------------------------------------------------------

         Restrict the force to a list of interaction groups.

         @param distance            the cutoff distance
         @param neighbors           the neighbor list to use

         --------------------------------------------------------------------------------------- */

      void setInteractionGroups(const std::vector<std::pair<std::set<int>, std::set<int> > >& groups);

      /**---------------------------------------------------------------------------------------
      
         Set the force to use a switching function.
      
         @param distance            the switching distance
      
         --------------------------------------------------------------------------------------- */
      
peastman's avatar
peastman committed
95
      void setUseSwitchingFunction(double distance);
96
97
98
99
100
101
102

      /**---------------------------------------------------------------------------------------

         Set the force to use periodic boundary conditions.  This requires that a cutoff has
         already been set, and the smallest side of the periodic box is at least twice the cutoff
         distance.

103
         @param periodicBoxVectors    the vectors defining the periodic box
104
105
106

         --------------------------------------------------------------------------------------- */

peastman's avatar
peastman committed
107
      void setPeriodic(Vec3* periodicBoxVectors);
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123

      /**---------------------------------------------------------------------------------------

         Calculate custom pair ixn

         @param numberOfAtoms    number of atoms
         @param posq             atom coordinates in float format
         @param atomCoordinates  atom coordinates
         @param atomParameters   atom parameters (charges, c6, c12, ...)     atomParameters[atomIndex][paramterIndex]
         @param globalParameters the values of global parameters
         @param forces           force array (forces added)
         @param totalEnergy      total energy
         @param threads          the thread pool to use

         --------------------------------------------------------------------------------------- */

124
125
126
    void calculatePairIxn(int numberOfAtoms, float* posq, std::vector<OpenMM::Vec3>& atomCoordinates, std::vector<std::vector<double> >& atomParameters,
                          const std::map<std::string, double>& globalParameters, std::vector<AlignedArray<float> >& threadForce,
                          bool includeForce, bool includeEnergy, double& totalEnergy, double* energyParamDerivs);
127
protected:
128
129
130
131
132
    class ThreadData;

    bool cutoff;
    bool useSwitch;
    bool periodic;
133
    bool triclinic;
134
    bool useInteractionGroups;
135
    const CpuNeighborList* neighborList;
136
    float recipBoxSize[3];
peastman's avatar
peastman committed
137
    Vec3 periodicBoxVectors[3];
138
    AlignedArray<fvec4> periodicBoxVec4;
peastman's avatar
peastman committed
139
    double cutoffDistance, switchingDistance;
140
    ThreadPool& threads;
141
    std::vector<std::set<int> > exclusions;
142
    std::vector<ThreadData*> threadData;
143
    std::vector<std::string> paramNames, computedValueNames;
144
145
    std::vector<std::pair<int, int> > groupInteractions;
    std::vector<double> threadEnergy;
146
    std::vector<std::vector<double> > atomComputedValues;
147
148
149
    // The following variables are used to make information accessible to the individual threads.
    int numberOfAtoms;
    float* posq;
peastman's avatar
peastman committed
150
    Vec3 const* atomCoordinates;
151
    std::vector<double>* atomParameters;        
152
153
154
    const std::map<std::string, double>* globalParameters;
    std::vector<AlignedArray<float> >* threadForce;
    bool includeForce, includeEnergy;
peastman's avatar
peastman committed
155
    std::atomic<int> atomicCounter;
156
157
158
159
160

    /**
     * This routine contains the code executed by each thread.
     */
    void threadComputeForce(ThreadPool& threads, int threadIndex);
161

162
163
164
165
166
167
168
169
170
    /**
     * Calculate the interaction between two atoms.
     * 
     * @param atom1            the index of the first atom
     * @param atom2            the index of the second atom
     * @param data             workspace for the current thread
     * @param forces           force array (forces added)
     * @param totalEnergy      total energy
     * @param boxSize          the size of the periodic box
171
     * @param invBoxSize       the inverse size of the periodic box
172
173
174
     */
    void calculateOneIxn(int atom1, int atom2, ThreadData& data, float* forces, double& totalEnergy, const fvec4& boxSize, const fvec4& invBoxSize);

175
176
177
178
179
180
181
182
183
184
185
186
    /**
     * Calculate all the interactions for one block of atoms.
     * 
     * @param data            workspace for the current thread
     * @param blockIndex      the index of the atom block
     * @param forces          force array (forces added)
     * @param totalEnergy     total energy
     * @param boxSize         the size of the periodic box
     * @param invBoxSize       the inverse size of the periodic box
     */
    virtual void calculateBlockIxn(ThreadData& data, int blockIndex, float* forces, double& totalEnergy, const fvec4& boxSize, const fvec4& invBoxSize) = 0;

187
188
189
190
191
    /**
     * Compute the displacement and squared distance between two points, optionally using
     * periodic boundary conditions.
     */
    void getDeltaR(const fvec4& posI, const fvec4& posJ, fvec4& deltaR, float& r2, const fvec4& boxSize, const fvec4& invBoxSize) const;
192
193
};

194
195
class CpuCustomNonbondedForce::ThreadData {
public:
196
197
    ThreadData(const Lepton::CompiledExpression& energyExpression, const Lepton::CompiledVectorExpression& energyVecExpression,
            const Lepton::CompiledExpression& forceExpression, const Lepton::CompiledVectorExpression& forceVecExpression, const std::vector<std::string>& parameterNames,
198
199
            const std::vector<Lepton::CompiledExpression> energyParamDerivExpressions, const std::vector<std::string>& computedValueNames,
            const std::vector<Lepton::CompiledExpression> computedValueExpressions, std::vector<std::vector<double> >& atomComputedValues);
200
201
    Lepton::CompiledExpression energyExpression, forceExpression;
    Lepton::CompiledVectorExpression energyVecExpression, forceVecExpression;
202
    std::vector<Lepton::CompiledExpression> computedValueExpressions, energyParamDerivExpressions;
203
    CompiledExpressionSet expressionSet;
204
    std::vector<double> particleParam, computedValues;
205
    std::vector<float> rvec, vecParticle1Params, vecParticle2Params, vecParticle1Values, vecParticle2Values;
206
    double r;
peastman's avatar
peastman committed
207
    std::vector<double> energyParamDerivs; 
208
    std::vector<std::vector<double> >& atomComputedValues;
209
210
};

211
212
213
/**
 * This function is called to create an instance of an appropriate subclass for the current CPU.
 */
214
CpuCustomNonbondedForce* createCpuCustomNonbondedForce(ThreadPool& threads, const CpuNeighborList& neighbors);
215

216
217
218
} // namespace OpenMM

#endif // OPENMM_CPU_CUSTOM_NONBONDED_FORCE_H__