BrookCommon.cpp 17.8 KB
Newer Older
1
2
3
4
5
6
7
8
/* -------------------------------------------------------------------------- *
 *                                   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.               *
 *                                                                            *
9
10
 * Portions copyright (c) 2009 Stanford University and the Authors.           *
 * Authors: Mark Friedrichs, Mike Houston                                     *
11
12
 * Contributors:                                                              *
 *                                                                            *
13
14
15
16
 * 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.                                        *
17
 *                                                                            *
18
19
20
21
 * 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.                        *
22
 *                                                                            *
23
24
 * 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/>.      *
25
26
27
 * -------------------------------------------------------------------------- */

#include <math.h>
Mark Friedrichs's avatar
Mark Friedrichs committed
28
29
#include <stdlib.h>

30
#include <sstream>
Mark Friedrichs's avatar
Mark Friedrichs committed
31

32
33
34
#include "BrookCommon.h"
#include "BrookPlatform.h"
#include "BrookStreamFactory.h"
35
#include "openmm/OpenMMException.h"
36
37
38
39

using namespace OpenMM;
using namespace std;

Mark Friedrichs's avatar
Mark Friedrichs committed
40
41
// bonded streams
    
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
42
const std::string BrookCommon::BondedParticleIndicesStream                        = "BondedParticleIndicesStream";
Mark Friedrichs's avatar
Mark Friedrichs committed
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const std::string BrookCommon::BondedParametersStream                             = "BondedParametersStream";
const std::string BrookCommon::UnrolledForceStream                                = "UnrolledForceStream";
const std::string BrookCommon::BondedChargeStream                                 = "BondedChargeStream";
const std::string BrookCommon::BondedInverseMapStreams                            = "BondedInverseMapStreams";

// non-bonded streams

const std::string BrookCommon::NonBondedExclusionStream                           = "NonBondedExclusionStream";
const std::string BrookCommon::OuterVdwStream                                     = "OuterVdwStream";
const std::string BrookCommon::InnerSigmaStream                                   = "InnerSigmaStream";
const std::string BrookCommon::InnerEpsilonStream                                 = "InnerEpsilonStream";
const std::string BrookCommon::NonBondedChargeStream                              = "NonBondedChargeStream";
const std::string BrookCommon::PartialForceStream                                 = "PartialForceStream";

// OBC Gbsa streams

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
59
60
61
const std::string BrookCommon::ObcParticleRadiiStream                             = "ObcParticleRadiiStream";
const std::string BrookCommon::ObcScaledParticleRadiiStream                       = "ObcScaledParticleRadiiStream";
const std::string BrookCommon::ObcParticleRadiiWithDielectricOffsetStream         = "ObcParticleRadiiWithDielectricOffsetStream";
Mark Friedrichs's avatar
Mark Friedrichs committed
62
63
64
65
66
const std::string BrookCommon::ObcBornRadiiStream                                 = "ObcBornRadiiStream";
const std::string BrookCommon::ObcBornRadii2Stream                                = "ObcBornRadii2Stream";
const std::string BrookCommon::ObcIntermediateForceStream                         = "ObcIntermediateForceStream";
const std::string BrookCommon::ObcChainStream                                     = "ObcChainStream";

Mark Friedrichs's avatar
Mark Friedrichs committed
67
68
69
70
71
72
// StochasticDynamics streams

const std::string BrookCommon::SDPC1Stream                                        = "SDPC1Stream";
const std::string BrookCommon::SDPC2Stream                                        = "SDPC2Stream";
const std::string BrookCommon::SD2XStream                                         = "SD2XStream";
const std::string BrookCommon::SD1VStream                                         = "SD1VStream";
Mark Friedrichs's avatar
Mark Friedrichs committed
73
74
75
const std::string BrookCommon::VPrimeStream                                       = "VPrimeStream";
const std::string BrookCommon::XPrimeStream                                       = "XPrimeStream";
const std::string BrookCommon::InverseMassStream                                  = "InverseMassStream";
Mark Friedrichs's avatar
Mark Friedrichs committed
76

Mark Friedrichs's avatar
Mark Friedrichs committed
77
78
// Shake streams

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
79
80
const std::string BrookCommon::ShakeParticleIndicesStream                         = "ShakeParticleIndicesStream";
const std::string BrookCommon::ShakeParticleParameterStream                       = "ShakeParticleParameterStream";
Mark Friedrichs's avatar
Mark Friedrichs committed
81
82
83
84
85
86
const std::string BrookCommon::ShakeXCons0Stream                                  = "ShakeXCons0Stream";
const std::string BrookCommon::ShakeXCons1Stream                                  = "ShakeXCons1Stream";
const std::string BrookCommon::ShakeXCons2Stream                                  = "ShakeXCons2Stream";
const std::string BrookCommon::ShakeXCons3Stream                                  = "ShakeXCons3Stream";
const std::string BrookCommon::ShakeInverseMapStream                              = "ShakeInverseMapStream";

Mark Friedrichs's avatar
Mark Friedrichs committed
87
88
89
// Random number streams

const std::string BrookCommon::ShuffleStream                                      = "ShuffleStream";
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
90
const std::string BrookCommon::RandomValuesStream                                 = "RandomValuesStream";
Mark Friedrichs's avatar
Mark Friedrichs committed
91

92
93
94
95
96
// Random number streams

const std::string BrookCommon::BrookVelocityCenterOfMassRemovalWorkStream         = "VelocityCenterOfMassRemovalWorkStream";
const std::string BrookCommon::BrookVelocityCenterOfMassRemovalMassStream         = "VelocityCenterOfMassRemovalMassStream";

97
98
99
100
101
/** 
 * Constructor
 * 
 */

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
102
BrookCommon::BrookCommon( ){
103
104
105
106
107
108
109
110

// ---------------------------------------------------------------------------------------

   // static const std::string methodName      = "BrookCommon::BrookCommon";
   // static const int debug                   = 1;

// ---------------------------------------------------------------------------------------

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
111
112
   _numberOfParticles             = 0;
   _particleSizeModified          = 0;
113

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
114
115
116
   _particleStreamWidth           = -1;
   _particleStreamHeight          = -1; 
   _particleStreamSize            = -1;
117

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
118
   _log                           = NULL;
Mark Friedrichs's avatar
Mark Friedrichs committed
119
   _isActive                      = 0;
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139

}   
 
/** 
 * Destructor
 * 
 */

BrookCommon::~BrookCommon( ){

// ---------------------------------------------------------------------------------------

   //static const std::string methodName      = "BrookCommon::~BrookCommon";
   //static const int debug                   = 1;

// ---------------------------------------------------------------------------------------

}

/** 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
140
 * Get number of particles
141
 * 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
142
 * @return  number of particles
143
144
145
 *
 */

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
146
147
int BrookCommon::getNumberOfParticles( void ) const {
   return _numberOfParticles;
148
149
150
}

/** 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
151
 * Get number of particles
152
 * 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
153
154
 * @param  numberOfParticles number of particles
 * @return  number of particles
155
156
157
 *
 */

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
158
159
160
int BrookCommon::setNumberOfParticles( int numberOfParticles ){
   if( numberOfParticles != _numberOfParticles ){
      _particleSizeModified = numberOfParticles;
161
   }
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
162
163
   _numberOfParticles = numberOfParticles;
   return _numberOfParticles;
164
165
166
}

/** 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
167
 * Get particle stream width
168
169
170
 * 
 * @param platform  platform
 *
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
171
 * @return  particle stream width
172
173
174
 *
 */

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
175
int BrookCommon::getParticleStreamWidth( const Platform& platform ){
176
177
178

// ---------------------------------------------------------------------------------------

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
179
   // static const std::string methodName      = "BrookCommon::getParticleStreamWidth";
180
181
182
183
   // static const int debug                   = 1;

// ---------------------------------------------------------------------------------------

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
184
   // get particle stream width
185

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
186
187
   if( _particleStreamWidth < 0 ){
      _getParticleStreamDimensions( platform );
188
   }
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
189
   return _particleStreamWidth;
190
191
192
}

/** 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
193
 * Get particle stream width
194
 * 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
195
 * @return  particle stream width
196
197
198
 *
 */

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
199
int BrookCommon::getParticleStreamWidth( void ) const {
200
201
202

// ---------------------------------------------------------------------------------------

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
203
   // static const std::string methodName      = "BrookCommon::getParticleStreamWidth";
204
205
206
207
   // static const int debug                   = 1;

// ---------------------------------------------------------------------------------------

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
208
   return _particleStreamWidth;
209
210
211
}

/** 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
212
 * Get particle stream height
213
214
215
 * 
 * @param platform platform
 *
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
216
 * @return  particle stream height 
217
218
219
 *
 */

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
220
int BrookCommon::getParticleStreamHeight( const Platform& platform ){
221
222
223

// ---------------------------------------------------------------------------------------

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
224
   // static const std::string methodName      = "BrookCommon::getParticleStreamHeight";
225
226
227
228
   // static const int debug                   = 1;

// ---------------------------------------------------------------------------------------

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
229
   // get particle stream height
230

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
231
232
   if( _particleStreamHeight < 0 ){
      _getParticleStreamDimensions( platform );
233
   }
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
234
   return _particleStreamHeight;
235
236
237
}

/** 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
238
 * Get particle stream height
239
 * 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
240
 * @return  particle stream height 
241
242
243
 *
 */

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
244
int BrookCommon::getParticleStreamHeight( void ) const {
245
246
247

// ---------------------------------------------------------------------------------------

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
248
   // static const std::string methodName      = "BrookCommon::getParticleStreamHeight";
249
250
251
252
   // static const int debug                   = 1;

// ---------------------------------------------------------------------------------------

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
253
   return _particleStreamHeight;
254
255
256
}

/** 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
257
 * Get particle stream size
258
259
260
 * 
 * @param platform  platform
 *
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
261
 * @return  particle stream size
262
263
264
 *
 */

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
265
int BrookCommon::getParticleStreamSize( const Platform& platform ){
266
267
268

// ---------------------------------------------------------------------------------------

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
269
   // static const std::string methodName      = "BrookCommon::getParticleStreamSize";
270
271
272
273
   // static const int debug                   = 1;

// ---------------------------------------------------------------------------------------

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
274
   // get particle stream size
275

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
276
277
   if( _particleStreamSize < 0 ){
      _getParticleStreamDimensions( platform );
278
   }
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
279
   return _particleStreamSize;
280
281
282
}

/** 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
283
 * Get particle stream size
284
 * 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
285
 * @return  particle stream size
286
287
288
 *
 */

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
289
290
int BrookCommon::getParticleStreamSize( void ) const {
   return _particleStreamSize;
291
292
293
}

/** 
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
294
 * Get particle stream dimensions
295
296
297
298
299
 * 
 * @param platform                  platform
 *
 */

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
300
void BrookCommon::_getParticleStreamDimensions( const Platform& platform ){
301
302
303

// ---------------------------------------------------------------------------------------

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
304
   // static const std::string methodName      = "BrookCommon::_getParticleStreamDimensions";
305
306
307
308
   // static const int debug                   = 1;

// ---------------------------------------------------------------------------------------

Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
309
   // get particle stream size
310

311
   const BrookPlatform& brookPlatform           = dynamic_cast<const BrookPlatform&> (platform);
312
   const BrookStreamFactory& brookStreamFactory = dynamic_cast<const BrookStreamFactory&> (platform.getDefaultStreamFactory() );
Mark Friedrichs's avatar
Mods  
Mark Friedrichs committed
313
314
315
   _particleStreamWidth                         = brookStreamFactory.getDefaultParticleStreamWidth();
   _particleStreamSize                          = brookPlatform.getStreamSize( getNumberOfParticles(), _particleStreamWidth, NULL );
   _particleStreamHeight                        = (int) ( ((float) _particleStreamSize)/( (float) _particleStreamWidth) + 0.001);
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344

   return;
}

/** 
 * Get log file reference
 * 
 * @return  log file reference
 *
 */

FILE* BrookCommon::getLog( void ) const {
   return _log;
}

/** 
 * Set log file reference
 * 
 * @param  log file reference
 *
 * @return  DefaultReturnValue
 *
 */

int BrookCommon::setLog( FILE* log ){
   _log = log;
   return BrookCommon::DefaultReturnValue;
}

Mark Friedrichs's avatar
Mark Friedrichs committed
345
/** 
Mark Friedrichs's avatar
Mark Friedrichs committed
346
 * Get flag signalling whether active
Mark Friedrichs's avatar
Mark Friedrichs committed
347
 * 
Mark Friedrichs's avatar
Mark Friedrichs committed
348
 * @return  flag signalling whether active
Mark Friedrichs's avatar
Mark Friedrichs committed
349
350
351
 *
 */

Mark Friedrichs's avatar
Mark Friedrichs committed
352
353
int BrookCommon::isActive( void ) const {
   return _isActive;
Mark Friedrichs's avatar
Mark Friedrichs committed
354
355
356
}

/** 
Mark Friedrichs's avatar
Mark Friedrichs committed
357
 * Set flag signalling whether active
Mark Friedrichs's avatar
Mark Friedrichs committed
358
 * 
Mark Friedrichs's avatar
Mark Friedrichs committed
359
 * @param  flag signalling whether active
Mark Friedrichs's avatar
Mark Friedrichs committed
360
361
362
363
364
 *
 * @return  DefaultReturnValue
 *
 */

Mark Friedrichs's avatar
Mark Friedrichs committed
365
366
int BrookCommon::setIsActive( int isActive ){
   _isActive= isActive;
Mark Friedrichs's avatar
Mark Friedrichs committed
367
368
369
   return BrookCommon::DefaultReturnValue;
}

370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/* 
 * Get contents of object
 *
 * @param tab         tab
 * @param description description
 * @param value       value
 *
 * @return string containing contents
 *
 * */

std::string BrookCommon::_getLine( const std::string& tab, const std::string& description, const std::string& value ) const {

// ---------------------------------------------------------------------------------------

   static const std::string methodName      = "BrookCommon::_getLine";

   static const unsigned int MAX_LINE_CHARS = 256;
   char line[MAX_LINE_CHARS];

// ---------------------------------------------------------------------------------------

   std::stringstream message;
   memset( line, ' ', MAX_LINE_CHARS ); 
#ifdef WIN32
   (void) sprintf_s( line, MAX_LINE_CHARS, "%s %-40s %s", tab.c_str(), description.c_str(), value.c_str() );
#else
   (void) sprintf( line, "%s %-40s %s", tab.c_str(), description.c_str(), value.c_str() );
#endif
   message << std::string( line ) << std::endl;

   return message.str();

}
Mark Friedrichs's avatar
Mark Friedrichs committed
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
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
481
482
483
484
485
486
487
488
489

/* 
 * Given number of stream elements and width, returns the appropriate
 * height of the stream
 *
 * @param streamSize   stream size 
 * @param width        stream width
 *
 * @return stream height
 *
 */

int BrookCommon::getStreamHeight( int streamSize, int streamWidth ){

// ---------------------------------------------------------------------------------------

   //static const std::string methodName      = "BrookCommon::getStreamHeight";

// ---------------------------------------------------------------------------------------

	int streamHeight = streamSize/streamWidth;

	if( streamSize % streamWidth ){
      streamHeight++;
   }

	return streamHeight;
}

/* 
 * Given number of stream elements, get stream width & height
 *
 * @param streamSize    stream size 
 * @param streamWidth   output stream width
 * @param streamHeight  output stream height
 *
 * @return stream height
 *
 */

void BrookCommon::getStreamDimensions( int streamSize, int *streamWidth, int *streamHeight ){

// ---------------------------------------------------------------------------------------

   //static const std::string methodName      = "BrookCommon::getStreamDimensions";

// ---------------------------------------------------------------------------------------

	// There are two conditions - stream should be as square 
	// as possible, but should also be multiple of 16 along
	// one dimension
	
	float s = sqrtf( (float) streamSize );

	// find nearest multiple of 16 to the perfect square size

	int low  = ( (int) floor( s/16.0f ) ) * 16;

	if ( !low ) {
		*streamWidth  = 16;
		*streamHeight = getStreamHeight( streamSize, *streamWidth );
	} else { 

	   int high = low + 1;

		// I'm not sure 48 is such a good stream width. Things seem
		// to be faster with 32 or 64. Can make this a special
		// case later.
		
		// Choose low or high depending on which one is 
		// more square

		int htlow  = getStreamHeight( streamSize, low );
		int hthigh = getStreamHeight( streamSize, high );
		
		if ( abs( htlow - low ) < abs( hthigh - high ) ) {
			*streamWidth   = low;
			*streamHeight  = htlow;
		} else {
			*streamWidth   = high;
			*streamHeight  = hthigh;
		}
	}
	return;
}

490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
/* 
 * Allocate array
 *
 * @param length        length of array
 * @param width         width  of array
 *
 * @return ptr to array
 *
 */

RealOpenMM** BrookCommon::allocateRealArray( int length, int width ) const {

// ---------------------------------------------------------------------------------------

   //static const std::string methodName      = "BrookCommon::allocateRealArray";

// ---------------------------------------------------------------------------------------

   RealOpenMM** array  = new RealOpenMM*[length];
   RealOpenMM*  buffer = new RealOpenMM[length*width];
   for( int ii = 0; ii < length; ii++ ){
      array[ii] = buffer;
      buffer   += width;
   }
   return array;
}

/* 
 * Free array
 *
 * @param array         array to be freed (assumed allocated using BrookCommon::allocateRealArray
 *
 * @return DefaultReturnValue
 *
 */

int BrookCommon::disposeRealArray( RealOpenMM** array ) const {

// ---------------------------------------------------------------------------------------

   //static const std::string methodName      = "BrookCommon::disposeRealArray";

// ---------------------------------------------------------------------------------------

   delete[] array[0];
   delete[] array;

   return DefaultReturnValue;
}

/* 
 * Copy 1D BrookOpenMMFloat* array to 2D array of RealOpenMM
 *
 * @param length        length of array
 * @param width         width  of array
 * @param array1D       array to copy
 *
 * @return ptr to array
 *
 */

RealOpenMM** BrookCommon::copy1DArrayTo2DArray( int length, int width, BrookOpenMMFloat* array1D ) const {

// ---------------------------------------------------------------------------------------

   //static const std::string methodName      = "BrookCommon::copy1DArrayTo2DArray";

// ---------------------------------------------------------------------------------------

   RealOpenMM** array  = allocateRealArray( length, width );
   int index           = 0;
   for( int ii = 0; ii < length; ii++ ){
     for( int jj = 0; jj < width; jj++ ){
        array[ii][jj] = static_cast<RealOpenMM> (array1D[index++]);
     }
   }

   return array;
}
Mark Friedrichs's avatar
Mark Friedrichs committed
569