"server/Makefile-flash-att-v2" did not exist on "4d38a1c4ad9e262617a3f36e1d01e8c57693b6ef"
constraints.cl 326 Bytes
Newer Older
1
2
3
4
5
6
7
__kernel void applyPositionDeltas(__global float4* restrict posq, __global float4* restrict posDelta) {
    for (unsigned int index = get_global_id(0); index < NUM_ATOMS; index += get_global_size(0)) {
        float4 position = posq[index];
        position.xyz += posDelta[index].xyz;
        posq[index] = position;
    }
}