"vscode:/vscode.git/clone" did not exist on "914bf967012ce05166d391e00b6b12c3d77c3f50"
customNonbondedComputedValues.cc 245 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
/**
 * Calculate per-particle computed values for a CustomNonbondedForce.
 */

KERNEL void computePerParticleValues(PARAMETER_ARGUMENTS) {
    for (int index = GLOBAL_ID; index < NUM_ATOMS; index += GLOBAL_SIZE) {
        COMPUTE_VALUES
    }
}