"platforms/reference/include/ReferenceDPDDynamics.h" did not exist on "1ece5c285ce4bf90ce84ffe2000c41f978d82c09"
Commit 29b1d430 authored by peastman's avatar peastman Committed by GitHub
Browse files

Merge pull request #1680 from peastman/disablepairlist

Disable fine-grained pair list
parents bbd06b16 b7d91a8e
......@@ -514,7 +514,8 @@ void CudaNonbondedUtilities::createKernelsForGroups(int groups) {
if (usePeriodic)
defines["USE_PERIODIC"] = "1";
defines["MAX_EXCLUSIONS"] = context.intToString(maxExclusions);
defines["MAX_BITS_FOR_PAIRS"] = (canUsePairList ? "2" : "0");
// Temporarily disable the pair list until we figure out why it's failing on some GPUs.
defines["MAX_BITS_FOR_PAIRS"] = "0";//(canUsePairList ? "2" : "0");
CUmodule interactingBlocksProgram = context.createModule(CudaKernelSources::vectorOps+CudaKernelSources::findInteractingBlocks, defines);
kernels.findBlockBoundsKernel = context.getKernel(interactingBlocksProgram, "findBlockBounds");
kernels.sortBoxDataKernel = context.getKernel(interactingBlocksProgram, "sortBoxData");
......
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