Commit 2ff0b0ae authored by peastman's avatar peastman
Browse files

Converted the array containing atom block indices for the neighbor list from...

Converted the array containing atom block indices for the neighbor list from ushort2 to int.  This removes the hard limit of 2 million atoms.
parent 7ae8e13a
...@@ -113,6 +113,6 @@ __kernel void contractForces(__global real4* force, __global real4* contracted) ...@@ -113,6 +113,6 @@ __kernel void contractForces(__global real4* force, __global real4* contracted)
// Store results. // Store results.
force[index] = FORCE_SCALE*freal[indexInBlock]; force[index] = convert_real4(FORCE_SCALE*freal[indexInBlock]);
} }
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment