nonbondedParameters.cc 3.41 KB
Newer Older
1
2
3
/**
 * Compute the nonbonded parameters for particles and exceptions.
 */
4
5
6
KERNEL void computeParameters(GLOBAL mixed* RESTRICT energyBuffer, int includeSelfEnergy, GLOBAL real* RESTRICT globalParams,
        int numAtoms, GLOBAL const float4* RESTRICT baseParticleParams, GLOBAL real4* RESTRICT posq, GLOBAL real* RESTRICT charge,
        GLOBAL float2* RESTRICT sigmaEpsilon, GLOBAL float4* RESTRICT particleParamOffsets, GLOBAL int* RESTRICT particleOffsetIndices
7
#ifdef HAS_EXCEPTIONS
8
9
        , int numExceptions, GLOBAL const float4* RESTRICT baseExceptionParams, GLOBAL float4* RESTRICT exceptionParams,
        GLOBAL float4* RESTRICT exceptionParamOffsets, GLOBAL int* RESTRICT exceptionOffsetIndices
10
11
12
13
14
15
#endif
        ) {
    mixed energy = 0;

    // Compute particle parameters.
    
16
    for (int i = GLOBAL_ID; i < numAtoms; i += GLOBAL_SIZE) {
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
        float4 params = baseParticleParams[i];
#ifdef HAS_OFFSETS
        int start = particleOffsetIndices[i], end = particleOffsetIndices[i+1];
        for (int j = start; j < end; j++) {
            float4 offset = particleParamOffsets[j];
            real value = globalParams[(int) offset.w];
            params.x += value*offset.x;
            params.y += value*offset.y;
            params.z += value*offset.z;
        }
#endif
#ifdef USE_POSQ_CHARGES
        posq[i].w = params.x;
#else
        charge[i] = params.x;
#endif
        sigmaEpsilon[i] = make_float2(0.5f*params.y, 2*SQRT(params.z));
34
35
#ifdef HAS_OFFSETS
    #ifdef INCLUDE_EWALD
36
        energy -= EWALD_SELF_ENERGY_SCALE*params.x*params.x;
37
38
    #endif
    #ifdef INCLUDE_LJPME
39
40
        real sig3 = params.y*params.y*params.y;
        energy += LJPME_SELF_ENERGY_SCALE*sig3*sig3*params.z;
41
    #endif
42
43
44
45
46
47
#endif
    }

    // Compute exception parameters.
    
#ifdef HAS_EXCEPTIONS
48
    for (int i = GLOBAL_ID; i < numExceptions; i += GLOBAL_SIZE) {
49
50
51
52
53
54
55
56
57
58
59
        float4 params = baseExceptionParams[i];
#ifdef HAS_OFFSETS
        int start = exceptionOffsetIndices[i], end = exceptionOffsetIndices[i+1];
        for (int j = start; j < end; j++) {
            float4 offset = exceptionParamOffsets[j];
            real value = globalParams[(int) offset.w];
            params.x += value*offset.x;
            params.y += value*offset.y;
            params.z += value*offset.z;
        }
#endif
60
        exceptionParams[i] = make_float4((float) (ONE_4PI_EPS0*params.x), (float) params.y, (float) (4*params.z), 0);
61
62
    }
#endif
Peter Eastman's avatar
Peter Eastman committed
63
    if (includeSelfEnergy)
64
        energyBuffer[GLOBAL_ID] += energy;
Peter Eastman's avatar
Peter Eastman committed
65
}
66

Peter Eastman's avatar
Peter Eastman committed
67
68
69
/**
 * Compute parameters for subtracting the reciprocal part of excluded interactions.
 */
70
71
72
KERNEL void computeExclusionParameters(GLOBAL real4* RESTRICT posq, GLOBAL real* RESTRICT charge, GLOBAL float2* RESTRICT sigmaEpsilon,
        int numExclusions, GLOBAL const int2* RESTRICT exclusionAtoms, GLOBAL float4* RESTRICT exclusionParams) {
    for (int i = GLOBAL_ID; i < numExclusions; i += GLOBAL_SIZE) {
73
74
75
76
77
78
        int2 atoms = exclusionAtoms[i];
#ifdef USE_POSQ_CHARGES
        real chargeProd = posq[atoms.x].w*posq[atoms.y].w;
#else
        real chargeProd = charge[atoms.x]*charge[atoms.y];
#endif
79
#ifdef INCLUDE_LJPME_EXCEPTIONS
80
81
82
83
84
85
86
87
        float2 sigEps1 = sigmaEpsilon[atoms.x];
        float2 sigEps2 = sigmaEpsilon[atoms.y];
        float sigma = sigEps1.x*sigEps2.x;
        float epsilon = sigEps1.y*sigEps2.y;
#else
        float sigma = 0;
        float epsilon = 0;
#endif
88
        exclusionParams[i] = make_float4((float) (ONE_4PI_EPS0*chargeProd), sigma, epsilon, 0);
89
    }
Peter Eastman's avatar
Peter Eastman committed
90
}