BrookNonBonded.h 14 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
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

/* -------------------------------------------------------------------------- *
 *                                   OpenMM                                   *
 * -------------------------------------------------------------------------- *
 * This is part of the OpenMM molecular simulation toolkit originating from   *
 * Simbios, the NIH National Center for Physics-Based Simulation of           *
 * Biological Structures at Stanford, funded under the NIH Roadmap for        *
 * Medical Research, grant U54 GM072970. See https://simtk.org.               *
 *                                                                            *
 * Portions copyright (c) 2008 Stanford University and the Authors.           *
 * Authors: Peter Eastman, Mark Friedrichs                                    *
 * Contributors:                                                              *
 *                                                                            *
 * Permission is hereby granted, free of charge, to any person obtaining a    *
 * copy of this software and associated documentation files (the "Software"), *
 * to deal in the Software without restriction, including without limitation  *
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,   *
 * and/or sell copies of the Software, and to permit persons to whom the      *
 * Software is furnished to do so, subject to the following conditions:       *
 *                                                                            *
 * The above copyright notice and this permission notice shall be included in *
 * all copies or substantial portions of the Software.                        *
 *                                                                            *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   *
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    *
 * THE AUTHORS, CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,    *
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR      *
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE  *
 * USE OR OTHER DEALINGS IN THE SOFTWARE.                                     *
 * -------------------------------------------------------------------------- */

#include <vector>
#include <set>

Mark Friedrichs's avatar
Mark Friedrichs committed
38
39
#include "BrookFloatStreamInternal.h"
#include "BrookIntStreamInternal.h"
Mark Friedrichs's avatar
Mark Friedrichs committed
40
41
42
43
44
45
46
47
48
49
50
51
#include "BrookPlatform.h"
#include "BrookCommon.h"

namespace OpenMM {

/**
 * This kernel is invoked by StandardMMForceField to calculate the forces acting on the system.
 */
class BrookNonBonded : public BrookCommon {

   public:
  
Mark Friedrichs's avatar
Mark Friedrichs committed
52
     BrookNonBonded( );
Mark Friedrichs's avatar
Mark Friedrichs committed
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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
242
243
244
245
246
247
  
      ~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;
      
      /** 
       * Get atom ceiling parameter
       * 
       * @return atom ceiling parameter
       *
       */
         
      int getAtomSizeCeiling( void ) const;
 
      /** 
       * 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
248
      BrookFloatStreamInternal* getExclusionStream( void ) const;
Mark Friedrichs's avatar
Mark Friedrichs committed
249
250
251
252
253
254
255
256
      
      /** 
       * Get vdw stream 
       *
       * @return  vdw stream
       *
       */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
257
      BrookFloatStreamInternal* getOuterVdwStream( void ) const;
Mark Friedrichs's avatar
Mark Friedrichs committed
258
259
260
261
262
263
264
265
      
      /** 
       * Get charge stream 
       *
       * @return  charge stream
       *
       */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
266
      BrookFloatStreamInternal* getChargeStream( void ) const;
Mark Friedrichs's avatar
Mark Friedrichs committed
267
268
269
270
271
272
273
274
      
      /** 
       * Get sigma-eps stream 
       *
       * @return  sigma-eps stream
       *
       */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
275
      BrookFloatStreamInternal* getInnerSigmaStream( void ) const;
Mark Friedrichs's avatar
Mark Friedrichs committed
276
277
278
279
280
281
282
283
      
      /** 
       * Get epsilon stream 
       *
       * @return  epsilon stream
       *
       */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
284
      BrookFloatStreamInternal* getInnerEpsilonStream( void ) const;
Mark Friedrichs's avatar
Mark Friedrichs committed
285
286
287
288
289
290
291
292
      
      /** 
       * Get force streams 
       *
       * @return  force streams
       *
       */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
293
      BrookFloatStreamInternal** getForceStreams( void );
Mark Friedrichs's avatar
Mark Friedrichs committed
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
      
      /** 
       * 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
       *
       * @param numberOfAtoms         number of atoms
       * @param nonbondedParameters   vector of nonbonded parameters [atomI][0=c6]
       *                                                             [atomI][1=c12]
       *                                                             [atomI][2=charge]
       * @param platform              Brook platform
       * @param log                   optional Log file reference
       *
       * @return nonzero value if error
       * */
      
      int setup( int numberOfAtoms, const std::vector<std::vector<double> >& nonbondedParameters,
Mark Friedrichs's avatar
Mark Friedrichs committed
318
                 const std::vector<std::set<int> >& exclusions,  const Platform& platform );
Mark Friedrichs's avatar
Mark Friedrichs committed
319
320
321
322
323
324
325
326
327
328
      
      /* 
       * Get contents of object
       *
       * @param level of dump
       *
       * @return string containing contents
       *
       * */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
329
      std::string getContentsString( int level = 0 ) const;
Mark Friedrichs's avatar
Mark Friedrichs committed
330
331
332
333
334
335
336

   private:
   
      // fixed number of force streams

      static const int NumberOfForceStreams     = 4;

Mark Friedrichs's avatar
Mark Friedrichs committed
337
338
339
340
341
342
343
344
345
346
347
      // streams indices

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

Mark Friedrichs's avatar
Mark Friedrichs committed
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
      // atom ceiling

      int _atomSizeCeiling;

      // 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
379
      // internal streams
Mark Friedrichs's avatar
Mark Friedrichs committed
380

Mark Friedrichs's avatar
Mark Friedrichs committed
381
382
      BrookFloatStreamInternal* _nonbondedStreams[LastStreamIndex];
      BrookFloatStreamInternal* _nonbondedForceStreams[NumberOfForceStreams];
Mark Friedrichs's avatar
Mark Friedrichs committed
383

Mark Friedrichs's avatar
Mark Friedrichs committed
384
385
386
387
388
389
390
391
392
393
394
395
      /* 
       * Setup of stream dimensions for exclusion stream
       *
       * @param atomStreamSize        atom stream size
       * @param atomStreamWidth       atom stream width
       *
       * @return ErrorReturnValue if error, else DefaultReturnValue
       *
       * */
      
      int initializeExclusionStreamSize( int atomStreamSize, int atomStreamWidth );
      
Mark Friedrichs's avatar
Mark Friedrichs committed
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
      /** 
       * Initialize exclusion stream dimensions and stream
       * 
       * @param platform                  platform
       *
       * @return nonzero value if error
       *
       */
      
      int initializeExclusionStream( const Platform& platform );
            
      /** 
       * Set exclusion (4x4)
       * 
       * @param i                         atom i index
       * @param j                         atom j index
       * @param exclusionStreamWidth      exclusion stream width
       * @param exclusion                 array of packed exclusions
       *
       * @return nonzero value if error
       *
       */
      
      int setExclusion( int i, int j, int exclusionStreamWidth, BrookOpenMMFloat* exclusion );
      
      /** 
       * Initialize exclusions
       * 
       * @param exclusions                vector of sets containing exclusions (1 set entry for every atom)
       * @param platform                  platform
       *
       * @return nonzero value if error
       *
       */
      
      int initializeExclusions( const std::vector<std::set<int> >& exclusionsVector, const Platform& platform );

Mark Friedrichs's avatar
Mark Friedrichs committed
433
434
435
436
437
438
439
440
441
442
443
444
      /** 
       * Initialize stream dimensions
       * 
       * @param numberOfAtoms             number of atoms
       * @param platform                  platform
       *
       * @return ErrorReturnValue if error, else DefaultReturnValue
       *
       */
      
      int initializeStreamSizes( int numberOfAtoms, const Platform& platform );
      
Mark Friedrichs's avatar
Mark Friedrichs committed
445
446
447
448
449
450
451
452
453
      /** 
       * Initialize stream dimensions and streams
       * 
       * @param platform                  platform
       *
       * @return nonzero value if error
       *
       */
      
Mark Friedrichs's avatar
Mark Friedrichs committed
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
      int initializeStreams( const Platform& platform );
      
      /* 
       * Setup of j-stream dimensions
       *
       * @param atomStreamSize        atom stream size
       * @param atomStreamWidth       atom stream width
       *
       * @return ErrorReturnValue if error, else DefaultReturnValue
       *
       * @throw  OpenMMException  if jStreamWidth < 1 || innerUnroll < 1
       *
       * */
      
      int initializeJStreamSize( int atomStreamSize, int atomStreamWidth );

      /* 
       * Setup of outer vdw stream size
       *
       * @param atomStreamSize        atom stream size
       * @param atomStreamWidth       atom stream width
       *
       * @return ErrorReturnValue if error, else DefaultReturnValue
       *
       * @throw  OpenMMException  if jStreamWidth < 1 || innerUnroll < 1
       *
       * */
Mark Friedrichs's avatar
Mark Friedrichs committed
481
      
Mark Friedrichs's avatar
Mark Friedrichs committed
482
483
      int initializeOuterVdwStreamSize( int atomStreamSize, int atomStreamWidth );

Mark Friedrichs's avatar
Mark Friedrichs committed
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
      /** 
       * 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
       *
       */
      
      int setSigmaEpsilon( double c6, double c12, double* sigma , double* epsilon );

      /** 
       * Initialize vdw & charge
       * 
       * @param exclusions                vector of sets containing exclusions (1 set entry for every atom)
       * @param platform                  platform
       *
       * @return nonzero value if error
       *
       */
      
      int initializeVdwAndCharge( const std::vector<std::vector<double> >& nonbondedParameters, const Platform& platform );
      
Mark Friedrichs's avatar
Mark Friedrichs committed
510
511
512
513
514
515
516
517
518
519
520
521
      /* 
       * Setup of stream dimensions for partial force streams
       *
       * @param atomStreamSize        atom stream size
       * @param atomStreamWidth       atom stream width
       *
       * @return ErrorReturnValue if error, else DefaultReturnValue
       *
       * */
      
      int initializePartialForceStreamSize( int atomStreamSize, int atomStreamWidth );
      
Mark Friedrichs's avatar
Mark Friedrichs committed
522
523
524
525
};

} // namespace OpenMM

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