Commit aeb5dc66 authored by Peter Eastman's avatar Peter Eastman
Browse files

Bug fix on ATI processors

parent b97ff259
...@@ -271,6 +271,7 @@ void OpenCLNonbondedUtilities::prepareInteractions() { ...@@ -271,6 +271,7 @@ void OpenCLNonbondedUtilities::prepareInteractions() {
context.executeKernel(findBlockBoundsKernel, context.getNumAtoms()); context.executeKernel(findBlockBoundsKernel, context.getNumAtoms());
context.executeKernel(findInteractingBlocksKernel, context.getNumAtoms()); context.executeKernel(findInteractingBlocksKernel, context.getNumAtoms());
compact->compactStream(*interactingTiles, *tiles, *interactionFlags, *interactionCount); compact->compactStream(*interactingTiles, *tiles, *interactionFlags, *interactionCount);
if (context.getSIMDWidth() == 32)
context.executeKernel(findInteractionsWithinBlocksKernel, context.getNumAtoms()); context.executeKernel(findInteractionsWithinBlocksKernel, context.getNumAtoms());
} }
......
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