kCalculateAmoebaCudaElectrostatic.h 31.5 KB
Newer Older
Mark Friedrichs's avatar
Mark Friedrichs committed
1
2
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
/* -------------------------------------------------------------------------- *
 *                                   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) 2009 Stanford University and the Authors.           *
 * Authors: Scott Le Grand, 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 "amoebaScaleFactors.h"

__global__ 
#if (__CUDA_ARCH__ >= 200)
Peter Eastman's avatar
Peter Eastman committed
31
__launch_bounds__(256, 1)
Mark Friedrichs's avatar
Mark Friedrichs committed
32
#elif (__CUDA_ARCH__ >= 130)
Peter Eastman's avatar
Peter Eastman committed
33
__launch_bounds__(128, 1)
Mark Friedrichs's avatar
Mark Friedrichs committed
34
#else
Peter Eastman's avatar
Peter Eastman committed
35
__launch_bounds__(64, 1)
Mark Friedrichs's avatar
Mark Friedrichs committed
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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
#endif
void METHOD_NAME(kCalculateAmoebaCudaElectrostatic, Forces_kernel)(
                            unsigned int* workUnit,
                            float4* atomCoord,
                            float* labFrameDipole,
                            float* labFrameQuadrupole,
                            float* inducedDipole,
                            float* inducedDipolePolar,
                            float* outputForce,
                            float* outputTorque

#ifdef AMOEBA_DEBUG
                           , float4* debugArray, unsigned int targetAtom
#endif
){

#ifdef AMOEBA_DEBUG
    float4 pullBack[20];
#endif

    extern __shared__ ElectrostaticParticle sA[];

    unsigned int totalWarps      = gridDim.x*blockDim.x/GRID;
    unsigned int warp            = (blockIdx.x*blockDim.x+threadIdx.x)/GRID;
    unsigned int numWorkUnits    = cSim.pInteractionCount[0];
    unsigned int pos             = warp*numWorkUnits/totalWarps;
    unsigned int end             = (warp+1)*numWorkUnits/totalWarps;
    unsigned int lasty           = 0xFFFFFFFF;
    float totalEnergy            = 0.0f;     

    float scalingFactors[LastScalingIndex];

    while (pos < end)
    {

        unsigned int x;
        unsigned int y;
        bool bExclusionFlag;

        // Extract cell coordinates

        decodeCell( workUnit[pos], &x, &y, &bExclusionFlag );

        unsigned int tgx              = threadIdx.x & (GRID - 1);
        unsigned int tbx              = threadIdx.x - tgx;
        unsigned int tj               = tgx;

        ElectrostaticParticle* psA    = &sA[tbx];
        unsigned int atomI            = x + tgx;
85
86
87
88
        ElectrostaticParticle localParticle;
        loadElectrostaticShared(&localParticle, atomI,
                                atomCoord, labFrameDipole, labFrameQuadrupole,
                                inducedDipole, inducedDipolePolar, cAmoebaSim.pDampingFactorAndThole );
Mark Friedrichs's avatar
Mark Friedrichs committed
89

90
91
92
        localParticle.force[0]                   = 0.0f;
        localParticle.force[1]                   = 0.0f;
        localParticle.force[2]                   = 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
93

94
95
96
        localParticle.torque[0]                  = 0.0f;
        localParticle.torque[1]                  = 0.0f;
        localParticle.torque[2]                  = 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
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

        scalingFactors[PScaleIndex]   = 1.0f;
        scalingFactors[DScaleIndex]   = 1.0f;
        scalingFactors[UScaleIndex]   = 1.0f;
        scalingFactors[MScaleIndex]   = 1.0f;

        if (x == y) // Handle diagonals uniquely at 50% efficiency
        {

            // load shared data

           loadElectrostaticShared( &(sA[threadIdx.x]), atomI,
                                    atomCoord, labFrameDipole, labFrameQuadrupole,
                                    inducedDipole, inducedDipolePolar, cAmoebaSim.pDampingFactorAndThole );

            if (!bExclusionFlag)
            {

                // this branch is never exercised since it includes the
                // interaction between atomI and itself which is always excluded

                for (unsigned int j = 0; j < GRID; j++)
                {

                    float force[3];
                    float torque[2][3];

                    float energy;
125
                    calculateElectrostaticPairIxn_kernel( localParticle,                              psA[j],
Mark Friedrichs's avatar
Mark Friedrichs committed
126
127
128
129
130
131
132
133
134
135
136
                                                          cAmoebaSim.scalingDistanceCutoff,           scalingFactors,
                                                          force, torque, &energy
#ifdef AMOEBA_DEBUG
, pullBack
#endif
 );

                    unsigned int mask       =  ( (atomI == (y + j)) || (atomI >= cAmoebaSim.numberOfAtoms) || ((y+j) >= cAmoebaSim.numberOfAtoms) ) ? 0 : 1;

                    // add to field at atomI the field due atomJ's charge/dipole/quadrupole

137
138
139
                    localParticle.force[0]            += mask ? force[0]     : 0.0f;
                    localParticle.force[1]            += mask ? force[1]     : 0.0f;
                    localParticle.force[2]            += mask ? force[2]     : 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
140

141
142
143
                    localParticle.torque[0]           += mask ? torque[0][0] : 0.0f;
                    localParticle.torque[1]           += mask ? torque[0][1] : 0.0f;
                    localParticle.torque[2]           += mask ? torque[0][2] : 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
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
 
                    totalEnergy            += mask ? 0.5*energy   : 0.0f;
                }

            }
            else  // bExclusion
            {
                unsigned int xi       = x >> GRIDBITS;
                unsigned int cell     = xi + xi*cAmoebaSim.paddedNumberOfAtoms/GRID-xi*(xi+1)/2;
                int  dScaleMask       = cAmoebaSim.pD_ScaleIndices[cAmoebaSim.pScaleIndicesIndex[cell]+tgx];
                int2 pScaleMask       = cAmoebaSim.pP_ScaleIndices[cAmoebaSim.pScaleIndicesIndex[cell]+tgx];
                int2 mScaleMask       = cAmoebaSim.pM_ScaleIndices[cAmoebaSim.pScaleIndicesIndex[cell]+tgx];

                for (unsigned int j = 0; j < GRID; j++)
                {

                    float force[3];
                    float torque[2][3];

                    unsigned int atomJ = y + j;

                    // set scale factors

                    getMaskedDScaleFactor( j, dScaleMask, scalingFactors + DScaleIndex );
                    getMaskedPScaleFactor( j, pScaleMask, scalingFactors + PScaleIndex );
                    getMaskedMScaleFactor( j, mScaleMask, scalingFactors + MScaleIndex );

                    // force

                    float energy;
174
                    calculateElectrostaticPairIxn_kernel( localParticle,                              psA[j],
Mark Friedrichs's avatar
Mark Friedrichs committed
175
176
177
178
179
180
181
182
183
184
185
186
187
188
                                                          cAmoebaSim.scalingDistanceCutoff,           scalingFactors,
                                                          force, torque, &energy
#ifdef AMOEBA_DEBUG
, pullBack
#endif
 );

                    // nan*0.0 = nan not 0.0, so explicitly exclude (atomI == atomJ) contribution
                    // by setting match flag

                    unsigned int mask       =  ( (atomI == atomJ) || (atomI >= cAmoebaSim.numberOfAtoms) || (atomJ >= cAmoebaSim.numberOfAtoms) ) ? 0 : 1;

                    // add to field at atomI the field due atomJ's charge/dipole/quadrupole

189
190
191
                    localParticle.force[0]            += mask ? force[0]     : 0.0f;
                    localParticle.force[1]            += mask ? force[1]     : 0.0f;
                    localParticle.force[2]            += mask ? force[2]     : 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
192

193
194
195
                    localParticle.torque[0]           += mask ? torque[0][0] : 0.0f;
                    localParticle.torque[1]           += mask ? torque[0][1] : 0.0f;
                    localParticle.torque[2]           += mask ? torque[0][2] : 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
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
248
249
250
251
252
253
254
255
256
257
258
259

                    totalEnergy            += mask ? 0.5*energy   : 0.0f;

#ifdef AMOEBA_DEBUG
if( atomI == targetAtom ){
            unsigned int index                 = (atomI == targetAtom) ? atomJ : atomI;

            debugArray[index].x                = (float) atomI;
            debugArray[index].y                = (float) atomJ;
            debugArray[index].z                = 1.0f;
            debugArray[index].w                = (float) y;
/*
            index                             += cAmoebaSim.paddedNumberOfAtoms;
            debugArray[index].x                = mask ? force[0]     : 0.0f;
            debugArray[index].y                = mask ? force[1]     : 0.0f;
            debugArray[index].z                = mask ? force[2]     : 0.0f;


            index                             += cAmoebaSim.paddedNumberOfAtoms;
            debugArray[index].x                = mask ? torque[0][0] : 0.0f;
            debugArray[index].y                = mask ? torque[0][1] : 0.0f;
            debugArray[index].z                = mask ? torque[0][2] : 0.0f;
*/

            index                             += cAmoebaSim.paddedNumberOfAtoms;
            int pullIndex                      = 0;
            debugArray[index].x                = pullBack[pullIndex].x;
            debugArray[index].y                = pullBack[pullIndex].y;
            debugArray[index].z                = pullBack[pullIndex].z;
            debugArray[index].w                = pullBack[pullIndex].w;

            index                             += cAmoebaSim.paddedNumberOfAtoms;
            pullIndex++;
            debugArray[index].x                = pullBack[pullIndex].x;
            debugArray[index].y                = pullBack[pullIndex].y;
            debugArray[index].z                = pullBack[pullIndex].z;
            debugArray[index].w                = pullBack[pullIndex].w;

            index                             += cAmoebaSim.paddedNumberOfAtoms;
            pullIndex++;
            debugArray[index].x                = pullBack[pullIndex].x;
            debugArray[index].y                = pullBack[pullIndex].y;
            debugArray[index].z                = pullBack[pullIndex].z;
            debugArray[index].w                = pullBack[pullIndex].w;

            index                             += cAmoebaSim.paddedNumberOfAtoms;
            pullIndex++;
            debugArray[index].x                = pullBack[pullIndex].x;
            debugArray[index].y                = pullBack[pullIndex].y;
            debugArray[index].z                = pullBack[pullIndex].z;
            debugArray[index].w                = pullBack[pullIndex].w;

}
#endif

                }
            }

            // Write results

#ifdef USE_OUTPUT_BUFFER_PER_WARP
            float  of;
            unsigned int offset                 = 3*(x + tgx + warp*cAmoebaSim.paddedNumberOfAtoms);
            of                                  = outputForce[offset];
260
            of                                 += localParticle.force[0];
Mark Friedrichs's avatar
Mark Friedrichs committed
261
262
263
            outputForce[offset]                 = of;

            of                                  = outputForce[offset+1];
264
            of                                 += localParticle.force[1];
Mark Friedrichs's avatar
Mark Friedrichs committed
265
266
267
            outputForce[offset+1]               = of;

            of                                  = outputForce[offset+2];
268
            of                                 += localParticle.force[2];
Mark Friedrichs's avatar
Mark Friedrichs committed
269
270
271
            outputForce[offset+2]               = of;

            of                                  = outputTorque[offset];
272
            of                                 += localParticle.torque[0];
Mark Friedrichs's avatar
Mark Friedrichs committed
273
274
275
            outputTorque[offset]                = of;

            of                                  = outputTorque[offset+1];
276
            of                                 += localParticle.torque[1];
Mark Friedrichs's avatar
Mark Friedrichs committed
277
278
279
            outputTorque[offset+1]              = of;

            of                                  = outputTorque[offset+2];
280
            of                                 += localParticle.torque[2];
Mark Friedrichs's avatar
Mark Friedrichs committed
281
282
283
284
            outputTorque[offset+2]              = of;

#else
            unsigned int offset                 = 3*(x + tgx + (x >> GRIDBITS) * cAmoebaSim.paddedNumberOfAtoms);
285
286
287
            outputForce[offset]                 = localParticle.force[0];
            outputForce[offset+1]               = localParticle.force[1];
            outputForce[offset+2]               = localParticle.force[2];
Mark Friedrichs's avatar
Mark Friedrichs committed
288

289
290
291
            outputTorque[offset]                = localParticle.torque[0];
            outputTorque[offset+1]              = localParticle.torque[1];
            outputTorque[offset+2]              = localParticle.torque[2];
Mark Friedrichs's avatar
Mark Friedrichs committed
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
#endif

        }
        else        // 100% utilization
        {
            // Read fixed atom data into registers and GRF

            if (lasty != y)
            {
                // load shared data

               loadElectrostaticShared( &(sA[threadIdx.x]), (y+tgx),
                                        atomCoord, labFrameDipole, labFrameQuadrupole,
                                        inducedDipole, inducedDipolePolar, cAmoebaSim.pDampingFactorAndThole );

            }

309
310
311
            sA[threadIdx.x].force[0]     = 0.0f;
            sA[threadIdx.x].force[1]     = 0.0f;
            sA[threadIdx.x].force[2]     = 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
312

313
314
315
            sA[threadIdx.x].torque[0]    = 0.0f;
            sA[threadIdx.x].torque[1]    = 0.0f;
            sA[threadIdx.x].torque[2]    = 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
316
317
318
319
320
321
322
323
324
325
326
327

            if (!bExclusionFlag)
            {
                for (unsigned int j = 0; j < GRID; j++)
                {

                    float force[3];
                    float torque[2][3];

                    unsigned int atomJ = y + tj;

                    float energy;
328
                    calculateElectrostaticPairIxn_kernel( localParticle,                              psA[tj],
Mark Friedrichs's avatar
Mark Friedrichs committed
329
330
331
332
333
334
335
336
337
338
339
                                                                 cAmoebaSim.scalingDistanceCutoff,           scalingFactors,
                                                                 force, torque, &energy
#ifdef AMOEBA_DEBUG
, pullBack
#endif
 );
       
                           unsigned int mask       =  ( (atomI >= cAmoebaSim.numberOfAtoms) || ( atomJ >= cAmoebaSim.numberOfAtoms) ) ? 0 : 1;
       
                           // add force and torque to atom I due atom J
       
340
341
342
                           localParticle.force[0]         += mask ? force[0]      : 0.0f;
                           localParticle.force[1]         += mask ? force[1]      : 0.0f;
                           localParticle.force[2]         += mask ? force[2]      : 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
343
       
344
345
346
                           localParticle.torque[0]        += mask ? torque[0][0]  : 0.0f;
                           localParticle.torque[1]        += mask ? torque[0][1]  : 0.0f;
                           localParticle.torque[2]        += mask ? torque[0][2]  : 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
347
348
349
350
351

                           totalEnergy         += mask ? energy        : 0.0f;
           
                           // add force and torque to atom J due atom I
       
352
353
354
                           psA[tj].force[0]     -= mask ?  force[0]     : 0.0f;
                           psA[tj].force[1]     -= mask ?  force[1]     : 0.0f;
                           psA[tj].force[2]     -= mask ?  force[2]     : 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
355
       
356
357
358
                           psA[tj].torque[0]    += mask ?  torque[1][0] : 0.0f;
                           psA[tj].torque[1]    += mask ?  torque[1][1] : 0.0f;
                           psA[tj].torque[2]    += mask ?  torque[1][2] : 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
359
360
361
362
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
391
392
393
394
395
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
       
       
#ifdef AMOEBA_DEBUG
if( atomI == targetAtom  || atomJ == targetAtom ){
        unsigned int index                 = (atomI == targetAtom) ? atomJ : atomI;
        unsigned int indexI                = (atomI == targetAtom) ? 0 : 1;
        unsigned int indexJ                = (atomI == targetAtom) ? 1 : 0;
        float forceSign                    = (atomI == targetAtom) ? 1.0f : -1.0f;

        debugArray[index].x                = (float) atomI;
        debugArray[index].y                = (float) atomJ;
        debugArray[index].z                = 2.0f;
        debugArray[index].w                = (float) y;
/*
        index                             += cAmoebaSim.paddedNumberOfAtoms;
        debugArray[index].x                = mask ? forceSign*force[0]     : 0.0f;
        debugArray[index].y                = mask ? forceSign*force[1]     : 0.0f;
        debugArray[index].z                = mask ? forceSign*force[2]     : 0.0f;


        index                             += cAmoebaSim.paddedNumberOfAtoms;
        debugArray[index].x                = mask ? torque[indexI][0] : 0.0f;
        debugArray[index].y                = mask ? torque[indexI][1] : 0.0f;
        debugArray[index].z                = mask ? torque[indexI][2] : 0.0f;

        index                             += cAmoebaSim.paddedNumberOfAtoms;
        debugArray[index].x                = mask ? torque[indexJ][0] : 0.0f;
        debugArray[index].y                = mask ? torque[indexJ][1] : 0.0f;
        debugArray[index].z                = mask ? torque[indexJ][2] : 0.0f;
*/
        index                             += cAmoebaSim.paddedNumberOfAtoms;
        int pullIndex                      = 0;
        debugArray[index].x                = pullBack[pullIndex].x;
        debugArray[index].y                = pullBack[pullIndex].y;
        debugArray[index].z                = pullBack[pullIndex].z;
        debugArray[index].w                = pullBack[pullIndex].w;

        index                             += cAmoebaSim.paddedNumberOfAtoms;
        pullIndex++;
        debugArray[index].x                = pullBack[pullIndex].x;
        debugArray[index].y                = pullBack[pullIndex].y;
        debugArray[index].z                = pullBack[pullIndex].z;
        debugArray[index].w                = pullBack[pullIndex].w;

        index                             += cAmoebaSim.paddedNumberOfAtoms;
        pullIndex++;
        debugArray[index].x                = pullBack[pullIndex].x;
        debugArray[index].y                = pullBack[pullIndex].y;
        debugArray[index].z                = pullBack[pullIndex].z;
        debugArray[index].w                = pullBack[pullIndex].w;
       
        index                             += cAmoebaSim.paddedNumberOfAtoms;
        pullIndex++;
        debugArray[index].x                = pullBack[pullIndex].x;
        debugArray[index].y                = pullBack[pullIndex].y;
        debugArray[index].z                = pullBack[pullIndex].z;
        debugArray[index].w                = pullBack[pullIndex].w;
       
}
#endif
       
                           tj                  = (tj + 1) & (GRID - 1);
       
                       }
                   }
                   else  // bExclusion
                   {
                       // Read fixed atom data into registers and GRF
       
                       unsigned int xi   = x >> GRIDBITS;
                       unsigned int yi   = y >> GRIDBITS;
                       unsigned int cell = xi+yi*cAmoebaSim.paddedNumberOfAtoms/GRID-yi*(yi+1)/2;
                       int  dScaleMask   = cAmoebaSim.pD_ScaleIndices[cAmoebaSim.pScaleIndicesIndex[cell]+tgx];
                       int2 pScaleMask   = cAmoebaSim.pP_ScaleIndices[cAmoebaSim.pScaleIndicesIndex[cell]+tgx];
                       int2 mScaleMask   = cAmoebaSim.pM_ScaleIndices[cAmoebaSim.pScaleIndicesIndex[cell]+tgx];
       
                       for (unsigned int j = 0; j < GRID; j++)
                       {
       
                           float force[3];
                           float torque[2][3];
       
                           unsigned int atomJ = y + tj;
       
                           // set scale factors
       
                           getMaskedDScaleFactor( tj, dScaleMask, scalingFactors + DScaleIndex );
                           getMaskedPScaleFactor( tj, pScaleMask, scalingFactors + PScaleIndex );
                           getMaskedMScaleFactor( tj, mScaleMask, scalingFactors + MScaleIndex );
       
                           // force
       
                    float energy;
452
                    calculateElectrostaticPairIxn_kernel( localParticle,                              psA[tj],
Mark Friedrichs's avatar
Mark Friedrichs committed
453
454
455
456
457
458
459
460
461
462
463
464
465
                                                          cAmoebaSim.scalingDistanceCutoff,           scalingFactors,
                                                          force, torque, &energy
#ifdef AMOEBA_DEBUG
, pullBack
#endif
 );

                    // check if atoms out-of-bounds

                    unsigned int mask    =  ( (atomI >= cAmoebaSim.numberOfAtoms) || (atomJ >= cAmoebaSim.numberOfAtoms) ) ? 0 : 1;

                    // add force and torque to atom I due atom J

466
467
468
                    localParticle.force[0]         += mask ? force[0]      : 0.0f;
                    localParticle.force[1]         += mask ? force[1]      : 0.0f;
                    localParticle.force[2]         += mask ? force[2]      : 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
469

470
471
472
                    localParticle.torque[0]        += mask ? torque[0][0]  : 0.0f;
                    localParticle.torque[1]        += mask ? torque[0][1]  : 0.0f;
                    localParticle.torque[2]        += mask ? torque[0][2]  : 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
473
474
475
476
477
    
                    totalEnergy         += mask ? energy        : 0.0f;

                    // add force and torque to atom J due atom I

478
479
480
                    psA[tj].force[0]     -= mask ?  force[0]     : 0.0f;
                    psA[tj].force[1]     -= mask ?  force[1]     : 0.0f;
                    psA[tj].force[2]     -= mask ?  force[2]     : 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
481

482
483
484
                    psA[tj].torque[0]    += mask ?  torque[1][0] : 0.0f;
                    psA[tj].torque[1]    += mask ?  torque[1][1] : 0.0f;
                    psA[tj].torque[2]    += mask ?  torque[1][2] : 0.0f;
Mark Friedrichs's avatar
Mark Friedrichs committed
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
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
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595


#ifdef AMOEBA_DEBUG
if( atomI == targetAtom  || atomJ == targetAtom ){
         unsigned int index                 = (atomI == targetAtom) ? atomJ : atomI;
         unsigned int indexI                = (atomI == targetAtom) ? 0 : 1;
         unsigned int indexJ                = (atomI == targetAtom) ? 1 : 0;
         float forceSign                    = (atomI == targetAtom) ? 1.0f : -1.0f;

         debugArray[index].x                = (float) atomI;
         debugArray[index].y                = (float) atomJ;
         debugArray[index].z                = 3.0f;
         debugArray[index].w                = (float) y;
/*
         index                             += cAmoebaSim.paddedNumberOfAtoms;
         debugArray[index].x                = mask ? forceSign*force[0]     : 0.0f;
         debugArray[index].y                = mask ? forceSign*force[1]     : 0.0f;
         debugArray[index].z                = mask ? forceSign*force[2]     : 0.0f;


         index                             += cAmoebaSim.paddedNumberOfAtoms;
         debugArray[index].x                = mask ? torque[indexI][0] : 0.0f;
         debugArray[index].y                = mask ? torque[indexI][1] : 0.0f;
         debugArray[index].z                = mask ? torque[indexI][2] : 0.0f;

         index                             += cAmoebaSim.paddedNumberOfAtoms;
         debugArray[index].x                = mask ? torque[indexJ][0] : 0.0f;
         debugArray[index].y                = mask ? torque[indexJ][1] : 0.0f;
         debugArray[index].z                = mask ? torque[indexJ][2] : 0.0f;
*/
        index                             += cAmoebaSim.paddedNumberOfAtoms;
        int pullIndex                      = 0;
        debugArray[index].x                = pullBack[pullIndex].x;
        debugArray[index].y                = pullBack[pullIndex].y;
        debugArray[index].z                = pullBack[pullIndex].z;
        debugArray[index].w                = pullBack[pullIndex].w;

        index                             += cAmoebaSim.paddedNumberOfAtoms;
        pullIndex++;
        debugArray[index].x                = pullBack[pullIndex].x;
        debugArray[index].y                = pullBack[pullIndex].y;
        debugArray[index].z                = pullBack[pullIndex].z;
        debugArray[index].w                = pullBack[pullIndex].w;

        index                             += cAmoebaSim.paddedNumberOfAtoms;
        pullIndex++;
        debugArray[index].x                = pullBack[pullIndex].x;
        debugArray[index].y                = pullBack[pullIndex].y;
        debugArray[index].z                = pullBack[pullIndex].z;
        debugArray[index].w                = pullBack[pullIndex].w;
       
        index                             += cAmoebaSim.paddedNumberOfAtoms;
        pullIndex++;
        debugArray[index].x                = pullBack[pullIndex].x;
        debugArray[index].y                = pullBack[pullIndex].y;
        debugArray[index].z                = pullBack[pullIndex].z;
        debugArray[index].w                = pullBack[pullIndex].w;
       
#if 0
            index                             += cAmoebaSim.paddedNumberOfAtoms;
            debugArray[index].x                = scalingFactors[DScaleIndex];
            debugArray[index].y                = dScaleVal;
            debugArray[index].z                = scalingFactors[PScaleIndex];
            debugArray[index].w                = pScaleVal;

            index                             += cAmoebaSim.paddedNumberOfAtoms;
            debugArray[index].x                = scalingFactors[MScaleIndex];
            debugArray[index].y                = mScaleVal;
            for( int pIndex = 0; pIndex < 14; pIndex++ ){
                index                             += cAmoebaSim.paddedNumberOfAtoms;
                debugArray[index].x                = pullBack[pIndex].x;
                debugArray[index].y                = pullBack[pIndex].y;
                debugArray[index].z                = pullBack[pIndex].z;
                debugArray[index].w                = pullBack[pIndex].w;
            }

            index                             += cAmoebaSim.paddedNumberOfAtoms;
            debugArray[index].x                = labFrameDipole[3*atomI];
            debugArray[index].y                = labFrameDipole[3*atomI+1];
            debugArray[index].z                = labFrameDipole[3*atomI+2];
            debugArray[index].w                = 25.0f;

            index                             += cAmoebaSim.paddedNumberOfAtoms;
            debugArray[index].x                = labFrameDipole[3*atomJ];
            debugArray[index].y                = labFrameDipole[3*atomJ+1];
            debugArray[index].z                = labFrameDipole[3*atomJ+2];
            debugArray[index].w                = 26.0f;

            index                             += cAmoebaSim.paddedNumberOfAtoms;
            debugArray[index].x                = jDipole[0];
            debugArray[index].y                = jDipole[1];
            debugArray[index].z                = jDipole[2];
            debugArray[index].w                = 27.0f;
#endif


}
#endif


                    tj                  = (tj + 1) & (GRID - 1);
                }
            }

            // Write results

#ifdef USE_OUTPUT_BUFFER_PER_WARP

            float of;
            unsigned int offset                 = 3*(x + tgx + warp*cAmoebaSim.paddedNumberOfAtoms);
            of                                  = outputForce[offset];
596
            of                                 += localParticle.force[0];
Mark Friedrichs's avatar
Mark Friedrichs committed
597
598
599
            outputForce[offset]                 = of;

            of                                  = outputForce[offset+1];
600
            of                                 += localParticle.force[1];
Mark Friedrichs's avatar
Mark Friedrichs committed
601
602
603
            outputForce[offset+1]               = of;

            of                                  = outputForce[offset+2];
604
            of                                 += localParticle.force[2];
Mark Friedrichs's avatar
Mark Friedrichs committed
605
606
607
            outputForce[offset+2]               = of;

            of                                  = outputTorque[offset];
608
            of                                 += localParticle.torque[0];
Mark Friedrichs's avatar
Mark Friedrichs committed
609
610
611
            outputTorque[offset]                 = of;

            of                                  = outputTorque[offset+1];
612
            of                                 += localParticle.torque[1];
Mark Friedrichs's avatar
Mark Friedrichs committed
613
614
615
            outputTorque[offset+1]               = of;

            of                                  = outputTorque[offset+2];
616
            of                                 += localParticle.torque[2];
Mark Friedrichs's avatar
Mark Friedrichs committed
617
618
619
620
621
            outputTorque[offset+2]               = of;

            offset                              = 3*(y + tgx + warp*cAmoebaSim.paddedNumberOfAtoms);

            of                                  = outputForce[offset];
622
            of                                 += sA[threadIdx.x].force[0];
Mark Friedrichs's avatar
Mark Friedrichs committed
623
624
625
            outputForce[offset]                 = of;

            of                                  = outputForce[offset+1];
626
            of                                 += sA[threadIdx.x].force[1];
Mark Friedrichs's avatar
Mark Friedrichs committed
627
628
629
            outputForce[offset+1]               = of;

            of                                  = outputForce[offset+2];
630
            of                                 += sA[threadIdx.x].force[2];
Mark Friedrichs's avatar
Mark Friedrichs committed
631
632
633
            outputForce[offset+2]               = of;

            of                                  = outputTorque[offset];
634
            of                                 += sA[threadIdx.x].torque[0];
Mark Friedrichs's avatar
Mark Friedrichs committed
635
636
637
            outputTorque[offset]                = of;

            of                                  = outputTorque[offset+1];
638
            of                                 += sA[threadIdx.x].torque[1];
Mark Friedrichs's avatar
Mark Friedrichs committed
639
640
641
            outputTorque[offset+1]              = of;

            of                                  = outputTorque[offset+2];
642
            of                                 += sA[threadIdx.x].torque[2];
Mark Friedrichs's avatar
Mark Friedrichs committed
643
644
645
646
647
            outputTorque[offset+2]              = of;

#else
            unsigned int offset                 = 3*(x + tgx + (y >> GRIDBITS) * cAmoebaSim.paddedNumberOfAtoms);

648
649
650
            outputForce[offset]                 = localParticle.force[0];
            outputForce[offset+1]               = localParticle.force[1];
            outputForce[offset+2]               = localParticle.force[2];
Mark Friedrichs's avatar
Mark Friedrichs committed
651

652
653
654
            outputTorque[offset]                = localParticle.torque[0];
            outputTorque[offset+1]              = localParticle.torque[1];
            outputTorque[offset+2]              = localParticle.torque[2];
Mark Friedrichs's avatar
Mark Friedrichs committed
655
656
657

            offset                              = 3*(y + tgx + (x >> GRIDBITS) * cAmoebaSim.paddedNumberOfAtoms);

658
659
660
            outputForce[offset]                 = sA[threadIdx.x].force[0];
            outputForce[offset+1]               = sA[threadIdx.x].force[1];
            outputForce[offset+2]               = sA[threadIdx.x].force[2];
Mark Friedrichs's avatar
Mark Friedrichs committed
661

662
663
664
            outputTorque[offset]                = sA[threadIdx.x].torque[0];
            outputTorque[offset+1]              = sA[threadIdx.x].torque[1];
            outputTorque[offset+2]              = sA[threadIdx.x].torque[2];
Mark Friedrichs's avatar
Mark Friedrichs committed
665
666
667
668
669
670
671
672
673
674


#endif
            lasty = y;
        }

        pos++;
    }
    cSim.pEnergy[blockIdx.x * blockDim.x + threadIdx.x] += totalEnergy;
}