__kernelvoidapplyPositionDeltas(__globalfloat4*restrictposq,__globalfloat4*restrictposDelta){for(unsignedintindex=get_global_id(0); index < NUM_ATOMS; index += get_global_size(0)) {float4position=posq[index];position.xyz+=posDelta[index].xyz;posq[index]=position;}}