BrookNonBonded.h 15.1 KB
Newer Older
Mark Friedrichs's avatar
Mark Friedrichs committed
1
2
#ifndef OPENMM_BROOK_NONBONDED_H_
#define OPENMM_BROOK_NONBONDED_H_
Mark Friedrichs's avatar
Mark Friedrichs committed
3
4
5
6
7
8
9
10
11

/* -------------------------------------------------------------------------- *
 *                                   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
13
 * Portions copyright (c) 2009 Stanford University and the Authors.           *
 * Authors: Mark Friedrichs, Mike Houston                                     *
Mark Friedrichs's avatar
Mark Friedrichs committed
14
15
 * Contributors:                                                              *
 *                                                                            *
16
17
18
19
 * 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.                                        *
Mark Friedrichs's avatar
Mark Friedrichs committed
20
 *                                                                            *
21
22
23
24
 * 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.                        *
Mark Friedrichs's avatar
Mark Friedrichs committed
25
 *                                                                            *
26
27
 * 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/>.      *
Mark Friedrichs's avatar
Mark Friedrichs committed
28
29
30
31
32
 * -------------------------------------------------------------------------- */

#include <vector>
#include <set>

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
33
#include "BrookStreamImpl.h"
Mark Friedrichs's avatar
Mark Friedrichs committed
34
35
36
37
38
39
#include "BrookPlatform.h"
#include "BrookCommon.h"

namespace OpenMM {

/**
40
 * This kernel is invoked by NonbondedForce to calculate the forces acting on the system.
Mark Friedrichs's avatar
Mark Friedrichs committed
41
42
43
44
45
 */
class BrookNonBonded : public BrookCommon {

   public:
  
Mark Friedrichs's avatar
Mark Friedrichs committed
46
     BrookNonBonded( );
Mark Friedrichs's avatar
Mark Friedrichs committed
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  
      ~BrookNonBonded();
  
      /**
       * Return number of force streams
       * 
       * @return number of force streams
       *
       */

      int getNumberOfForceStreams( void ) const; 

      /** 
       * Get duplication factor
       * 
       * @return   duplication factor
       *
       */
      
      int getDuplicationFactor( void ) const;
      
      /** 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
69
       * Get particle ceiling parameter
Mark Friedrichs's avatar
Mark Friedrichs committed
70
       * 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
71
       * @return particle ceiling parameter
Mark Friedrichs's avatar
Mark Friedrichs committed
72
73
74
       *
       */
         
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
75
      int getParticleSizeCeiling( void ) const;
Mark Friedrichs's avatar
Mark Friedrichs committed
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
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
241
 
      /** 
       * Get outer loop unroll
       * 
       * @return   outer loop unroll (fixed value)
       *
       */
      
      int getOuterLoopUnroll( void ) const;
      
      /** 
       * Set outer loop unroll
       * 
       * @param  outer loop unroll (fixed value)
       *
       * @return updated outer loop unroll (fixed value)
       *
       */
      
      int setOuterLoopUnroll( int outerUnroll );
      
      /**
       * Return unrolling for inner loops
       * 
       * @return outer loop unrolling
       */

      int getInnerLoopUnroll( void ) const; 

      /**
       * Get j-stream width
       *
       * @param platform platform reference
       *
       * @return j-stream width
       */

      int getJStreamWidth( const Platform& platform ); 

      /**
       * Get j-stream width
       *
       * @return j-stream width
       */

      int getJStreamWidth( void ) const; 

      /**
       * Get j-stream height
       *
       * @param platform platform reference
       *
       * @return j-stream height
       */

      int getJStreamHeight( const Platform& platform ); 

      /**
       * Get j-stream height
       *
       * @return j-stream height
       */

      int getJStreamHeight( void ) const;

      /**
       * Get j-stream size
       * 
       * @param platform platform reference
       *
       * @return j-stream size
       */

      int getJStreamSize( const Platform& platform ); 

      /**
       * Get j-stream size
       * 
       * @return j-stream size
       */

      int getJStreamSize( void ) const; 

      /**
       * Get partial force stream width
       *
       * @param platform platform reference
       *
       * @return partial force stream width
       */

      int getPartialForceStreamWidth( const Platform& platform ); 

      /**
       * Get partial force stream width
       *
       * @return partial force stream width
       */

      int getPartialForceStreamWidth( void ) const; 

      /**
       * Get partial force stream height
       *
       * @param platform platform reference
       *
       * @return partial force stream height
       */

      int getPartialForceStreamHeight( const Platform& platform ); 

      /**
       * Get partial force stream height
       *
       * @return partial force stream height
       */

      int getPartialForceStreamHeight( void ) const;

      /**
       * Get partial force stream size
       * 
       * @param platform platform reference
       *
       * @return partial force stream size
       */

      int getPartialForceStreamSize( const Platform& platform ); 

      /**
       * Get partial force stream size
       * 
       * @return partial force stream size
       */

      int getPartialForceStreamSize( void ) const; 

      /**
       * Get partial force stream size
       * 
       * @return partial force stream size
       */

      /**
       * Get exclusion stream width
       * 
       * @return exclusion stream width
       */

      int getExclusionStreamWidth( void ) const; 

      /**
       * Get exclusion stream size
       * 
       * @return exclusion stream size
       */

      int getExclusionStreamSize( void ) const; 

      /** 
       * Get exclusion stream 
       *
       * @return  exclusion stream
       *
       */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
242
      BrookFloatStreamInternal* getExclusionStream( void ) const;
Mark Friedrichs's avatar
Mark Friedrichs committed
243
244
245
246
247
248
249
250
      
      /** 
       * Get vdw stream 
       *
       * @return  vdw stream
       *
       */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
251
      BrookFloatStreamInternal* getOuterVdwStream( void ) const;
Mark Friedrichs's avatar
Mark Friedrichs committed
252
253
254
255
256
257
258
259
      
      /** 
       * Get charge stream 
       *
       * @return  charge stream
       *
       */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
260
      BrookFloatStreamInternal* getChargeStream( void ) const;
Mark Friedrichs's avatar
Mark Friedrichs committed
261
262
263
264
265
266
267
268
      
      /** 
       * Get sigma-eps stream 
       *
       * @return  sigma-eps stream
       *
       */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
269
      BrookFloatStreamInternal* getInnerSigmaStream( void ) const;
Mark Friedrichs's avatar
Mark Friedrichs committed
270
271
272
273
274
275
276
277
      
      /** 
       * Get epsilon stream 
       *
       * @return  epsilon stream
       *
       */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
278
      BrookFloatStreamInternal* getInnerEpsilonStream( void ) const;
Mark Friedrichs's avatar
Mark Friedrichs committed
279
280
281
282
283
284
285
286
      
      /** 
       * Get force streams 
       *
       * @return  force streams
       *
       */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
287
      BrookFloatStreamInternal** getForceStreams( void );
Mark Friedrichs's avatar
Mark Friedrichs committed
288
      
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
289
290
291
292
293
294
295
      /** 
       * Compute forces
       * 
       */
      
      void computeForces( BrookStreamImpl& positionStream, BrookStreamImpl& forceStream );
      
Mark Friedrichs's avatar
Mark Friedrichs committed
296
297
298
299
300
301
302
303
304
305
306
307
      /** 
       * Return true if force[index] stream is set 
       *
       * @return  true  if index is valid && force[index] stream is set; else false
       *
       */
      
      int isForceStreamSet( int index ) const;
      
      /* 
       * Setup of nonbonded ixns
       *
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
308
309
310
311
       * @param numberOfParticles         number of particles
       * @param nonbondedParameters   vector of nonbonded parameters [particleI][0=c6]
       *                                                             [particleI][1=c12]
       *                                                             [particleI][2=charge]
Mark Friedrichs's avatar
Mark Friedrichs committed
312
313
314
315
316
317
       * @param platform              Brook platform
       * @param log                   optional Log file reference
       *
       * @return nonzero value if error
       * */
      
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
318
      int setup( int numberOfParticles, const std::vector<std::vector<double> >& nonbondedParameters,
Mark Friedrichs's avatar
Mark Friedrichs committed
319
                 const std::vector<std::set<int> >& exclusions,  const Platform& platform );
Mark Friedrichs's avatar
Mark Friedrichs committed
320
      
321
322
323
324
325
326
327
328
329
330
331
      /** 
       * Set duplication factor
       * 
       * @param   duplication factor
       *
       * @return  DefaultReturnValue
       *
       */
      
      int setDuplicationFactor( int duplicationFactor );
      
Mark Friedrichs's avatar
Mark Friedrichs committed
332
333
334
335
336
337
338
339
340
      /* 
       * Get contents of object
       *
       * @param level of dump
       *
       * @return string containing contents
       *
       * */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
341
      std::string getContentsString( int level = 0 ) const;
Mark Friedrichs's avatar
Mark Friedrichs committed
342
343
344
345
346
347
348

   private:
   
      // fixed number of force streams

      static const int NumberOfForceStreams     = 4;

Mark Friedrichs's avatar
Mark Friedrichs committed
349
350
351
352
353
354
355
356
357
358
359
      // streams indices

      enum { 
              ExclusionStream,
              OuterVdwStream,
              ChargeStream,
              InnerSigmaStream,
              InnerEpsilonStream,
              LastStreamIndex
           };

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
360
      // particle ceiling
Mark Friedrichs's avatar
Mark Friedrichs committed
361

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
362
      int _particleSizeCeiling;
Mark Friedrichs's avatar
Mark Friedrichs committed
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390

      // unroll in i/j dimensions

      int _outerUnroll;
      int _innerUnroll;

      // duplication factor

      int _duplicationFactor;

      // force stream width

      int _partialForceStreamWidth;
      int _partialForceStreamHeight;
      int _partialForceStreamSize;

      // exclusions stream dimensions

      int _exclusionStreamWidth;
      int _exclusionStreamHeight;
      int _exclusionStreamSize;

      // j-stream dimensions

      int _jStreamWidth;
      int _jStreamHeight;
      int _jStreamSize;

Mark Friedrichs's avatar
Mark Friedrichs committed
391
      // internal streams
Mark Friedrichs's avatar
Mark Friedrichs committed
392

Mark Friedrichs's avatar
Mark Friedrichs committed
393
394
      BrookFloatStreamInternal* _nonbondedStreams[LastStreamIndex];
      BrookFloatStreamInternal* _nonbondedForceStreams[NumberOfForceStreams];
Mark Friedrichs's avatar
Mark Friedrichs committed
395

Mark Friedrichs's avatar
Mark Friedrichs committed
396
397
398
      /* 
       * Setup of stream dimensions for exclusion stream
       *
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
399
400
       * @param particleStreamSize        particle stream size
       * @param particleStreamWidth       particle stream width
Mark Friedrichs's avatar
Mark Friedrichs committed
401
402
403
404
405
       *
       * @return ErrorReturnValue if error, else DefaultReturnValue
       *
       * */
      
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
406
      int _initializeExclusionStreamSize( int particleStreamSize, int particleStreamWidth );
Mark Friedrichs's avatar
Mark Friedrichs committed
407
      
Mark Friedrichs's avatar
Mark Friedrichs committed
408
409
410
411
412
413
414
415
416
      /** 
       * Initialize exclusion stream dimensions and stream
       * 
       * @param platform                  platform
       *
       * @return nonzero value if error
       *
       */
      
417
      int _initializeExclusionStream( const Platform& platform );
Mark Friedrichs's avatar
Mark Friedrichs committed
418
419
420
421
            
      /** 
       * Set exclusion (4x4)
       * 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
422
423
       * @param i                         particle i index
       * @param j                         particle j index
Mark Friedrichs's avatar
Mark Friedrichs committed
424
425
426
427
428
429
430
       * @param exclusionStreamWidth      exclusion stream width
       * @param exclusion                 array of packed exclusions
       *
       * @return nonzero value if error
       *
       */
      
431
      int _setExclusion( int i, int j, int exclusionStreamWidth, BrookOpenMMFloat* exclusion );
Mark Friedrichs's avatar
Mark Friedrichs committed
432
433
434
435
      
      /** 
       * Initialize exclusions
       * 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
436
       * @param exclusions                vector of sets containing exclusions (1 set entry for every particle)
Mark Friedrichs's avatar
Mark Friedrichs committed
437
438
439
440
441
442
       * @param platform                  platform
       *
       * @return nonzero value if error
       *
       */
      
443
      int _initializeExclusions( const std::vector<std::set<int> >& exclusionsVector, const Platform& platform );
Mark Friedrichs's avatar
Mark Friedrichs committed
444

Mark Friedrichs's avatar
Mark Friedrichs committed
445
446
447
      /** 
       * Initialize stream dimensions
       * 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
448
       * @param numberOfParticles             number of particles
Mark Friedrichs's avatar
Mark Friedrichs committed
449
450
451
452
453
454
       * @param platform                  platform
       *
       * @return ErrorReturnValue if error, else DefaultReturnValue
       *
       */
      
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
455
      int _initializeStreamSizes( int numberOfParticles, const Platform& platform );
Mark Friedrichs's avatar
Mark Friedrichs committed
456
      
Mark Friedrichs's avatar
Mark Friedrichs committed
457
458
459
460
461
462
463
464
465
      /** 
       * Initialize stream dimensions and streams
       * 
       * @param platform                  platform
       *
       * @return nonzero value if error
       *
       */
      
466
      int _initializeStreams( const Platform& platform );
Mark Friedrichs's avatar
Mark Friedrichs committed
467
468
469
470
      
      /* 
       * Setup of j-stream dimensions
       *
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
471
472
       * @param particleStreamSize        particle stream size
       * @param particleStreamWidth       particle stream width
Mark Friedrichs's avatar
Mark Friedrichs committed
473
474
475
476
477
478
479
       *
       * @return ErrorReturnValue if error, else DefaultReturnValue
       *
       * @throw  OpenMMException  if jStreamWidth < 1 || innerUnroll < 1
       *
       * */
      
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
480
      int _initializeJStreamSize( int particleStreamSize, int particleStreamWidth );
Mark Friedrichs's avatar
Mark Friedrichs committed
481
482
483
484

      /* 
       * Setup of outer vdw stream size
       *
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
485
486
       * @param particleStreamSize        particle stream size
       * @param particleStreamWidth       particle stream width
Mark Friedrichs's avatar
Mark Friedrichs committed
487
488
489
490
491
492
       *
       * @return ErrorReturnValue if error, else DefaultReturnValue
       *
       * @throw  OpenMMException  if jStreamWidth < 1 || innerUnroll < 1
       *
       * */
Mark Friedrichs's avatar
Mark Friedrichs committed
493
      
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
494
      int _initializeOuterVdwStreamSize( int particleStreamSize, int particleStreamWidth );
Mark Friedrichs's avatar
Mark Friedrichs committed
495

Mark Friedrichs's avatar
Mark Friedrichs committed
496
497
498
499
500
501
502
503
504
505
506
507
      /** 
       * Set sigma & epsilon given c6 & c12 (geometric rule)
       * 
       * @param c6                        vdw c6
       * @param c12                       vdw c12
       * @param sigma                     massaged sigma
       * @param epsilon                   massaged epsilon
       *
       * @return nonzero value if error
       *
       */
      
508
      int _setSigmaEpsilon( double c6, double c12, double* sigma , double* epsilon );
Mark Friedrichs's avatar
Mark Friedrichs committed
509
510
511
512

      /** 
       * Initialize vdw & charge
       * 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
513
       * @param exclusions                vector of sets containing exclusions (1 set entry for every particle)
Mark Friedrichs's avatar
Mark Friedrichs committed
514
515
516
517
518
519
       * @param platform                  platform
       *
       * @return nonzero value if error
       *
       */
      
520
521
522
523
524
      int _initializeVdwAndCharge( const std::vector<std::vector<double> >& nonbondedParameters, const Platform& platform );
      
      /** 
       * Initialize vdw & charge
       * 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
525
       * @param exclusions                vector of sets containing exclusions (1 set entry for every particle)
526
527
528
529
530
531
532
       * @param platform                  platform
       *
       * @return nonzero value if error
       *
       */
      
      int _initializeJStreamVdw( const std::vector<std::vector<double> >& nonbondedParameters, const Platform& platform );
Mark Friedrichs's avatar
Mark Friedrichs committed
533
      
Mark Friedrichs's avatar
Mark Friedrichs committed
534
535
536
      /* 
       * Setup of stream dimensions for partial force streams
       *
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
537
538
       * @param particleStreamSize        particle stream size
       * @param particleStreamWidth       particle stream width
Mark Friedrichs's avatar
Mark Friedrichs committed
539
540
541
542
543
       *
       * @return ErrorReturnValue if error, else DefaultReturnValue
       *
       * */
      
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
544
      int _initializePartialForceStreamSize( int particleStreamSize, int particleStreamWidth );
Mark Friedrichs's avatar
Mark Friedrichs committed
545
      
546
547
548
549
550
551
552
553
554
555
556
557
558
559
      /* 
       * Utility to compute distances between two points
       *
       * @param idx1       index of point1 into array 
       * @param idx2       index of point2 into array 
       * @param coord      array of points p1={coord[0], coord[1], coord[2] },
       *                                   p2={coord[3], coord[4], coord[5] },
       *                                   p3={coord[6], coord[7], coord[8] }
       *
       * @return distance
       *
       * */
      
      float _computeDistance( int idx1, int idx2, float* coord );
Mark Friedrichs's avatar
Mark Friedrichs committed
560
561
562
563
};

} // namespace OpenMM

Mark Friedrichs's avatar
Mark Friedrichs committed
564
#endif /* OPENMM_BROOK_NONBONDED_H_ */