OpenCLKernels.h 75.1 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
#ifndef OPENMM_OPENCLKERNELS_H_
#define OPENMM_OPENCLKERNELS_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.               *
 *                                                                            *
12
 * Portions copyright (c) 2008-2019 Stanford University and the Authors.      *
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 * 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/>.      *
 * -------------------------------------------------------------------------- */

#include "OpenCLPlatform.h"
31
32
#include "OpenCLArray.h"
#include "OpenCLContext.h"
33
#include "OpenCLFFT3D.h"
34
#include "OpenCLParameterSet.h"
35
#include "OpenCLSort.h"
36
#include "openmm/kernels.h"
37
38
#include "openmm/internal/CompiledExpressionSet.h"
#include "openmm/internal/CustomIntegratorUtilities.h"
39
#include "openmm/internal/NoseHooverChain.h"
40
#include "lepton/CompiledExpression.h"
41
#include "lepton/ExpressionProgram.h"
42
43
44
45
#include "openmm/System.h"

namespace OpenMM {

46
/**
47
48
49
 * This kernel is invoked at the beginning and end of force and energy computations.  It gives the
 * Platform a chance to clear buffers and do other initialization at the beginning, and to do any
 * necessary work at the end to determine the final results.
50
 */
51
class OpenCLCalcForcesAndEnergyKernel : public CalcForcesAndEnergyKernel {
52
public:
53
    OpenCLCalcForcesAndEnergyKernel(std::string name, const Platform& platform, OpenCLContext& cl) : CalcForcesAndEnergyKernel(name, platform), cl(cl) {
54
55
56
57
58
59
60
61
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     */
    void initialize(const System& system);
    /**
62
     * This is called at the beginning of each force/energy computation, before calcForcesAndEnergy() has been called on
63
     * any ForceImpl.
64
     *
65
66
67
     * @param context       the context in which to execute this kernel
     * @param includeForce  true if forces should be computed
     * @param includeEnergy true if potential energy should be computed
68
     * @param groups        a set of bit flags for which force groups to include
69
     */
70
    void beginComputation(ContextImpl& context, bool includeForce, bool includeEnergy, int groups);
71
    /**
72
     * This is called at the end of each force/energy computation, after calcForcesAndEnergy() has been called on
73
74
     * every ForceImpl.
     *
75
76
77
     * @param context       the context in which to execute this kernel
     * @param includeForce  true if forces should be computed
     * @param includeEnergy true if potential energy should be computed
78
     * @param groups        a set of bit flags for which force groups to include
79
80
     * @param valid         the method may set this to false to indicate the results are invalid and the force/energy
     *                      calculation should be repeated
81
     * @return the potential energy of the system.  This value is added to all values returned by ForceImpls'
82
     * calcForcesAndEnergy() methods.  That is, each force kernel may <i>either</i> return its contribution to the
83
84
     * energy directly, <i>or</i> add it to an internal buffer so that it will be included here.
     */
85
    double finishComputation(ContextImpl& context, bool includeForce, bool includeEnergy, int groups, bool& valid);
86
private:
87
   OpenCLContext& cl;
88
89
90
};

/**
91
92
 * This kernel provides methods for setting and retrieving various state data: time, positions,
 * velocities, and forces.
93
 */
94
class OpenCLUpdateStateDataKernel : public UpdateStateDataKernel {
95
public:
96
    OpenCLUpdateStateDataKernel(std::string name, const Platform& platform, OpenCLContext& cl) : UpdateStateDataKernel(name, platform), cl(cl) {
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     */
    void initialize(const System& system);
    /**
     * Get the current time (in picoseconds).
     *
     * @param context    the context in which to execute this kernel
     */
    double getTime(const ContextImpl& context) const;
    /**
     * Set the current time (in picoseconds).
     *
     * @param context    the context in which to execute this kernel
     */
    void setTime(ContextImpl& context, double time);
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
    /**
     * Get the positions of all particles.
     *
     * @param positions  on exit, this contains the particle positions
     */
    void getPositions(ContextImpl& context, std::vector<Vec3>& positions);
    /**
     * Set the positions of all particles.
     *
     * @param positions  a vector containg the particle positions
     */
    void setPositions(ContextImpl& context, const std::vector<Vec3>& positions);
    /**
     * Get the velocities of all particles.
     *
     * @param velocities  on exit, this contains the particle velocities
     */
    void getVelocities(ContextImpl& context, std::vector<Vec3>& velocities);
    /**
     * Set the velocities of all particles.
     *
     * @param velocities  a vector containg the particle velocities
     */
    void setVelocities(ContextImpl& context, const std::vector<Vec3>& velocities);
    /**
     * Get the current forces on all particles.
     *
     * @param forces  on exit, this contains the forces
     */
    void getForces(ContextImpl& context, std::vector<Vec3>& forces);
146
147
148
149
150
151
    /**
     * Get the current derivatives of the energy with respect to context parameters.
     *
     * @param derivs  on exit, this contains the derivatives
     */
    void getEnergyParameterDerivatives(ContextImpl& context, std::map<std::string, double>& derivs);
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
    /**
     * Get the current periodic box vectors.
     *
     * @param a      on exit, this contains the vector defining the first edge of the periodic box
     * @param b      on exit, this contains the vector defining the second edge of the periodic box
     * @param c      on exit, this contains the vector defining the third edge of the periodic box
     */
    void getPeriodicBoxVectors(ContextImpl& context, Vec3& a, Vec3& b, Vec3& c) const;
    /**
     * Set the current periodic box vectors.
     *
     * @param a      the vector defining the first edge of the periodic box
     * @param b      the vector defining the second edge of the periodic box
     * @param c      the vector defining the third edge of the periodic box
     */
167
    void setPeriodicBoxVectors(ContextImpl& context, const Vec3& a, const Vec3& b, const Vec3& c);
Peter Eastman's avatar
Peter Eastman committed
168
169
170
171
172
173
174
175
176
177
178
179
    /**
     * Create a checkpoint recording the current state of the Context.
     * 
     * @param stream    an output stream the checkpoint data should be written to
     */
    void createCheckpoint(ContextImpl& context, 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(ContextImpl& context, std::istream& stream);
180
private:
181
    OpenCLContext& cl;
182
};
183

184
185
186
187
188
/**
 * This kernel modifies the positions of particles to enforce distance constraints.
 */
class OpenCLApplyConstraintsKernel : public ApplyConstraintsKernel {
public:
189
190
    OpenCLApplyConstraintsKernel(std::string name, const Platform& platform, OpenCLContext& cl) : ApplyConstraintsKernel(name, platform),
            cl(cl), hasInitializedKernel(false) {
191
192
193
194
195
196
197
198
199
200
201
202
203
204
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     */
    void initialize(const System& system);
    /**
     * Update particle positions to enforce constraints.
     *
     * @param context    the context in which to execute this kernel
     * @param tol        the distance tolerance within which constraints must be satisfied.
     */
    void apply(ContextImpl& context, double tol);
205
206
207
208
209
210
211
    /**
     * Update particle velocities to enforce constraints.
     *
     * @param context    the context in which to execute this kernel
     * @param tol        the velocity tolerance within which constraints must be satisfied.
     */
    void applyToVelocities(ContextImpl& context, double tol);
212
213
private:
    OpenCLContext& cl;
214
215
    bool hasInitializedKernel;
    cl::Kernel applyDeltasKernel;
216
217
};

218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/**
 * This kernel recomputes the positions of virtual sites.
 */
class OpenCLVirtualSitesKernel : public VirtualSitesKernel {
public:
    OpenCLVirtualSitesKernel(std::string name, const Platform& platform, OpenCLContext& cl) : VirtualSitesKernel(name, platform), cl(cl) {
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     */
    void initialize(const System& system);
    /**
     * Compute the virtual site locations.
     *
     * @param context    the context in which to execute this kernel
     */
    void computePositions(ContextImpl& context);
private:
    OpenCLContext& cl;
};

241
242
243
244
245
/**
 * This kernel is invoked by HarmonicBondForce to calculate the forces acting on the system and the energy of the system.
 */
class OpenCLCalcHarmonicBondForceKernel : public CalcHarmonicBondForceKernel {
public:
246
    OpenCLCalcHarmonicBondForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcHarmonicBondForceKernel(name, platform),
peastman's avatar
peastman committed
247
            hasInitializedKernel(false), cl(cl), system(system) {
248
249
250
251
252
253
254
255
256
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the HarmonicBondForce this kernel will be used for
     */
    void initialize(const System& system, const HarmonicBondForce& force);
    /**
257
     * Execute the kernel to calculate the forces and/or energy.
258
     *
259
260
261
262
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
263
     */
264
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
265
266
267
268
269
270
271
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the HarmonicBondForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const HarmonicBondForce& force);
272
private:
273
    class ForceInfo;
274
    int numBonds;
275
    bool hasInitializedKernel;
276
    OpenCLContext& cl;
277
    ForceInfo* info;
278
    const System& system;
peastman's avatar
peastman committed
279
    OpenCLArray params;
280
281
};

282
283
284
285
286
/**
 * This kernel is invoked by CustomBondForce to calculate the forces acting on the system and the energy of the system.
 */
class OpenCLCalcCustomBondForceKernel : public CalcCustomBondForceKernel {
public:
287
    OpenCLCalcCustomBondForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcCustomBondForceKernel(name, platform),
peastman's avatar
peastman committed
288
            hasInitializedKernel(false), cl(cl), system(system), params(NULL) {
289
290
291
292
293
294
295
296
297
298
    }
    ~OpenCLCalcCustomBondForceKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the CustomBondForce this kernel will be used for
     */
    void initialize(const System& system, const CustomBondForce& force);
    /**
299
     * Execute the kernel to calculate the forces and/or energy.
300
     *
301
302
303
304
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
305
     */
306
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
307
308
309
310
311
312
313
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the CustomBondForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const CustomBondForce& force);
314
private:
315
    class ForceInfo;
316
317
318
    int numBonds;
    bool hasInitializedKernel;
    OpenCLContext& cl;
319
    ForceInfo* info;
320
    const System& system;
321
    OpenCLParameterSet* params;
peastman's avatar
peastman committed
322
    OpenCLArray globals;
323
324
325
326
    std::vector<std::string> globalParamNames;
    std::vector<cl_float> globalParamValues;
};

327
328
329
330
331
/**
 * This kernel is invoked by HarmonicAngleForce to calculate the forces acting on the system and the energy of the system.
 */
class OpenCLCalcHarmonicAngleForceKernel : public CalcHarmonicAngleForceKernel {
public:
332
    OpenCLCalcHarmonicAngleForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcHarmonicAngleForceKernel(name, platform),
peastman's avatar
peastman committed
333
            hasInitializedKernel(false), cl(cl), system(system) {
334
335
336
337
338
339
340
341
342
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the HarmonicAngleForce this kernel will be used for
     */
    void initialize(const System& system, const HarmonicAngleForce& force);
    /**
343
     * Execute the kernel to calculate the forces and/or energy.
344
     *
345
346
347
348
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
349
     */
350
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
351
352
353
354
355
356
357
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the HarmonicAngleForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const HarmonicAngleForce& force);
358
private:
359
    class ForceInfo;
360
    int numAngles;
361
    bool hasInitializedKernel;
362
    OpenCLContext& cl;
363
    ForceInfo* info;
364
    const System& system;
peastman's avatar
peastman committed
365
    OpenCLArray params;
366
367
};

368
369
370
371
372
/**
 * This kernel is invoked by CustomAngleForce to calculate the forces acting on the system and the energy of the system.
 */
class OpenCLCalcCustomAngleForceKernel : public CalcCustomAngleForceKernel {
public:
373
    OpenCLCalcCustomAngleForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcCustomAngleForceKernel(name, platform),
peastman's avatar
peastman committed
374
            hasInitializedKernel(false), cl(cl), system(system), params(NULL) {
375
376
377
378
379
380
381
382
383
384
    }
    ~OpenCLCalcCustomAngleForceKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the CustomAngleForce this kernel will be used for
     */
    void initialize(const System& system, const CustomAngleForce& force);
    /**
385
     * Execute the kernel to calculate the forces and/or energy.
386
     *
387
388
389
390
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
391
     */
392
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
393
394
395
396
397
398
399
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the CustomAngleForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const CustomAngleForce& force);
400
private:
401
    class ForceInfo;
402
403
404
    int numAngles;
    bool hasInitializedKernel;
    OpenCLContext& cl;
405
    ForceInfo* info;
406
    const System& system;
407
    OpenCLParameterSet* params;
peastman's avatar
peastman committed
408
    OpenCLArray globals;
409
410
411
412
    std::vector<std::string> globalParamNames;
    std::vector<cl_float> globalParamValues;
};

413
414
415
416
417
/**
 * This kernel is invoked by PeriodicTorsionForce to calculate the forces acting on the system and the energy of the system.
 */
class OpenCLCalcPeriodicTorsionForceKernel : public CalcPeriodicTorsionForceKernel {
public:
418
    OpenCLCalcPeriodicTorsionForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcPeriodicTorsionForceKernel(name, platform),
peastman's avatar
peastman committed
419
            hasInitializedKernel(false), cl(cl), system(system) {
420
421
422
423
424
425
426
427
428
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the PeriodicTorsionForce this kernel will be used for
     */
    void initialize(const System& system, const PeriodicTorsionForce& force);
    /**
429
     * Execute the kernel to calculate the forces and/or energy.
430
     *
431
432
433
434
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
435
     */
436
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
437
438
439
440
441
442
443
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the PeriodicTorsionForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const PeriodicTorsionForce& force);
444
private:
445
    class ForceInfo;
446
    int numTorsions;
447
    bool hasInitializedKernel;
448
    OpenCLContext& cl;
449
    ForceInfo* info;
450
    const System& system;
peastman's avatar
peastman committed
451
    OpenCLArray params;
452
453
};

454
455
456
457
458
/**
 * This kernel is invoked by RBTorsionForce to calculate the forces acting on the system and the energy of the system.
 */
class OpenCLCalcRBTorsionForceKernel : public CalcRBTorsionForceKernel {
public:
459
    OpenCLCalcRBTorsionForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcRBTorsionForceKernel(name, platform),
peastman's avatar
peastman committed
460
            hasInitializedKernel(false), cl(cl), system(system) {
461
462
463
464
465
466
467
468
469
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the RBTorsionForce this kernel will be used for
     */
    void initialize(const System& system, const RBTorsionForce& force);
    /**
470
     * Execute the kernel to calculate the forces and/or energy.
471
     *
472
473
474
475
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
476
     */
477
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
478
479
480
481
482
483
484
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the RBTorsionForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const RBTorsionForce& force);
485
private:
486
    class ForceInfo;
487
    int numTorsions;
488
    bool hasInitializedKernel;
489
    OpenCLContext& cl;
490
    ForceInfo* info;
491
    const System& system;
peastman's avatar
peastman committed
492
    OpenCLArray params;
493
494
};

495
496
497
498
499
/**
 * This kernel is invoked by CMAPTorsionForce to calculate the forces acting on the system and the energy of the system.
 */
class OpenCLCalcCMAPTorsionForceKernel : public CalcCMAPTorsionForceKernel {
public:
500
    OpenCLCalcCMAPTorsionForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcCMAPTorsionForceKernel(name, platform),
peastman's avatar
peastman committed
501
            hasInitializedKernel(false), cl(cl), system(system) {
502
503
504
505
506
507
508
509
510
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the CMAPTorsionForce this kernel will be used for
     */
    void initialize(const System& system, const CMAPTorsionForce& force);
    /**
511
     * Execute the kernel to calculate the forces and/or energy.
512
     *
513
514
515
516
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
517
     */
518
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
519
520
521
522
523
524
525
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the CMAPTorsionForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const CMAPTorsionForce& force);
526
private:
527
    class ForceInfo;
528
529
530
    int numTorsions;
    bool hasInitializedKernel;
    OpenCLContext& cl;
531
    ForceInfo* info;
532
    const System& system;
533
    std::vector<mm_int2> mapPositionsVec;
peastman's avatar
peastman committed
534
535
536
    OpenCLArray coefficients;
    OpenCLArray mapPositions;
    OpenCLArray torsionMaps;
537
538
};

539
540
541
542
543
/**
 * This kernel is invoked by CustomTorsionForce to calculate the forces acting on the system and the energy of the system.
 */
class OpenCLCalcCustomTorsionForceKernel : public CalcCustomTorsionForceKernel {
public:
544
    OpenCLCalcCustomTorsionForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcCustomTorsionForceKernel(name, platform),
peastman's avatar
peastman committed
545
            hasInitializedKernel(false), cl(cl), system(system), params(NULL) {
546
547
548
549
550
551
552
553
554
555
    }
    ~OpenCLCalcCustomTorsionForceKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the CustomTorsionForce this kernel will be used for
     */
    void initialize(const System& system, const CustomTorsionForce& force);
    /**
556
     * Execute the kernel to calculate the forces and/or energy.
557
     *
558
559
560
561
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
562
     */
563
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
564
565
566
567
568
569
570
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the CustomTorsionForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const CustomTorsionForce& force);
571
private:
572
    class ForceInfo;
573
574
575
    int numTorsions;
    bool hasInitializedKernel;
    OpenCLContext& cl;
576
    ForceInfo* info;
577
    const System& system;
578
    OpenCLParameterSet* params;
peastman's avatar
peastman committed
579
    OpenCLArray globals;
580
581
582
583
    std::vector<std::string> globalParamNames;
    std::vector<cl_float> globalParamValues;
};

584
585
586
587
588
/**
 * This kernel is invoked by NonbondedForce to calculate the forces acting on the system.
 */
class OpenCLCalcNonbondedForceKernel : public CalcNonbondedForceKernel {
public:
589
    OpenCLCalcNonbondedForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcNonbondedForceKernel(name, platform),
590
            hasInitializedKernel(false), cl(cl), sort(NULL), fft(NULL), dispersionFft(NULL), pmeio(NULL), usePmeQueue(false) {
591
592
593
594
595
596
597
598
599
600
    }
    ~OpenCLCalcNonbondedForceKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the NonbondedForce this kernel will be used for
     */
    void initialize(const System& system, const NonbondedForce& force);
    /**
601
     * Execute the kernel to calculate the forces and/or energy.
602
     *
603
604
605
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
606
607
     * @param includeDirect  true if direct space interactions should be included
     * @param includeReciprocal  true if reciprocal space interactions should be included
608
     * @return the potential energy due to the force
609
     */
610
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy, bool includeDirect, bool includeReciprocal);
611
612
613
614
615
616
617
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the NonbondedForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const NonbondedForce& force);
618
619
    /**
     * Get the parameters being used for PME.
620
     *
621
622
623
624
625
626
     * @param alpha   the separation parameter
     * @param nx      the number of grid points along the X axis
     * @param ny      the number of grid points along the Y axis
     * @param nz      the number of grid points along the Z axis
     */
    void getPMEParameters(double& alpha, int& nx, int& ny, int& nz) const;
627
628
629
630
631
632
633
634
    /**
     * Get the parameters being used for the dispersion term in LJPME.
     *
     * @param alpha   the separation parameter
     * @param nx      the number of grid points along the X axis
     * @param ny      the number of grid points along the Y axis
     * @param nz      the number of grid points along the Z axis
     */
635
    void getLJPMEParameters(double& alpha, int& nx, int& ny, int& nz) const;
636
private:
637
638
639
640
641
642
643
644
645
    class SortTrait : public OpenCLSort::SortTrait {
        int getDataSize() const {return 8;}
        int getKeySize() const {return 4;}
        const char* getDataType() const {return "int2";}
        const char* getKeyType() const {return "int";}
        const char* getMinKey() const {return "INT_MIN";}
        const char* getMaxKey() const {return "INT_MAX";}
        const char* getMaxValue() const {return "(int2) (INT_MAX, INT_MAX)";}
        const char* getSortKey() const {return "value.y";}
646
    };
647
    class ForceInfo;
648
649
650
    class PmeIO;
    class PmePreComputation;
    class PmePostComputation;
651
652
    class SyncQueuePreComputation;
    class SyncQueuePostComputation;
653
    OpenCLContext& cl;
654
    ForceInfo* info;
655
    bool hasInitializedKernel;
656
    OpenCLArray charges;
peastman's avatar
peastman committed
657
658
    OpenCLArray sigmaEpsilon;
    OpenCLArray exceptionParams;
659
660
    OpenCLArray exclusionAtoms;
    OpenCLArray exclusionParams;
661
662
663
664
665
666
667
    OpenCLArray baseParticleParams;
    OpenCLArray baseExceptionParams;
    OpenCLArray particleParamOffsets;
    OpenCLArray exceptionParamOffsets;
    OpenCLArray particleOffsetIndices;
    OpenCLArray exceptionOffsetIndices;
    OpenCLArray globalParams;
peastman's avatar
peastman committed
668
    OpenCLArray cosSinSums;
Peter Eastman's avatar
Peter Eastman committed
669
    OpenCLArray pmeGrid1;
peastman's avatar
peastman committed
670
671
672
673
674
675
676
677
678
679
680
    OpenCLArray pmeGrid2;
    OpenCLArray pmeBsplineModuliX;
    OpenCLArray pmeBsplineModuliY;
    OpenCLArray pmeBsplineModuliZ;
    OpenCLArray pmeDispersionBsplineModuliX;
    OpenCLArray pmeDispersionBsplineModuliY;
    OpenCLArray pmeDispersionBsplineModuliZ;
    OpenCLArray pmeBsplineTheta;
    OpenCLArray pmeAtomRange;
    OpenCLArray pmeAtomGridIndex;
    OpenCLArray pmeEnergyBuffer;
681
    OpenCLSort* sort;
682
683
    cl::CommandQueue pmeQueue;
    cl::Event pmeSyncEvent;
684
    OpenCLFFT3D* fft;
685
    OpenCLFFT3D* dispersionFft;
686
687
    Kernel cpuPme;
    PmeIO* pmeio;
688
    SyncQueuePostComputation* syncQueue;
Peter Eastman's avatar
Peter Eastman committed
689
    cl::Kernel computeParamsKernel, computeExclusionParamsKernel;
690
691
    cl::Kernel ewaldSumsKernel;
    cl::Kernel ewaldForcesKernel;
692
    cl::Kernel pmeAtomRangeKernel;
693
    cl::Kernel pmeDispersionAtomRangeKernel;
694
    cl::Kernel pmeZIndexKernel;
695
    cl::Kernel pmeDispersionZIndexKernel;
696
    cl::Kernel pmeUpdateBsplinesKernel;
697
    cl::Kernel pmeDispersionUpdateBsplinesKernel;
698
    cl::Kernel pmeSpreadChargeKernel;
699
    cl::Kernel pmeDispersionSpreadChargeKernel;
700
    cl::Kernel pmeFinishSpreadChargeKernel;
701
    cl::Kernel pmeDispersionFinishSpreadChargeKernel;
702
    cl::Kernel pmeConvolutionKernel;
703
    cl::Kernel pmeDispersionConvolutionKernel;
704
    cl::Kernel pmeEvalEnergyKernel;
705
    cl::Kernel pmeDispersionEvalEnergyKernel;
706
    cl::Kernel pmeInterpolateForceKernel;
707
    cl::Kernel pmeDispersionInterpolateForceKernel;
708
    std::map<std::string, std::string> pmeDefines;
709
    std::vector<std::pair<int, int> > exceptionAtoms;
710
711
    std::vector<std::string> paramNames;
    std::vector<double> paramValues;
712
    double ewaldSelfEnergy, dispersionCoefficient, alpha, dispersionAlpha;
713
    int gridSizeX, gridSizeY, gridSizeZ;
714
    int dispersionGridSizeX, dispersionGridSizeY, dispersionGridSizeZ;
Peter Eastman's avatar
Peter Eastman committed
715
    bool hasCoulomb, hasLJ, usePmeQueue, doLJPME, usePosqCharges, recomputeParams, hasOffsets;
716
    NonbondedMethod nonbondedMethod;
717
    static const int PmeOrder = 5;
718
719
};

720
721
722
723
724
/**
 * This kernel is invoked by CustomNonbondedForce to calculate the forces acting on the system.
 */
class OpenCLCalcCustomNonbondedForceKernel : public CalcCustomNonbondedForceKernel {
public:
725
    OpenCLCalcCustomNonbondedForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcCustomNonbondedForceKernel(name, platform),
peastman's avatar
peastman committed
726
            cl(cl), params(NULL), forceCopy(NULL), system(system), hasInitializedKernel(false) {
727
728
729
730
731
732
733
734
735
736
    }
    ~OpenCLCalcCustomNonbondedForceKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the CustomNonbondedForce this kernel will be used for
     */
    void initialize(const System& system, const CustomNonbondedForce& force);
    /**
737
     * Execute the kernel to calculate the forces and/or energy.
738
     *
739
740
741
742
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
743
     */
744
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
745
746
747
748
749
750
751
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the CustomNonbondedForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const CustomNonbondedForce& force);
752
private:
753
    class ForceInfo;
754
    void initInteractionGroups(const CustomNonbondedForce& force, const std::string& interactionSource, const std::vector<std::string>& tableTypes);
755
    OpenCLContext& cl;
756
    ForceInfo* info;
757
    OpenCLParameterSet* params;
peastman's avatar
peastman committed
758
    OpenCLArray globals;
759
760
    OpenCLArray interactionGroupData, filteredGroupData, numGroupTiles;
    cl::Kernel interactionGroupKernel, prepareNeighborListKernel, buildNeighborListKernel;
761
    std::vector<void*> interactionGroupArgs;
762
763
    std::vector<std::string> globalParamNames;
    std::vector<cl_float> globalParamValues;
peastman's avatar
peastman committed
764
    std::vector<OpenCLArray> tabulatedFunctions;
765
    double longRangeCoefficient;
766
    std::vector<double> longRangeCoefficientDerivs;
767
    bool hasInitializedLongRangeCorrection, hasInitializedKernel, hasParamDerivs, useNeighborList;
768
    int numGroupThreadBlocks;
769
    CustomNonbondedForce* forceCopy;
770
    const System& system;
771
};
772
773
774
775
776
777

/**
 * This kernel is invoked by GBSAOBCForce to calculate the forces acting on the system.
 */
class OpenCLCalcGBSAOBCForceKernel : public CalcGBSAOBCForceKernel {
public:
778
    OpenCLCalcGBSAOBCForceKernel(std::string name, const Platform& platform, OpenCLContext& cl) : CalcGBSAOBCForceKernel(name, platform), cl(cl),
peastman's avatar
peastman committed
779
            hasCreatedKernels(false) {
780
781
782
783
784
785
786
787
788
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the GBSAOBCForce this kernel will be used for
     */
    void initialize(const System& system, const GBSAOBCForce& force);
    /**
789
     * Execute the kernel to calculate the forces and/or energy.
790
     *
791
792
793
794
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
795
     */
796
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
797
798
799
800
801
802
803
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the GBSAOBCForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const GBSAOBCForce& force);
804
private:
805
    class ForceInfo;
806
    double prefactor, surfaceAreaFactor, cutoff;
807
    bool hasCreatedKernels;
808
    int maxTiles;
809
    OpenCLContext& cl;
810
    ForceInfo* info;
peastman's avatar
peastman committed
811
    OpenCLArray params;
812
    OpenCLArray charges;
peastman's avatar
peastman committed
813
814
815
816
817
818
    OpenCLArray bornSum;
    OpenCLArray longBornSum;
    OpenCLArray bornRadii;
    OpenCLArray bornForce;
    OpenCLArray longBornForce;
    OpenCLArray obcChain;
819
820
    cl::Kernel computeBornSumKernel;
    cl::Kernel reduceBornSumKernel;
821
822
    cl::Kernel force1Kernel;
    cl::Kernel reduceBornForceKernel;
823
};
824

825
826
827
828
829
/**
 * This kernel is invoked by CustomGBForce to calculate the forces acting on the system.
 */
class OpenCLCalcCustomGBForceKernel : public CalcCustomGBForceKernel {
public:
830
    OpenCLCalcCustomGBForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcCustomGBForceKernel(name, platform),
peastman's avatar
peastman committed
831
            hasInitializedKernels(false), cl(cl), params(NULL), computedValues(NULL), energyDerivs(NULL), energyDerivChain(NULL), system(system) {
832
833
834
835
836
837
838
839
840
841
    }
    ~OpenCLCalcCustomGBForceKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the CustomGBForce this kernel will be used for
     */
    void initialize(const System& system, const CustomGBForce& force);
    /**
842
     * Execute the kernel to calculate the forces and/or energy.
843
     *
844
845
846
847
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
848
     */
849
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
850
851
852
853
854
855
856
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the CustomGBForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const CustomGBForce& force);
857
private:
858
    class ForceInfo;
859
    double cutoff;
860
    bool hasInitializedKernels, needParameterGradient, needEnergyParamDerivs;
861
    int maxTiles, numComputedValues;
862
    OpenCLContext& cl;
863
    ForceInfo* info;
864
865
    OpenCLParameterSet* params;
    OpenCLParameterSet* computedValues;
866
    OpenCLParameterSet* energyDerivs;
867
    OpenCLParameterSet* energyDerivChain;
868
    std::vector<OpenCLParameterSet*> dValuedParam;
peastman's avatar
peastman committed
869
870
871
872
873
    std::vector<OpenCLArray> dValue0dParam;
    OpenCLArray longEnergyDerivs;
    OpenCLArray globals;
    OpenCLArray valueBuffers;
    OpenCLArray longValueBuffers;
874
875
    std::vector<std::string> globalParamNames;
    std::vector<cl_float> globalParamValues;
peastman's avatar
peastman committed
876
    std::vector<OpenCLArray> tabulatedFunctions;
Peter Eastman's avatar
Peter Eastman committed
877
    std::vector<bool> pairValueUsesParam, pairEnergyUsesParam, pairEnergyUsesValue;
878
    const System& system;
Peter Eastman's avatar
Peter Eastman committed
879
    cl::Kernel pairValueKernel, perParticleValueKernel, pairEnergyKernel, perParticleEnergyKernel, gradientChainRuleKernel;
880
881
    std::string pairValueSrc, pairEnergySrc;
    std::map<std::string, std::string> pairValueDefines, pairEnergyDefines;
882
883
};

884
885
886
887
888
/**
 * This kernel is invoked by CustomExternalForce to calculate the forces acting on the system and the energy of the system.
 */
class OpenCLCalcCustomExternalForceKernel : public CalcCustomExternalForceKernel {
public:
889
    OpenCLCalcCustomExternalForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcCustomExternalForceKernel(name, platform),
peastman's avatar
peastman committed
890
            hasInitializedKernel(false), cl(cl), system(system), params(NULL) {
891
892
893
894
895
896
897
898
899
900
    }
    ~OpenCLCalcCustomExternalForceKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the CustomExternalForce this kernel will be used for
     */
    void initialize(const System& system, const CustomExternalForce& force);
    /**
901
     * Execute the kernel to calculate the forces and/or energy.
902
     *
903
904
905
906
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
907
     */
908
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
909
910
911
912
913
914
915
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the CustomExternalForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const CustomExternalForce& force);
916
private:
917
    class ForceInfo;
918
919
920
    int numParticles;
    bool hasInitializedKernel;
    OpenCLContext& cl;
921
    ForceInfo* info;
922
    const System& system;
923
    OpenCLParameterSet* params;
peastman's avatar
peastman committed
924
    OpenCLArray globals;
925
926
927
928
    std::vector<std::string> globalParamNames;
    std::vector<cl_float> globalParamValues;
};

929
930
931
932
933
/**
 * This kernel is invoked by CustomHbondForce to calculate the forces acting on the system.
 */
class OpenCLCalcCustomHbondForceKernel : public CalcCustomHbondForceKernel {
public:
934
    OpenCLCalcCustomHbondForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcCustomHbondForceKernel(name, platform),
peastman's avatar
peastman committed
935
            hasInitializedKernel(false), cl(cl), donorParams(NULL), acceptorParams(NULL), system(system) {
936
937
938
939
940
941
942
943
944
945
    }
    ~OpenCLCalcCustomHbondForceKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the CustomHbondForce this kernel will be used for
     */
    void initialize(const System& system, const CustomHbondForce& force);
    /**
946
     * Execute the kernel to calculate the forces and/or energy.
947
     *
948
949
950
951
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
952
     */
953
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
954
955
956
957
958
959
960
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the CustomHbondForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const CustomHbondForce& force);
961
private:
962
    class ForceInfo;
963
964
965
    int numDonors, numAcceptors;
    bool hasInitializedKernel;
    OpenCLContext& cl;
966
    ForceInfo* info;
967
968
    OpenCLParameterSet* donorParams;
    OpenCLParameterSet* acceptorParams;
peastman's avatar
peastman committed
969
970
971
972
973
974
975
    OpenCLArray globals;
    OpenCLArray donors;
    OpenCLArray acceptors;
    OpenCLArray donorBufferIndices;
    OpenCLArray acceptorBufferIndices;
    OpenCLArray donorExclusions;
    OpenCLArray acceptorExclusions;
976
977
    std::vector<std::string> globalParamNames;
    std::vector<cl_float> globalParamValues;
peastman's avatar
peastman committed
978
    std::vector<OpenCLArray> tabulatedFunctions;
979
    const System& system;
980
    cl::Kernel donorKernel, acceptorKernel;
981
982
};

983
984
985
986
987
988
/**
 * This kernel is invoked by CustomCentroidBondForce to calculate the forces acting on the system.
 */
class OpenCLCalcCustomCentroidBondForceKernel : public CalcCustomCentroidBondForceKernel {
public:
    OpenCLCalcCustomCentroidBondForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcCustomCentroidBondForceKernel(name, platform),
peastman's avatar
peastman committed
989
            cl(cl), params(NULL), system(system) {
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
    }
    ~OpenCLCalcCustomCentroidBondForceKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the CustomCentroidBondForce this kernel will be used for
     */
    void initialize(const System& system, const CustomCentroidBondForce& force);
    /**
     * Execute the kernel to calculate the forces and/or energy.
     *
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
     */
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the CustomCentroidBondForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const CustomCentroidBondForce& force);

private:
1017
    class ForceInfo;
1018
    int numGroups, numBonds;
1019
    bool needEnergyParamDerivs;
1020
    OpenCLContext& cl;
1021
    ForceInfo* info;
1022
    OpenCLParameterSet* params;
peastman's avatar
peastman committed
1023
1024
1025
1026
1027
1028
1029
    OpenCLArray globals;
    OpenCLArray groupParticles;
    OpenCLArray groupWeights;
    OpenCLArray groupOffsets;
    OpenCLArray groupForces;
    OpenCLArray bondGroups;
    OpenCLArray centerPositions;
1030
1031
    std::vector<std::string> globalParamNames;
    std::vector<cl_float> globalParamValues;
peastman's avatar
peastman committed
1032
    std::vector<OpenCLArray> tabulatedFunctions;
1033
1034
1035
1036
    cl::Kernel computeCentersKernel, groupForcesKernel, applyForcesKernel;
    const System& system;
};

1037
1038
1039
1040
1041
/**
 * This kernel is invoked by CustomCompoundBondForce to calculate the forces acting on the system.
 */
class OpenCLCalcCustomCompoundBondForceKernel : public CalcCustomCompoundBondForceKernel {
public:
1042
    OpenCLCalcCustomCompoundBondForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcCustomCompoundBondForceKernel(name, platform),
peastman's avatar
peastman committed
1043
            cl(cl), params(NULL), system(system) {
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
    }
    ~OpenCLCalcCustomCompoundBondForceKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the CustomCompoundBondForce this kernel will be used for
     */
    void initialize(const System& system, const CustomCompoundBondForce& force);
    /**
     * Execute the kernel to calculate the forces and/or energy.
     *
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
     */
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
1062
1063
1064
1065
1066
1067
1068
1069
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the CustomCompoundBondForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const CustomCompoundBondForce& force);

1070
private:
1071
    class ForceInfo;
1072
1073
    int numBonds;
    OpenCLContext& cl;
1074
    ForceInfo* info;
1075
    OpenCLParameterSet* params;
peastman's avatar
peastman committed
1076
    OpenCLArray globals;
1077
1078
    std::vector<std::string> globalParamNames;
    std::vector<cl_float> globalParamValues;
peastman's avatar
peastman committed
1079
    std::vector<OpenCLArray> tabulatedFunctions;
1080
    const System& system;
1081
1082
};

1083
1084
1085
1086
1087
1088
/**
 * This kernel is invoked by CustomManyParticleForce to calculate the forces acting on the system.
 */
class OpenCLCalcCustomManyParticleForceKernel : public CalcCustomManyParticleForceKernel {
public:
    OpenCLCalcCustomManyParticleForceKernel(std::string name, const Platform& platform, OpenCLContext& cl, const System& system) : CalcCustomManyParticleForceKernel(name, platform),
peastman's avatar
peastman committed
1089
            hasInitializedKernel(false), cl(cl), params(NULL), system(system) {
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
    }
    ~OpenCLCalcCustomManyParticleForceKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the CustomManyParticleForce this kernel will be used for
     */
    void initialize(const System& system, const CustomManyParticleForce& force);
    /**
     * Execute the kernel to calculate the forces and/or energy.
     *
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
     */
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the CustomManyParticleForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const CustomManyParticleForce& force);

private:
1117
    class ForceInfo;
1118
    OpenCLContext& cl;
1119
    ForceInfo* info;
1120
1121
1122
1123
    bool hasInitializedKernel;
    NonbondedMethod nonbondedMethod;
    int maxNeighborPairs, forceWorkgroupSize, findNeighborsWorkgroupSize;
    OpenCLParameterSet* params;
peastman's avatar
peastman committed
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
    OpenCLArray globals;
    OpenCLArray particleTypes;
    OpenCLArray orderIndex;
    OpenCLArray particleOrder;
    OpenCLArray exclusions;
    OpenCLArray exclusionStartIndex;
    OpenCLArray blockCenter;
    OpenCLArray blockBoundingBox;
    OpenCLArray neighborPairs;
    OpenCLArray numNeighborPairs;
    OpenCLArray neighborStartIndex;
    OpenCLArray numNeighborsForAtom;
    OpenCLArray neighbors;
1137
1138
    std::vector<std::string> globalParamNames;
    std::vector<float> globalParamValues;
peastman's avatar
peastman committed
1139
    std::vector<OpenCLArray> tabulatedFunctions;
1140
1141
1142
1143
    const System& system;
    cl::Kernel forceKernel, blockBoundsKernel, neighborsKernel, startIndicesKernel, copyPairsKernel;
};

1144
1145
1146
1147
1148
1149
/**
 * This kernel is invoked by GayBerneForce to calculate the forces acting on the system.
 */
class OpenCLCalcGayBerneForceKernel : public CalcGayBerneForceKernel {
public:
    OpenCLCalcGayBerneForceKernel(std::string name, const Platform& platform, OpenCLContext& cl) : CalcGayBerneForceKernel(name, platform), cl(cl),
peastman's avatar
peastman committed
1150
            hasInitializedKernels(false) {
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the GayBerneForce this kernel will be used for
     */
    void initialize(const System& system, const GayBerneForce& force);
    /**
     * Execute the kernel to calculate the forces and/or energy.
     *
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @return the potential energy due to the force
     */
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the GayBerneForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const GayBerneForce& force);
private:
1175
    class ForceInfo;
1176
1177
1178
    class ReorderListener;
    void sortAtoms();
    OpenCLContext& cl;
1179
    ForceInfo* info;
1180
    bool hasInitializedKernels;
1181
    int numRealParticles, maxNeighborBlocks;
1182
    GayBerneForce::NonbondedMethod nonbondedMethod;
peastman's avatar
peastman committed
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
    OpenCLArray sortedParticles;
    OpenCLArray axisParticleIndices;
    OpenCLArray sigParams;
    OpenCLArray epsParams;
    OpenCLArray scale;
    OpenCLArray exceptionParticles;
    OpenCLArray exceptionParams;
    OpenCLArray aMatrix;
    OpenCLArray bMatrix;
    OpenCLArray gMatrix;
    OpenCLArray exclusions;
    OpenCLArray exclusionStartIndex;
    OpenCLArray blockCenter;
    OpenCLArray blockBoundingBox;
    OpenCLArray neighbors;
    OpenCLArray neighborIndex;
    OpenCLArray neighborBlockCount;
    OpenCLArray sortedPos;
    OpenCLArray torque;
1202
1203
1204
    std::vector<bool> isRealParticle;
    std::vector<std::pair<int, int> > exceptionAtoms;
    std::vector<std::pair<int, int> > excludedPairs;
1205
    cl::Kernel framesKernel, blockBoundsKernel, neighborsKernel, forceKernel, torqueKernel;
1206
1207
};

1208
1209
1210
1211
1212
1213
/**
 * This kernel is invoked by CustomCVForce to calculate the forces acting on the system and the energy of the system.
 */
class OpenCLCalcCustomCVForceKernel : public CalcCustomCVForceKernel {
public:
    OpenCLCalcCustomCVForceKernel(std::string name, const Platform& platform, OpenCLContext& cl) : CalcCustomCVForceKernel(name, platform),
peastman's avatar
peastman committed
1214
            cl(cl), hasInitializedKernels(false) {
1215
1216
1217
1218
1219
1220
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the CustomCVForce this kernel will be used for
1221
     * @param innerContext   the context created by the CustomCVForce for computing collective variables
1222
     */
1223
    void initialize(const System& system, const CustomCVForce& force, ContextImpl& innerContext);
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
    /**
     * Execute the kernel to calculate the forces and/or energy.
     *
     * @param context        the context in which to execute this kernel
     * @param innerContext   the context created by the CustomCVForce for computing collective variables
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
     */
    double execute(ContextImpl& context, ContextImpl& innerContext, bool includeForces, bool includeEnergy);
    /**
     * Copy state information to the inner context.
     *
     * @param context        the context in which to execute this kernel
     * @param innerContext   the context created by the CustomCVForce for computing collective variables
     */
    void copyState(ContextImpl& context, ContextImpl& innerContext);
1241
1242
1243
1244
1245
1246
1247
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the CustomCVForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const CustomCVForce& force);
1248
private:
1249
    class ForceInfo;
1250
1251
1252
1253
1254
1255
1256
    class ReorderListener;
    OpenCLContext& cl;
    bool hasInitializedKernels;
    Lepton::ExpressionProgram energyExpression;
    std::vector<std::string> variableNames, paramDerivNames, globalParameterNames;
    std::vector<Lepton::ExpressionProgram> variableDerivExpressions;
    std::vector<Lepton::ExpressionProgram> paramDerivExpressions;
peastman's avatar
peastman committed
1257
1258
1259
    std::vector<OpenCLArray> cvForces;
    OpenCLArray invAtomOrder;
    OpenCLArray innerInvAtomOrder;
1260
1261
1262
    cl::Kernel copyStateKernel, copyForcesKernel, addForcesKernel;
};

peastman's avatar
peastman committed
1263
1264
1265
1266
1267
/**
 * This kernel is invoked by RMSDForce to calculate the forces acting on the system and the energy of the system.
 */
class OpenCLCalcRMSDForceKernel : public CalcRMSDForceKernel {
public:
peastman's avatar
peastman committed
1268
    OpenCLCalcRMSDForceKernel(std::string name, const Platform& platform, OpenCLContext& cl) : CalcRMSDForceKernel(name, platform), cl(cl) {
peastman's avatar
peastman committed
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the RMSDForce this kernel will be used for
     */
    void initialize(const System& system, const RMSDForce& force);
    /**
     * Record the reference positions and particle indices.
     */
    void recordParameters(const RMSDForce& force);
    /**
     * Execute the kernel to calculate the forces and/or energy.
     *
     * @param context        the context in which to execute this kernel
     * @param includeForces  true if forces should be calculated
     * @param includeEnergy  true if the energy should be calculated
     * @return the potential energy due to the force
     */
    double execute(ContextImpl& context, bool includeForces, bool includeEnergy);
    /**
     * This is the internal implementation of execute(), templatized on whether we're
     * using single or double precision.
     */
    template <class REAL>
    double executeImpl(ContextImpl& context);
    /**
     * Copy changed parameters over to a context.
     *
     * @param context    the context to copy parameters to
     * @param force      the RMSDForce to copy the parameters from
     */
    void copyParametersToContext(ContextImpl& context, const RMSDForce& force);
private:
    class ForceInfo;
    OpenCLContext& cl;
    ForceInfo* info;
    double sumNormRef;
peastman's avatar
peastman committed
1308
1309
1310
    OpenCLArray referencePos;
    OpenCLArray particles;
    OpenCLArray buffer;
peastman's avatar
peastman committed
1311
1312
1313
    cl::Kernel kernel1, kernel2;
};

1314
1315
1316
1317
1318
/**
 * This kernel is invoked by VerletIntegrator to take one time step.
 */
class OpenCLIntegrateVerletStepKernel : public IntegrateVerletStepKernel {
public:
1319
    OpenCLIntegrateVerletStepKernel(std::string name, const Platform& platform, OpenCLContext& cl) : IntegrateVerletStepKernel(name, platform), cl(cl),
1320
            hasInitializedKernels(false) {
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
    }
    ~OpenCLIntegrateVerletStepKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param integrator the VerletIntegrator this kernel will be used for
     */
    void initialize(const System& system, const VerletIntegrator& integrator);
    /**
     * Execute the kernel.
     *
     * @param context    the context in which to execute this kernel
     * @param integrator the VerletIntegrator this kernel is being used for
     */
    void execute(ContextImpl& context, const VerletIntegrator& integrator);
1337
1338
1339
1340
1341
1342
1343
    /**
     * Compute the kinetic energy.
     * 
     * @param context    the context in which to execute this kernel
     * @param integrator the VerletIntegrator this kernel is being used for
     */
    double computeKineticEnergy(ContextImpl& context, const VerletIntegrator& integrator);
1344
private:
1345
    OpenCLContext& cl;
1346
    bool hasInitializedKernels;
1347
1348
1349
    cl::Kernel kernel1, kernel2;
};

1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386

/*
 * This kernel is invoked by NoseHooverIntegrator to take one time step.
 */
class OpenCLIntegrateVelocityVerletStepKernel : public IntegrateVelocityVerletStepKernel {
public:
    OpenCLIntegrateVelocityVerletStepKernel(std::string name, const Platform& platform, OpenCLContext& cl) :
                                  IntegrateVelocityVerletStepKernel(name, platform), cl(cl) { }
    ~OpenCLIntegrateVelocityVerletStepKernel() {}
    /**
     * Initialize the kernel.
     * 
     * @param system     the System this kernel will be applied to
     * @param integrator the NoseHooverIntegrator this kernel will be used for
     */
    void initialize(const System& system, const NoseHooverIntegrator& integrator);
    /**
     * Execute the kernel.
     * 
     * @param context    the context in which to execute this kernel
     * @param integrator the VerletIntegrator this kernel is being used for
     * @param forcesAreValid a reference to the parent integrator's boolean for keeping
     *                       track of the validity of the current forces.
     */
    void execute(ContextImpl& context, const NoseHooverIntegrator& integrator, bool &forcesAreValid);
    /**
     * Compute the kinetic energy.
     * 
     * @param context    the context in which to execute this kernel
     * @param integrator the NoseHooverIntegrator this kernel is being used for
     */
    double computeKineticEnergy(ContextImpl& context, const NoseHooverIntegrator& integrator);
private:
    OpenCLContext& cl;
    cl::Kernel kernel1, kernel2, kernel3;
};

1387
1388
1389
1390
1391
1392
/**
 * This kernel is invoked by LangevinIntegrator to take one time step.
 */
class OpenCLIntegrateLangevinStepKernel : public IntegrateLangevinStepKernel {
public:
    OpenCLIntegrateLangevinStepKernel(std::string name, const Platform& platform, OpenCLContext& cl) : IntegrateLangevinStepKernel(name, platform), cl(cl),
peastman's avatar
peastman committed
1393
            hasInitializedKernels(false) {
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
    }
    /**
     * Initialize the kernel, setting up the particle masses.
     *
     * @param system     the System this kernel will be applied to
     * @param integrator the LangevinIntegrator this kernel will be used for
     */
    void initialize(const System& system, const LangevinIntegrator& integrator);
    /**
     * Execute the kernel.
     *
     * @param context    the context in which to execute this kernel
     * @param integrator the LangevinIntegrator this kernel is being used for
     */
    void execute(ContextImpl& context, const LangevinIntegrator& integrator);
1409
1410
1411
1412
1413
1414
1415
    /**
     * Compute the kinetic energy.
     * 
     * @param context    the context in which to execute this kernel
     * @param integrator the LangevinIntegrator this kernel is being used for
     */
    double computeKineticEnergy(ContextImpl& context, const LangevinIntegrator& integrator);
1416
1417
1418
private:
    OpenCLContext& cl;
    double prevTemp, prevFriction, prevStepSize;
1419
    bool hasInitializedKernels;
peastman's avatar
peastman committed
1420
    OpenCLArray params;
1421
    cl::Kernel kernel1, kernel2;
1422
1423
};

1424
1425
1426
1427
1428
/**
 * This kernel is invoked by BrownianIntegrator to take one time step.
 */
class OpenCLIntegrateBrownianStepKernel : public IntegrateBrownianStepKernel {
public:
1429
1430
    OpenCLIntegrateBrownianStepKernel(std::string name, const Platform& platform, OpenCLContext& cl) : IntegrateBrownianStepKernel(name, platform), cl(cl),
            hasInitializedKernels(false), prevTemp(-1), prevFriction(-1), prevStepSize(-1) {
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
    }
    ~OpenCLIntegrateBrownianStepKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param integrator the BrownianIntegrator this kernel will be used for
     */
    void initialize(const System& system, const BrownianIntegrator& integrator);
    /**
     * Execute the kernel.
     *
     * @param context    the context in which to execute this kernel
     * @param integrator the BrownianIntegrator this kernel is being used for
     */
    void execute(ContextImpl& context, const BrownianIntegrator& integrator);
1447
1448
1449
1450
1451
1452
1453
    /**
     * Compute the kinetic energy.
     * 
     * @param context    the context in which to execute this kernel
     * @param integrator the BrownianIntegrator this kernel is being used for
     */
    double computeKineticEnergy(ContextImpl& context, const BrownianIntegrator& integrator);
1454
1455
1456
1457
1458
1459
private:
    OpenCLContext& cl;
    double prevTemp, prevFriction, prevStepSize;
    bool hasInitializedKernels;
    cl::Kernel kernel1, kernel2;
};
1460
1461
1462
1463
1464
1465
1466

/**
 * This kernel is invoked by VariableVerletIntegrator to take one time step.
 */
class OpenCLIntegrateVariableVerletStepKernel : public IntegrateVariableVerletStepKernel {
public:
    OpenCLIntegrateVariableVerletStepKernel(std::string name, const Platform& platform, OpenCLContext& cl) : IntegrateVariableVerletStepKernel(name, platform), cl(cl),
1467
            hasInitializedKernels(false) {
1468
1469
1470
1471
1472
1473
    }
    ~OpenCLIntegrateVariableVerletStepKernel();
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
1474
     * @param integrator the VariableVerletIntegrator this kernel will be used for
1475
1476
1477
1478
1479
1480
     */
    void initialize(const System& system, const VariableVerletIntegrator& integrator);
    /**
     * Execute the kernel.
     *
     * @param context    the context in which to execute this kernel
1481
     * @param integrator the VariableVerletIntegrator this kernel is being used for
1482
     * @param maxTime    the maximum time beyond which the simulation should not be advanced
1483
     * @return the size of the step that was taken
1484
     */
1485
    double execute(ContextImpl& context, const VariableVerletIntegrator& integrator, double maxTime);
1486
1487
1488
1489
1490
1491
1492
    /**
     * Compute the kinetic energy.
     * 
     * @param context    the context in which to execute this kernel
     * @param integrator the VariableVerletIntegrator this kernel is being used for
     */
    double computeKineticEnergy(ContextImpl& context, const VariableVerletIntegrator& integrator);
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
private:
    OpenCLContext& cl;
    bool hasInitializedKernels;
    int blockSize;
    cl::Kernel kernel1, kernel2, selectSizeKernel;
};

/**
 * This kernel is invoked by VariableLangevinIntegrator to take one time step.
 */
class OpenCLIntegrateVariableLangevinStepKernel : public IntegrateVariableLangevinStepKernel {
public:
    OpenCLIntegrateVariableLangevinStepKernel(std::string name, const Platform& platform, OpenCLContext& cl) : IntegrateVariableLangevinStepKernel(name, platform), cl(cl),
peastman's avatar
peastman committed
1506
            hasInitializedKernels(false) {
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
    }
    /**
     * Initialize the kernel, setting up the particle masses.
     *
     * @param system     the System this kernel will be applied to
     * @param integrator the VariableLangevinIntegrator this kernel will be used for
     */
    void initialize(const System& system, const VariableLangevinIntegrator& integrator);
    /**
     * Execute the kernel.
     *
     * @param context    the context in which to execute this kernel
     * @param integrator the VariableLangevinIntegrator this kernel is being used for
     * @param maxTime    the maximum time beyond which the simulation should not be advanced
1521
     * @return the size of the step that was taken
1522
     */
1523
    double execute(ContextImpl& context, const VariableLangevinIntegrator& integrator, double maxTime);
1524
1525
1526
1527
1528
1529
1530
    /**
     * Compute the kinetic energy.
     * 
     * @param context    the context in which to execute this kernel
     * @param integrator the VariableLangevinIntegrator this kernel is being used for
     */
    double computeKineticEnergy(ContextImpl& context, const VariableLangevinIntegrator& integrator);
1531
1532
1533
1534
private:
    OpenCLContext& cl;
    bool hasInitializedKernels;
    int blockSize;
peastman's avatar
peastman committed
1535
    OpenCLArray params;
1536
    cl::Kernel kernel1, kernel2, selectSizeKernel;
1537
1538
    double prevTemp, prevFriction, prevErrorTol;
};
1539

1540
1541
1542
1543
1544
/**
 * This kernel is invoked by CustomIntegrator to take one time step.
 */
class OpenCLIntegrateCustomStepKernel : public IntegrateCustomStepKernel {
public:
1545
    enum GlobalTargetType {DT, VARIABLE, PARAMETER};
1546
    OpenCLIntegrateCustomStepKernel(std::string name, const Platform& platform, OpenCLContext& cl) : IntegrateCustomStepKernel(name, platform), cl(cl),
1547
            hasInitializedKernels(false), needsEnergyParamDerivs(false) {
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
    }
    /**
     * Initialize the kernel.
     * 
     * @param system     the System this kernel will be applied to
     * @param integrator the CustomIntegrator this kernel will be used for
     */
    void initialize(const System& system, const CustomIntegrator& integrator);
    /**
     * Execute the kernel.
     * 
     * @param context    the context in which to execute this kernel
     * @param integrator the CustomIntegrator this kernel is being used for
     * @param forcesAreValid if the context has been modified since the last time step, this will be
     *                       false to show that cached forces are invalid and must be recalculated.
     *                       On exit, this should specify whether the cached forces are valid at the
     *                       end of the step.
     */
    void execute(ContextImpl& context, CustomIntegrator& integrator, bool& forcesAreValid);
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
    /**
     * Compute the kinetic energy.
     * 
     * @param context    the context in which to execute this kernel
     * @param integrator the CustomIntegrator this kernel is being used for
     * @param forcesAreValid if the context has been modified since the last time step, this will be
     *                       false to show that cached forces are invalid and must be recalculated.
     *                       On exit, this should specify whether the cached forces are valid at the
     *                       end of the step.
     */
    double computeKineticEnergy(ContextImpl& context, CustomIntegrator& integrator, bool& forcesAreValid);
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
    /**
     * Get the values of all global variables.
     *
     * @param context   the context in which to execute this kernel
     * @param values    on exit, this contains the values
     */
    void getGlobalVariables(ContextImpl& context, std::vector<double>& values) const;
    /**
     * Set the values of all global variables.
     *
     * @param context   the context in which to execute this kernel
     * @param values    a vector containing the values
     */
    void setGlobalVariables(ContextImpl& context, const std::vector<double>& values);
    /**
     * Get the values of a per-DOF variable.
     *
     * @param context   the context in which to execute this kernel
     * @param variable  the index of the variable to get
     * @param values    on exit, this contains the values
     */
    void getPerDofVariable(ContextImpl& context, int variable, std::vector<Vec3>& values) const;
    /**
     * Set the values of a per-DOF variable.
     *
     * @param context   the context in which to execute this kernel
     * @param variable  the index of the variable to get
     * @param values    a vector containing the values
     */
    void setPerDofVariable(ContextImpl& context, int variable, const std::vector<Vec3>& values);
private:
1609
    class ReorderListener;
1610
    class GlobalTarget;
1611
    class DerivFunction;
1612
    std::string createPerDofComputation(const std::string& variable, const Lepton::ParsedExpression& expr, CustomIntegrator& integrator,
1613
1614
        const std::string& forceName, const std::string& energyName, std::vector<const TabulatedFunction*>& functions,
        std::vector<std::pair<std::string, std::string> >& functionNames);
1615
    void prepareForComputation(ContextImpl& context, CustomIntegrator& integrator, bool& forcesAreValid);
1616
1617
    Lepton::ExpressionTreeNode replaceDerivFunctions(const Lepton::ExpressionTreeNode& node, OpenMM::ContextImpl& context);
    void findExpressionsForDerivs(const Lepton::ExpressionTreeNode& node, std::vector<std::pair<Lepton::ExpressionTreeNode, std::string> >& variableNodes);
1618
    void recordGlobalValue(double value, GlobalTarget target, CustomIntegrator& integrator);
1619
    void recordChangedParameters(ContextImpl& context);
1620
    bool evaluateCondition(int step);
1621
    OpenCLContext& cl;
1622
    double energy;
1623
    float energyFloat;
1624
    int numGlobalVariables, sumWorkGroupSize;
1625
1626
1627
    bool hasInitializedKernels, deviceGlobalsAreCurrent, modifiesParameters, keNeedsForce, hasAnyConstraints, needsEnergyParamDerivs;
    std::vector<bool> deviceValuesAreCurrent;
    mutable std::vector<bool> localValuesAreCurrent;
peastman's avatar
peastman committed
1628
1629
1630
1631
1632
1633
    OpenCLArray globalValues;
    OpenCLArray sumBuffer;
    OpenCLArray summedValue;
    OpenCLArray uniformRandoms;
    OpenCLArray randomSeed;
    OpenCLArray perDofEnergyParamDerivs;
1634
    std::vector<OpenCLArray> tabulatedFunctions, perDofValues;
1635
    std::map<int, double> savedEnergy;
peastman's avatar
peastman committed
1636
    std::map<int, OpenCLArray> savedForces;
1637
    std::set<int> validSavedForces;
1638
1639
    mutable std::vector<std::vector<mm_float4> > localPerDofValuesFloat;
    mutable std::vector<std::vector<mm_double4> > localPerDofValuesDouble;
1640
1641
    std::map<std::string, double> energyParamDerivs;
    std::vector<std::string> perDofEnergyParamDerivNames;
peastman's avatar
peastman committed
1642
1643
    std::vector<cl_double> localPerDofEnergyParamDerivs;
    std::vector<double> localGlobalValues;
1644
    std::vector<double> initialGlobalVariables;
1645
    std::vector<std::vector<cl::Kernel> > kernels;
Peter Eastman's avatar
Peter Eastman committed
1646
    cl::Kernel randomKernel, kineticEnergyKernel, sumKineticEnergyKernel;
1647
    std::vector<CustomIntegrator::ComputationType> stepType;
1648
1649
1650
1651
    std::vector<CustomIntegratorUtilities::Comparison> comparisons;
    std::vector<std::vector<Lepton::CompiledExpression> > globalExpressions;
    CompiledExpressionSet expressionSet;
    std::vector<bool> needsGlobals;
1652
1653
    std::vector<bool> needsForces;
    std::vector<bool> needsEnergy;
1654
    std::vector<bool> computeBothForceAndEnergy;
1655
    std::vector<bool> invalidatesForces;
1656
    std::vector<bool> merged;
1657
1658
    std::vector<int> forceGroupFlags;
    std::vector<int> blockEnd;
1659
1660
    std::vector<int> requiredGaussian;
    std::vector<int> requiredUniform;
1661
1662
1663
1664
    std::vector<int> stepEnergyVariableIndex;
    std::vector<int> globalVariableIndex;
    std::vector<int> parameterVariableIndex;
    int gaussianVariableIndex, uniformVariableIndex, dtVariableIndex;
1665
    std::vector<std::string> parameterNames;
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
    std::vector<GlobalTarget> stepTarget;
};

class OpenCLIntegrateCustomStepKernel::GlobalTarget {
public:
    OpenCLIntegrateCustomStepKernel::GlobalTargetType type;
    int variableIndex;
    GlobalTarget() {
    }
    GlobalTarget(OpenCLIntegrateCustomStepKernel::GlobalTargetType type, int variableIndex) : type(type), variableIndex(variableIndex) {
    }
1677
1678
};

1679
1680
1681
1682
1683
1684
/**
 * This kernel is invoked by AndersenThermostat at the start of each time step to adjust the particle velocities.
 */
class OpenCLApplyAndersenThermostatKernel : public ApplyAndersenThermostatKernel {
public:
    OpenCLApplyAndersenThermostatKernel(std::string name, const Platform& platform, OpenCLContext& cl) : ApplyAndersenThermostatKernel(name, platform), cl(cl),
peastman's avatar
peastman committed
1685
            hasInitializedKernels(false) {
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param thermostat the AndersenThermostat this kernel will be used for
     */
    void initialize(const System& system, const AndersenThermostat& thermostat);
    /**
     * Execute the kernel.
     *
     * @param context    the context in which to execute this kernel
     */
    void execute(ContextImpl& context);
private:
    OpenCLContext& cl;
    bool hasInitializedKernels;
    int randomSeed;
peastman's avatar
peastman committed
1704
    OpenCLArray atomGroups;
1705
    cl::Kernel kernel;
1706
1707
};

1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
/**
 * This kernel is invoked by NoseHooverChain at the start of each time step to adjust the thermostat
 * and update the associated particle velocities.
 */
class OpenCLNoseHooverChainKernel : public NoseHooverChainKernel {
public:
    OpenCLNoseHooverChainKernel(std::string name, const Platform& platform, OpenCLContext& cl) : NoseHooverChainKernel(name, platform), cl(cl) {
    }
    ~OpenCLNoseHooverChainKernel() {}
    /**
     * Initialize the kernel.
     */
    virtual void initialize();
    /**
     * Execute the kernel that propagates the Nose Hoover chain and determines the velocity scale factor.
     * 
     * @param context  the context in which to execute this kernel
     * @param noseHooverChain the object describing the chain to be propagated.
     * @param kineticEnergies the {absolute, relative} kineticEnergy of the particles being thermostated by this chain.
     * @param timeStep the time step used by the integrator.
     * @return the {absolute, relative} velocity scale factor to apply to the particles associated with this heat bath.
     */
    virtual std::pair<double, double> propagateChain(ContextImpl& context, const NoseHooverChain &nhc, std::pair<double, double> kineticEnergies, double timeStep);
    /**
     * Execute the kernal that computes the total (kinetic + potential) heat bath energy.
     *
     * @param context the context in which to execute this kernel
     * @param noseHooverChain the chain whose energy is to be determined.
     * @return the total heat bath energy.
     */
    virtual double computeHeatBathEnergy(ContextImpl& context, const NoseHooverChain &nhc);
    /**
     * Execute the kernel that computes the kinetic energy for a subset of atoms,
     * or the relative kinetic energy of Drude particles with respect to their parent atoms
     *
     * @param context the context in which to execute this kernel
     * @param noseHooverChain the chain whose energy is to be determined.
     * @param downloadValue whether the computed value should be downloaded and returned.
     *
     */
     virtual std::pair<double,double> computeMaskedKineticEnergy(ContextImpl& context, const NoseHooverChain &noseHooverChain, bool downloadValue);

    /**
     * Execute the kernel that scales the velocities of particles associated with a nose hoover chain
     *
     * @param context the context in which to execute this kernel
     * @param noseHooverChain the chain whose energy is to be determined.
     * @param scaleFactors the {absolute, relative} multiplicative factor by which velocities are scaled.
     */
    virtual void scaleVelocities(ContextImpl& context, const NoseHooverChain &noseHooverChain, std::pair<double, double> scaleFactors);

private:
    int sumWorkGroupSize;
    OpenCLContext& cl;
    OpenCLArray scaleFactorBuffer, kineticEnergyBuffer, chainMasses, chainForces, heatBathEnergy;
    std::map<int, OpenCLArray> atomlists, pairlists;
    std::map<int, cl::Kernel> propagateKernels;
    cl::Kernel reduceEnergyKernel;
    cl::Kernel computeHeatBathEnergyKernel;
    cl::Kernel computeAtomsKineticEnergyKernel;
    cl::Kernel computePairsKineticEnergyKernel;
    cl::Kernel scaleAtomsVelocitiesKernel;
    cl::Kernel scalePairsVelocitiesKernel;
};


1774
1775
1776
1777
1778
1779
/**
 * This kernel is invoked by MonteCarloBarostat to adjust the periodic box volume
 */
class OpenCLApplyMonteCarloBarostatKernel : public ApplyMonteCarloBarostatKernel {
public:
    OpenCLApplyMonteCarloBarostatKernel(std::string name, const Platform& platform, OpenCLContext& cl) : ApplyMonteCarloBarostatKernel(name, platform), cl(cl),
peastman's avatar
peastman committed
1780
            hasInitializedKernels(false) {
1781
1782
1783
1784
1785
1786
1787
    }
    /**
     * Initialize the kernel.
     *
     * @param system     the System this kernel will be applied to
     * @param barostat   the MonteCarloBarostat this kernel will be used for
     */
1788
    void initialize(const System& system, const Force& barostat);
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
    /**
     * Attempt a Monte Carlo step, scaling particle positions (or cluster centers) by a specified value.
     * This version scales the x, y, and z positions independently.
     * This is called BEFORE the periodic box size is modified.  It should begin by translating each particle
     * or cluster into the first periodic box, so that coordinates will still be correct after the box size
     * is changed.
     *
     * @param context    the context in which to execute this kernel
     * @param scaleX     the scale factor by which to multiply particle x-coordinate
     * @param scaleY     the scale factor by which to multiply particle y-coordinate
     * @param scaleZ     the scale factor by which to multiply particle z-coordinate
     */
1801
    void scaleCoordinates(ContextImpl& context, double scaleX, double scaleY, double scaleZ);
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
    /**
     * Reject the most recent Monte Carlo step, restoring the particle positions to where they were before
     * scaleCoordinates() was last called.
     *
     * @param context    the context in which to execute this kernel
     */
    void restoreCoordinates(ContextImpl& context);
private:
    OpenCLContext& cl;
    bool hasInitializedKernels;
    int numMolecules;
peastman's avatar
peastman committed
1813
1814
1815
1816
    OpenCLArray savedPositions;
    OpenCLArray savedForces;
    OpenCLArray moleculeAtoms;
    OpenCLArray moleculeStartIndex;
1817
    cl::Kernel kernel;
1818
    std::vector<int> lastAtomOrder;
1819
};
1820

1821
1822
1823
1824
1825
/**
 * This kernel is invoked to remove center of mass motion from the system.
 */
class OpenCLRemoveCMMotionKernel : public RemoveCMMotionKernel {
public:
peastman's avatar
peastman committed
1826
    OpenCLRemoveCMMotionKernel(std::string name, const Platform& platform, OpenCLContext& cl) : RemoveCMMotionKernel(name, platform), cl(cl) {
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
    }
    /**
     * Initialize the kernel, setting up the particle masses.
     *
     * @param system     the System this kernel will be applied to
     * @param force      the CMMotionRemover this kernel will be used for
     */
    void initialize(const System& system, const CMMotionRemover& force);
    /**
     * Execute the kernel.
     *
     * @param context    the context in which to execute this kernel
     */
    void execute(ContextImpl& context);
private:
    OpenCLContext& cl;
    int frequency;
peastman's avatar
peastman committed
1844
    OpenCLArray cmMomentum;
1845
1846
    cl::Kernel kernel1, kernel2;
};
1847
1848
1849
1850

} // namespace OpenMM

#endif /*OPENMM_OPENCLKERNELS_H_*/