kCalculateAmoebaCudaWcaDispersion.h 12.1 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
/* -------------------------------------------------------------------------- *
 *                                   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/>.      *
 * -------------------------------------------------------------------------- */

__global__
#if (__CUDA_ARCH__ >= 200)
Peter Eastman's avatar
Peter Eastman committed
29
__launch_bounds__(384, 1)
Mark Friedrichs's avatar
Mark Friedrichs committed
30
#elif (__CUDA_ARCH__ >= 130)
Peter Eastman's avatar
Peter Eastman committed
31
__launch_bounds__(192, 1)
Mark Friedrichs's avatar
Mark Friedrichs committed
32
#else
Peter Eastman's avatar
Peter Eastman committed
33
__launch_bounds__(64, 1)
Mark Friedrichs's avatar
Mark Friedrichs committed
34
35
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
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
#endif
void METHOD_NAME(kCalculateAmoebaWcaDispersion, _kernel)(
                            unsigned int* workUnit,
                            float4* atomCoord,
                            float2*  wcaDispersionParameters,
                            float* outputForce
#ifdef AMOEBA_DEBUG
                           , float4* debugArray, unsigned int targetAtom
#endif
){

    extern __shared__ WcaDispersionParticle 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;

    float4 jCoord;
    float jRadius;
    float jEpsilon;
    float totalEnergy            = 0.0f;

#ifdef AMOEBA_DEBUG
    float4 pullDebug[3];
#endif
    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;

        WcaDispersionParticle*  psA      = &sA[tbx];
        unsigned int atomI               = x + tgx;
        float4 iCoord                    = atomCoord[atomI];
        float iRadius                    = wcaDispersionParameters[atomI].x;
        float iEpsilon                   = wcaDispersionParameters[atomI].y;

        float forceSum[3];

        float emixo,emixh;
        float rmixo,rmixh;

        float emjxo,emjxh;
        float rmjxo,rmjxh;

        calculateWcaDispersionInit_kernel( iRadius,   iEpsilon,
                                           &rmixo,    &rmixh,
                                           &emixo,    &emixh );

        forceSum[0]                      = 0.0f;
        forceSum[1]                      = 0.0f;
        forceSum[2]                      = 0.0f;

        // load coordinates, charge, ...

        if (lasty != y)
        {
            loadWcaDispersionShared( &(sA[threadIdx.x]), (y+tgx), atomCoord, wcaDispersionParameters );

        }

       // zero shared fields

        zeroWcaDispersionSharedForce( &(sA[threadIdx.x]) );

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

            float ijForce[3];

            // load coords, charge, ...

            loadWcaDispersionData( &(psA[tj]), &jCoord, &jRadius, &jEpsilon ); 

            // calculate force

            float energy;
            calculateWcaDispersionPairIxn_kernel( iCoord, jCoord,
                                                  iRadius,jRadius,
                                                  rmixo,  rmixh,
                                                  emixo,  emixh,
                                                  ijForce, &energy
#ifdef AMOEBA_DEBUG
,  pullDebug
#endif
   );

#ifdef AMOEBA_DEBUG
if( (atomI == targetAtom) || ( (y+tj) == targetAtom ) ){

unsigned int index                 = (atomI == targetAtom) ? (y + tj) : atomI;

debugArray[index].x                = (float) atomI;
debugArray[index].y                = (float) (y + tj); 
//debugArray[index].z                = (float) cAmoebaSim.numberOfAtoms;
debugArray[index].z                = atomI == (y+tj) ? 0.0f : energy;
energy                             = ( (atomI != (y+tj)) && (atomI < cAmoebaSim.numberOfAtoms) && ((y+tj) < cAmoebaSim.numberOfAtoms) )  ? (energy) : 0.0f;
debugArray[index].w                = energy+totalEnergy;

index                             += cAmoebaSim.paddedNumberOfAtoms;
debugArray[index].x                = iCoord.x;
debugArray[index].y                = iCoord.y;
debugArray[index].z                = iCoord.z;
debugArray[index].w                = (float) (blockIdx.x * blockDim.x + threadIdx.x);

index                             += cAmoebaSim.paddedNumberOfAtoms;
debugArray[index].x                = jCoord.x;
debugArray[index].y                = jCoord.y;
debugArray[index].z                = jCoord.z;
debugArray[index].w                = -4.0f;

index                             += cAmoebaSim.paddedNumberOfAtoms;
debugArray[index].x                = emixo;
debugArray[index].y                = emixh;
debugArray[index].z                = rmixo;
debugArray[index].w                = rmixh;

index                             += cAmoebaSim.paddedNumberOfAtoms;
debugArray[index].x                = pullDebug[0].x;
debugArray[index].y                = pullDebug[0].y;
debugArray[index].z                = pullDebug[0].z;
debugArray[index].w                = pullDebug[0].w;

#if 0
index                             += cAmoebaSim.paddedNumberOfAtoms;
debugArray[index].x                = pullDebug[1].x;
debugArray[index].y                = pullDebug[1].y;
debugArray[index].z                = pullDebug[1].z;
debugArray[index].w                = pullDebug[1].w;

index                             += cAmoebaSim.paddedNumberOfAtoms;
debugArray[index].x                = pullDebug[2].x;
debugArray[index].y                = pullDebug[2].y;
debugArray[index].z                = pullDebug[2].z;
debugArray[index].w                = pullDebug[2].w;
#endif

} else {
//    energy = 0.0f;
}
#endif
            if( (atomI != (y+tj)) && (atomI < cAmoebaSim.numberOfAtoms) && ((y+tj) < cAmoebaSim.numberOfAtoms) ){
       
                // add to field at atomI the field due atomJ's dipole

                forceSum[0]              += ijForce[0];
                forceSum[1]              += ijForce[1];
                forceSum[2]              += ijForce[2];
    
                // add to field at atomJ the field due atomI's dipole

                psA[tj].force[0]         -= ijForce[0];
                psA[tj].force[1]         -= ijForce[1];
                psA[tj].force[2]         -= ijForce[2];

                totalEnergy              += (x == y) ? 0.5f*energy : energy;
            }

            calculateWcaDispersionInit_kernel( jRadius,   jEpsilon,
                                               &rmjxo,    &rmjxh,
                                               &emjxo,    &emjxh );

            calculateWcaDispersionPairIxn_kernel( jCoord, iCoord,
                                                  jRadius,iRadius,
                                                  rmjxo,  rmjxh,
                                                  emjxo,  emjxh,
                                                  ijForce, &energy
#ifdef AMOEBA_DEBUG
,  pullDebug
#endif
   );

#ifdef AMOEBA_DEBUG
if( (atomI == targetAtom) || ( (y+tj) == targetAtom ) ){

unsigned int index                 = (atomI == targetAtom) ? (y + tj) : atomI;
index                             += 2*cAmoebaSim.paddedNumberOfAtoms;

debugArray[index].x                = (float) atomI;
debugArray[index].y                = (float) (y + tj); 
debugArray[index].z                = atomI == (y+tj) ? 0.0f : energy;
energy                             = ( (atomI != (y+tj)) && (atomI < cAmoebaSim.numberOfAtoms) && ((y+tj) < cAmoebaSim.numberOfAtoms) )  ? (energy) : 0.0f;
debugArray[index].w                = energy+totalEnergy;
//debugArray[index].w                = -2.0f;

index                             += cAmoebaSim.paddedNumberOfAtoms;
debugArray[index].x                = emjxo;
debugArray[index].y                = emjxh;
debugArray[index].z                = rmjxo;
debugArray[index].w                = rmjxh;

index                             += cAmoebaSim.paddedNumberOfAtoms;
debugArray[index].x                = pullDebug[0].x;
debugArray[index].y                = pullDebug[0].y;
debugArray[index].z                = pullDebug[0].z;
debugArray[index].w                = pullDebug[0].w;
#if 0
index                             += cAmoebaSim.paddedNumberOfAtoms;
debugArray[index].x                = pullDebug[1].x;
debugArray[index].y                = pullDebug[1].y;
debugArray[index].z                = pullDebug[1].z;
debugArray[index].w                = pullDebug[1].w;

index                             += cAmoebaSim.paddedNumberOfAtoms;
debugArray[index].x                = pullDebug[2].x;
debugArray[index].y                = pullDebug[2].y;
debugArray[index].z                = pullDebug[2].z;
debugArray[index].w                = pullDebug[2].w;
#endif

} else {
    //energy = 0.0f;
}
#endif
            if( (atomI != (y+tj)) && (atomI < cAmoebaSim.numberOfAtoms) && ((y+tj) < cAmoebaSim.numberOfAtoms) ){
       
                // add to field at atomI the field due atomJ's dipole

                forceSum[0]              -= ijForce[0];
                forceSum[1]              -= ijForce[1];
                forceSum[2]              -= ijForce[2];
    
                // add to field at atomJ the field due atomI's dipole

                psA[tj].force[0]         += ijForce[0];
                psA[tj].force[1]         += ijForce[1];
                psA[tj].force[2]         += ijForce[2];

                totalEnergy              += (x == y) ? 0.5f*energy : energy;
            }

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

        }

        // Write results

#ifdef USE_OUTPUT_BUFFER_PER_WARP
        unsigned int offset                 = 3*(x + tgx + warp*cAmoebaSim.paddedNumberOfAtoms);
        load3dArrayBufferPerWarp( offset, forceSum,       outputForce );

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

        load3dArrayBufferPerWarp( offset, sA[threadIdx.x].force,       outputForce );

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

        offset                              = 3*(y + tgx + (x >> GRIDBITS) * cAmoebaSim.paddedNumberOfAtoms);
        load3dArray( offset, sA[threadIdx.x].force,       outputForce );

#endif
        lasty = y;
        pos++;
    }
    cSim.pEnergy[blockIdx.x * blockDim.x + threadIdx.x] -= cAmoebaSim.awater*totalEnergy;
    if( (blockIdx.x*blockDim.x + threadIdx.x) == 0 ){
        cSim.pEnergy[0] += cAmoebaSim.totalMaxWcaDispersionEnergy;
    }
}