/* -------------------------------------------------------------------------- * * OpenMM * * -------------------------------------------------------------------------- * * This is part of the OpenMM molecular simulation toolkit originating from * * Simbios, the NIH National Center for Physics-Based Simulation of * * Biological Structures at Stanford, funded under the NIH Roadmap for * * Medical Research, grant U54 GM072970. See https://simtk.org. * * * * Portions copyright (c) 2009-2018 Stanford University and the Authors. * * Authors: Peter Eastman * * Contributors: * * * * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU Lesser General Public License as published * * by the Free Software Foundation, either version 3 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public License * * along with this program. If not, see . * * -------------------------------------------------------------------------- */ #include "openmm/OpenMMException.h" #include "OpenCLNonbondedUtilities.h" #include "OpenCLArray.h" #include "OpenCLKernelSources.h" #include "OpenCLExpressionUtilities.h" #include "OpenCLSort.h" #include #include #include #include using namespace OpenMM; using namespace std; class OpenCLNonbondedUtilities::BlockSortTrait : public OpenCLSort::SortTrait { public: BlockSortTrait(bool useDouble) : useDouble(useDouble) { } int getDataSize() const {return useDouble ? sizeof(mm_double2) : sizeof(mm_float2);} int getKeySize() const {return useDouble ? sizeof(cl_double) : sizeof(cl_float);} const char* getDataType() const {return "real2";} const char* getKeyType() const {return "real";} const char* getMinKey() const {return "-MAXFLOAT";} const char* getMaxKey() const {return "MAXFLOAT";} const char* getMaxValue() const {return "(real2) (MAXFLOAT, MAXFLOAT)";} const char* getSortKey() const {return "value.x";} private: bool useDouble; }; OpenCLNonbondedUtilities::OpenCLNonbondedUtilities(OpenCLContext& context) : context(context), useCutoff(false), usePeriodic(false), anyExclusions(false), usePadding(true), numForceBuffers(0), blockSorter(NULL), pinnedCountBuffer(NULL), pinnedCountMemory(NULL), forceRebuildNeighborList(true), lastCutoff(0.0), groupFlags(0) { // Decide how many thread blocks and force buffers to use. deviceIsCpu = (context.getDevice().getInfo() == CL_DEVICE_TYPE_CPU); if (deviceIsCpu) { numForceThreadBlocks = context.getNumThreadBlocks(); forceThreadBlockSize = 1; numForceBuffers = numForceThreadBlocks; } else if (context.getSIMDWidth() == 32) { if (context.getSupports64BitGlobalAtomics()) { numForceThreadBlocks = 4*context.getDevice().getInfo(); forceThreadBlockSize = 256; // Even though using longForceBuffer, still need a single forceBuffer for the reduceForces kernel to convert the long results into float4 which will be used by later kernels. numForceBuffers = 1; } else { numForceThreadBlocks = 3*context.getDevice().getInfo(); forceThreadBlockSize = 256; numForceBuffers = numForceThreadBlocks*forceThreadBlockSize/OpenCLContext::TileSize; } } else { numForceThreadBlocks = context.getNumThreadBlocks(); forceThreadBlockSize = (context.getSIMDWidth() >= 32 ? OpenCLContext::ThreadBlockSize : 32); if (context.getSupports64BitGlobalAtomics()) { // Even though using longForceBuffer, still need a single forceBuffer for the reduceForces kernel to convert the long results into float4 which will be used by later kernels. numForceBuffers = 1; } else { numForceBuffers = numForceThreadBlocks*forceThreadBlockSize/OpenCLContext::TileSize; } } pinnedCountBuffer = new cl::Buffer(context.getContext(), CL_MEM_ALLOC_HOST_PTR, sizeof(int)); pinnedCountMemory = (int*) context.getQueue().enqueueMapBuffer(*pinnedCountBuffer, CL_TRUE, CL_MAP_READ, 0, sizeof(int)); } OpenCLNonbondedUtilities::~OpenCLNonbondedUtilities() { if (blockSorter != NULL) delete blockSorter; if (pinnedCountBuffer != NULL) delete pinnedCountBuffer; } void OpenCLNonbondedUtilities::addInteraction(bool usesCutoff, bool usesPeriodic, bool usesExclusions, double cutoffDistance, const vector >& exclusionList, const string& kernel, int forceGroup) { if (groupCutoff.size() > 0) { if (usesCutoff != useCutoff) throw OpenMMException("All Forces must agree on whether to use a cutoff"); if (usesPeriodic != usePeriodic) throw OpenMMException("All Forces must agree on whether to use periodic boundary conditions"); if (usesCutoff && groupCutoff.find(forceGroup) != groupCutoff.end() && groupCutoff[forceGroup] != cutoffDistance) throw OpenMMException("All Forces in a single force group must use the same cutoff distance"); } if (usesExclusions) requestExclusions(exclusionList); useCutoff = usesCutoff; usePeriodic = usesPeriodic; groupCutoff[forceGroup] = cutoffDistance; groupFlags |= 1< 0) { if (groupKernelSource.find(forceGroup) == groupKernelSource.end()) groupKernelSource[forceGroup] = ""; map replacements; replacements["CUTOFF"] = "CUTOFF_"+context.intToString(forceGroup); replacements["CUTOFF_SQUARED"] = "CUTOFF_"+context.intToString(forceGroup)+"_SQUARED"; groupKernelSource[forceGroup] += context.replaceStrings(kernel, replacements)+"\n"; } } void OpenCLNonbondedUtilities::addParameter(const ParameterInfo& parameter) { parameters.push_back(parameter); } void OpenCLNonbondedUtilities::addArgument(const ParameterInfo& parameter) { arguments.push_back(parameter); } string OpenCLNonbondedUtilities::addEnergyParameterDerivative(const string& param) { // See if the parameter has already been added. int index; for (index = 0; index < energyParameterDerivatives.size(); index++) if (param == energyParameterDerivatives[index]) break; if (index == energyParameterDerivatives.size()) energyParameterDerivatives.push_back(param); context.addEnergyParameterDerivative(param); return string("energyParamDeriv")+context.intToString(index); } void OpenCLNonbondedUtilities::requestExclusions(const vector >& exclusionList) { if (anyExclusions) { bool sameExclusions = (exclusionList.size() == atomExclusions.size()); for (int i = 0; i < (int) exclusionList.size() && sameExclusions; i++) { if (exclusionList[i].size() != atomExclusions[i].size()) sameExclusions = false; set expectedExclusions; expectedExclusions.insert(atomExclusions[i].begin(), atomExclusions[i].end()); for (int j = 0; j < (int) exclusionList[i].size(); j++) if (expectedExclusions.find(exclusionList[i][j]) == expectedExclusions.end()) sameExclusions = false; } if (!sameExclusions) throw OpenMMException("All Forces must have identical exceptions"); } else { atomExclusions = exclusionList; anyExclusions = true; } } static bool compareUshort2(mm_ushort2 a, mm_ushort2 b) { // This version is used on devices with SIMD width of 32 or less. It sorts tiles to improve cache efficiency. return ((a.y < b.y) || (a.y == b.y && a.x < b.x)); } static bool compareUshort2LargeSIMD(mm_ushort2 a, mm_ushort2 b) { // This version is used on devices with SIMD width greater than 32. It puts diagonal tiles before off-diagonal // ones to reduce thread divergence. if (a.x == a.y) { if (b.x == b.y) return (a.x < b.x); return true; } if (b.x == b.y) return false; return ((a.y < b.y) || (a.y == b.y && a.x < b.x)); } void OpenCLNonbondedUtilities::initialize(const System& system) { if (atomExclusions.size() == 0) { // No exclusions were specifically requested, so just mark every atom as not interacting with itself. atomExclusions.resize(context.getNumAtoms()); for (int i = 0; i < (int) atomExclusions.size(); i++) atomExclusions[i].push_back(i); } // Create the list of tiles. int numAtomBlocks = context.getNumAtomBlocks(); int numContexts = context.getPlatformData().contexts.size(); setAtomBlockRange(context.getContextIndex()/(double) numContexts, (context.getContextIndex()+1)/(double) numContexts); // Build a list of tiles that contain exclusions. set > tilesWithExclusions; for (int atom1 = 0; atom1 < (int) atomExclusions.size(); ++atom1) { int x = atom1/OpenCLContext::TileSize; for (int j = 0; j < (int) atomExclusions[atom1].size(); ++j) { int atom2 = atomExclusions[atom1][j]; int y = atom2/OpenCLContext::TileSize; tilesWithExclusions.insert(make_pair(max(x, y), min(x, y))); } } vector exclusionTilesVec; for (set >::const_iterator iter = tilesWithExclusions.begin(); iter != tilesWithExclusions.end(); ++iter) exclusionTilesVec.push_back(mm_ushort2((unsigned short) iter->first, (unsigned short) iter->second)); sort(exclusionTilesVec.begin(), exclusionTilesVec.end(), context.getSIMDWidth() <= 32 ? compareUshort2 : compareUshort2LargeSIMD); exclusionTiles.initialize(context, exclusionTilesVec.size(), "exclusionTiles"); exclusionTiles.upload(exclusionTilesVec); map, int> exclusionTileMap; for (int i = 0; i < (int) exclusionTilesVec.size(); i++) { mm_ushort2 tile = exclusionTilesVec[i]; exclusionTileMap[make_pair(tile.x, tile.y)] = i; } vector > exclusionBlocksForBlock(numAtomBlocks); for (set >::const_iterator iter = tilesWithExclusions.begin(); iter != tilesWithExclusions.end(); ++iter) { exclusionBlocksForBlock[iter->first].push_back(iter->second); if (iter->first != iter->second) exclusionBlocksForBlock[iter->second].push_back(iter->first); } vector exclusionRowIndicesVec(numAtomBlocks+1, 0); vector exclusionIndicesVec; for (int i = 0; i < numAtomBlocks; i++) { exclusionIndicesVec.insert(exclusionIndicesVec.end(), exclusionBlocksForBlock[i].begin(), exclusionBlocksForBlock[i].end()); exclusionRowIndicesVec[i+1] = exclusionIndicesVec.size(); } maxExclusions = 0; for (int i = 0; i < (int) exclusionBlocksForBlock.size(); i++) maxExclusions = (maxExclusions > exclusionBlocksForBlock[i].size() ? maxExclusions : exclusionBlocksForBlock[i].size()); exclusionIndices.initialize(context, exclusionIndicesVec.size(), "exclusionIndices"); exclusionRowIndices.initialize(context, exclusionRowIndicesVec.size(), "exclusionRowIndices"); exclusionIndices.upload(exclusionIndicesVec); exclusionRowIndices.upload(exclusionRowIndicesVec); // Record the exclusion data. exclusions.initialize(context, tilesWithExclusions.size()*OpenCLContext::TileSize, "exclusions"); cl_uint allFlags = (cl_uint) -1; vector exclusionVec(exclusions.getSize(), allFlags); for (int i = 0; i < exclusions.getSize(); ++i) exclusionVec[i] = 0xFFFFFFFF; for (int atom1 = 0; atom1 < (int) atomExclusions.size(); ++atom1) { int x = atom1/OpenCLContext::TileSize; int offset1 = atom1-x*OpenCLContext::TileSize; for (int j = 0; j < (int) atomExclusions[atom1].size(); ++j) { int atom2 = atomExclusions[atom1][j]; int y = atom2/OpenCLContext::TileSize; int offset2 = atom2-y*OpenCLContext::TileSize; if (x > y) { int index = exclusionTileMap[make_pair(x, y)]*OpenCLContext::TileSize; exclusionVec[index+offset1] &= allFlags-(1< numTiles) maxTiles = numTiles; if (maxTiles < 1) maxTiles = 1; int numAtoms = context.getNumAtoms(); interactingTiles.initialize(context, maxTiles, "interactingTiles"); interactingAtoms.initialize(context, OpenCLContext::TileSize*maxTiles, "interactingAtoms"); interactionCount.initialize(context, 1, "interactionCount"); int elementSize = (context.getUseDoublePrecision() ? sizeof(cl_double) : sizeof(cl_float)); blockCenter.initialize(context, numAtomBlocks, 4*elementSize, "blockCenter"); blockBoundingBox.initialize(context, numAtomBlocks, 4*elementSize, "blockBoundingBox"); sortedBlocks.initialize(context, numAtomBlocks, 2*elementSize, "sortedBlocks"); sortedBlockCenter.initialize(context, numAtomBlocks+1, 4*elementSize, "sortedBlockCenter"); sortedBlockBoundingBox.initialize(context, numAtomBlocks+1, 4*elementSize, "sortedBlockBoundingBox"); oldPositions.initialize(context, numAtoms, 4*elementSize, "oldPositions"); rebuildNeighborList.initialize(context, 1, "rebuildNeighborList"); blockSorter = new OpenCLSort(context, new BlockSortTrait(context.getUseDoublePrecision()), numAtomBlocks); vector count(1, 0); interactionCount.upload(count); rebuildNeighborList.upload(count); } } static void setPeriodicBoxArgs(OpenCLContext& cl, cl::Kernel& kernel, int index) { if (cl.getUseDoublePrecision()) { kernel.setArg(index++, cl.getPeriodicBoxSizeDouble()); kernel.setArg(index++, cl.getInvPeriodicBoxSizeDouble()); kernel.setArg(index++, cl.getPeriodicBoxVecXDouble()); kernel.setArg(index++, cl.getPeriodicBoxVecYDouble()); kernel.setArg(index, cl.getPeriodicBoxVecZDouble()); } else { kernel.setArg(index++, cl.getPeriodicBoxSize()); kernel.setArg(index++, cl.getInvPeriodicBoxSize()); kernel.setArg(index++, cl.getPeriodicBoxVecX()); kernel.setArg(index++, cl.getPeriodicBoxVecY()); kernel.setArg(index, cl.getPeriodicBoxVecZ()); } } double OpenCLNonbondedUtilities::getMaxCutoffDistance() { double cutoff = 0.0; for (map::const_iterator iter = groupCutoff.begin(); iter != groupCutoff.end(); ++iter) cutoff = max(cutoff, iter->second); return cutoff; } double OpenCLNonbondedUtilities::padCutoff(double cutoff) { double padding = (usePadding ? 0.1*cutoff : 0.0); return cutoff+padding; } void OpenCLNonbondedUtilities::prepareInteractions(int forceGroups) { if ((forceGroups&groupFlags) == 0) return; if (groupKernels.find(forceGroups) == groupKernels.end()) createKernelsForGroups(forceGroups); if (!useCutoff) return; if (numTiles == 0) return; KernelSet& kernels = groupKernels[forceGroups]; if (usePeriodic) { mm_float4 box = context.getPeriodicBoxSize(); double minAllowedSize = 1.999999*kernels.cutoffDistance; if (box.x < minAllowedSize || box.y < minAllowedSize || box.z < minAllowedSize) throw OpenMMException("The periodic box size has decreased to less than twice the nonbonded cutoff."); } // Compute the neighbor list. if (lastCutoff != kernels.cutoffDistance) forceRebuildNeighborList = true; setPeriodicBoxArgs(context, kernels.findBlockBoundsKernel, 1); context.executeKernel(kernels.findBlockBoundsKernel, context.getNumAtoms()); blockSorter->sort(sortedBlocks); kernels.sortBoxDataKernel.setArg(9, forceRebuildNeighborList); context.executeKernel(kernels.sortBoxDataKernel, context.getNumAtoms()); setPeriodicBoxArgs(context, kernels.findInteractingBlocksKernel, 0); context.executeKernel(kernels.findInteractingBlocksKernel, context.getNumAtoms(), interactingBlocksThreadBlockSize); forceRebuildNeighborList = false; lastCutoff = kernels.cutoffDistance; context.getQueue().enqueueReadBuffer(interactionCount.getDeviceBuffer(), CL_FALSE, 0, sizeof(int), pinnedCountMemory, NULL, &downloadCountEvent); } void OpenCLNonbondedUtilities::computeInteractions(int forceGroups, bool includeForces, bool includeEnergy) { if ((forceGroups&groupFlags) == 0) return; KernelSet& kernels = groupKernels[forceGroups]; if (kernels.hasForces) { cl::Kernel& kernel = (includeForces ? (includeEnergy ? kernels.forceEnergyKernel : kernels.forceKernel) : kernels.energyKernel); if (*reinterpret_cast(&kernel) == NULL) kernel = createInteractionKernel(kernels.source, parameters, arguments, true, true, forceGroups, includeForces, includeEnergy); if (useCutoff) setPeriodicBoxArgs(context, kernel, 9); context.executeKernel(kernel, numForceThreadBlocks*forceThreadBlockSize, forceThreadBlockSize); } if (useCutoff && numTiles > 0) { downloadCountEvent.wait(); updateNeighborListSize(); } } bool OpenCLNonbondedUtilities::updateNeighborListSize() { if (!useCutoff) return false; if (pinnedCountMemory[0] <= (unsigned int) interactingTiles.getSize()) return false; // The most recent timestep had too many interactions to fit in the arrays. Make the arrays bigger to prevent // this from happening in the future. int maxTiles = (int) (1.2*pinnedCountMemory[0]); int totalTiles = context.getNumAtomBlocks()*(context.getNumAtomBlocks()+1)/2; if (maxTiles > totalTiles) maxTiles = totalTiles; interactingTiles.resize(maxTiles); interactingAtoms.resize(OpenCLContext::TileSize*maxTiles); for (map::iterator iter = groupKernels.begin(); iter != groupKernels.end(); ++iter) { KernelSet& kernels = iter->second; if (*reinterpret_cast(&kernels.forceKernel) != NULL) { kernels.forceKernel.setArg(7, interactingTiles.getDeviceBuffer()); kernels.forceKernel.setArg(14, maxTiles); kernels.forceKernel.setArg(17, interactingAtoms.getDeviceBuffer()); } if (*reinterpret_cast(&kernels.energyKernel) != NULL) { kernels.energyKernel.setArg(7, interactingTiles.getDeviceBuffer()); kernels.energyKernel.setArg(14, maxTiles); kernels.energyKernel.setArg(17, interactingAtoms.getDeviceBuffer()); } if (*reinterpret_cast(&kernels.forceEnergyKernel) != NULL) { kernels.forceEnergyKernel.setArg(7, interactingTiles.getDeviceBuffer()); kernels.forceEnergyKernel.setArg(14, maxTiles); kernels.forceEnergyKernel.setArg(17, interactingAtoms.getDeviceBuffer()); } kernels.findInteractingBlocksKernel.setArg(6, interactingTiles.getDeviceBuffer()); kernels.findInteractingBlocksKernel.setArg(7, interactingAtoms.getDeviceBuffer()); kernels.findInteractingBlocksKernel.setArg(9, maxTiles); } forceRebuildNeighborList = true; context.setForcesValid(false); return true; } void OpenCLNonbondedUtilities::setUsePadding(bool padding) { usePadding = padding; } void OpenCLNonbondedUtilities::setAtomBlockRange(double startFraction, double endFraction) { int numAtomBlocks = context.getNumAtomBlocks(); startBlockIndex = (int) (startFraction*numAtomBlocks); numBlocks = (int) (endFraction*numAtomBlocks)-startBlockIndex; int totalTiles = context.getNumAtomBlocks()*(context.getNumAtomBlocks()+1)/2; startTileIndex = (int) (startFraction*totalTiles);; numTiles = (int) (endFraction*totalTiles)-startTileIndex; if (useCutoff) { // We are using a cutoff, and the kernels have already been created. for (map::iterator iter = groupKernels.begin(); iter != groupKernels.end(); ++iter) { KernelSet& kernels = iter->second; if (*reinterpret_cast(&kernels.forceKernel) != NULL) { kernels.forceKernel.setArg(5, startTileIndex); kernels.forceKernel.setArg(6, numTiles); } if (*reinterpret_cast(&kernels.energyKernel) != NULL) { kernels.energyKernel.setArg(5, startTileIndex); kernels.energyKernel.setArg(6, numTiles); } if (*reinterpret_cast(&kernels.forceEnergyKernel) != NULL) { kernels.forceEnergyKernel.setArg(5, startTileIndex); kernels.forceEnergyKernel.setArg(6, numTiles); } kernels.findInteractingBlocksKernel.setArg(10, startBlockIndex); kernels.findInteractingBlocksKernel.setArg(11, numBlocks); } forceRebuildNeighborList = true; } } void OpenCLNonbondedUtilities::createKernelsForGroups(int groups) { KernelSet kernels; double cutoff = 0.0; string source; for (int i = 0; i < 32; i++) { if ((groups&(1< 0); kernels.cutoffDistance = cutoff; kernels.source = source; if (useCutoff) { double paddedCutoff = padCutoff(cutoff); map defines; defines["TILE_SIZE"] = context.intToString(OpenCLContext::TileSize); defines["NUM_ATOMS"] = context.intToString(context.getNumAtoms()); defines["PADDING"] = context.doubleToString(paddedCutoff-cutoff); defines["PADDED_CUTOFF"] = context.doubleToString(paddedCutoff); defines["PADDED_CUTOFF_SQUARED"] = context.doubleToString(paddedCutoff*paddedCutoff); defines["NUM_TILES_WITH_EXCLUSIONS"] = context.intToString(exclusionTiles.getSize()); defines["NUM_BLOCKS"] = context.intToString(context.getNumAtomBlocks()); defines["SIMD_WIDTH"] = context.intToString(context.getSIMDWidth()); if (usePeriodic) defines["USE_PERIODIC"] = "1"; if (context.getBoxIsTriclinic()) defines["TRICLINIC"] = "1"; defines["MAX_EXCLUSIONS"] = context.intToString(maxExclusions); defines["BUFFER_GROUPS"] = (deviceIsCpu ? "4" : "2"); string file = (deviceIsCpu ? OpenCLKernelSources::findInteractingBlocks_cpu : OpenCLKernelSources::findInteractingBlocks); int groupSize = (deviceIsCpu || context.getSIMDWidth() < 32 ? 32 : 256); while (true) { defines["GROUP_SIZE"] = context.intToString(groupSize); cl::Program interactingBlocksProgram = context.createProgram(file, defines); kernels.findBlockBoundsKernel = cl::Kernel(interactingBlocksProgram, "findBlockBounds"); kernels.findBlockBoundsKernel.setArg(0, context.getNumAtoms()); kernels.findBlockBoundsKernel.setArg(6, context.getPosq().getDeviceBuffer()); kernels.findBlockBoundsKernel.setArg(7, blockCenter.getDeviceBuffer()); kernels.findBlockBoundsKernel.setArg(8, blockBoundingBox.getDeviceBuffer()); kernels.findBlockBoundsKernel.setArg(9, rebuildNeighborList.getDeviceBuffer()); kernels.findBlockBoundsKernel.setArg(10, sortedBlocks.getDeviceBuffer()); kernels.sortBoxDataKernel = cl::Kernel(interactingBlocksProgram, "sortBoxData"); kernels.sortBoxDataKernel.setArg(0, sortedBlocks.getDeviceBuffer()); kernels.sortBoxDataKernel.setArg(1, blockCenter.getDeviceBuffer()); kernels.sortBoxDataKernel.setArg(2, blockBoundingBox.getDeviceBuffer()); kernels.sortBoxDataKernel.setArg(3, sortedBlockCenter.getDeviceBuffer()); kernels.sortBoxDataKernel.setArg(4, sortedBlockBoundingBox.getDeviceBuffer()); kernels.sortBoxDataKernel.setArg(5, context.getPosq().getDeviceBuffer()); kernels.sortBoxDataKernel.setArg(6, oldPositions.getDeviceBuffer()); kernels.sortBoxDataKernel.setArg(7, interactionCount.getDeviceBuffer()); kernels.sortBoxDataKernel.setArg(8, rebuildNeighborList.getDeviceBuffer()); kernels.sortBoxDataKernel.setArg(9, true); kernels.findInteractingBlocksKernel = cl::Kernel(interactingBlocksProgram, "findBlocksWithInteractions"); kernels.findInteractingBlocksKernel.setArg(5, interactionCount.getDeviceBuffer()); kernels.findInteractingBlocksKernel.setArg(6, interactingTiles.getDeviceBuffer()); kernels.findInteractingBlocksKernel.setArg(7, interactingAtoms.getDeviceBuffer()); kernels.findInteractingBlocksKernel.setArg(8, context.getPosq().getDeviceBuffer()); kernels.findInteractingBlocksKernel.setArg(9, interactingTiles.getSize()); kernels.findInteractingBlocksKernel.setArg(10, startBlockIndex); kernels.findInteractingBlocksKernel.setArg(11, numBlocks); kernels.findInteractingBlocksKernel.setArg(12, sortedBlocks.getDeviceBuffer()); kernels.findInteractingBlocksKernel.setArg(13, sortedBlockCenter.getDeviceBuffer()); kernels.findInteractingBlocksKernel.setArg(14, sortedBlockBoundingBox.getDeviceBuffer()); kernels.findInteractingBlocksKernel.setArg(15, exclusionIndices.getDeviceBuffer()); kernels.findInteractingBlocksKernel.setArg(16, exclusionRowIndices.getDeviceBuffer()); kernels.findInteractingBlocksKernel.setArg(17, oldPositions.getDeviceBuffer()); kernels.findInteractingBlocksKernel.setArg(18, rebuildNeighborList.getDeviceBuffer()); if (kernels.findInteractingBlocksKernel.getWorkGroupInfo(context.getDevice()) < groupSize) { // The device can't handle this block size, so reduce it. groupSize -= 32; if (groupSize < 32) throw OpenMMException("Failed to create findInteractingBlocks kernel"); continue; } break; } interactingBlocksThreadBlockSize = (deviceIsCpu ? 1 : groupSize); } groupKernels[groups] = kernels; } cl::Kernel OpenCLNonbondedUtilities::createInteractionKernel(const string& source, const vector& params, const vector& arguments, bool useExclusions, bool isSymmetric, int groups, bool includeForces, bool includeEnergy) { map replacements; replacements["COMPUTE_INTERACTION"] = source; const string suffixes[] = {"x", "y", "z", "w"}; stringstream localData; int localDataSize = 0; for (int i = 0; i < (int) params.size(); i++) { if (params[i].getNumComponents() == 1) localData<() == CL_MEM_OBJECT_IMAGE2D) { args << ", __read_only image2d_t "; args << arguments[i].getName(); } else { if ((arguments[i].getMemory().getInfo() & CL_MEM_READ_ONLY) == 0) args << ", __global const "; else args << ", __constant "; args << arguments[i].getType(); args << "* restrict "; args << arguments[i].getName(); } } if (energyParameterDerivatives.size() > 0) args << ", __global mixed* restrict energyParamDerivs"; replacements["PARAMETER_ARGUMENTS"] = args.str(); stringstream loadLocal1; for (int i = 0; i < (int) params.size(); i++) { if (params[i].getNumComponents() == 1) { loadLocal1<<"localData[localAtomIndex]."< 0) load2j<<", "; load2j<<"localData[atom2]."<& allParamDerivNames = context.getEnergyParamDerivNames(); int numDerivs = allParamDerivNames.size(); for (int i = 0; i < energyParameterDerivatives.size(); i++) for (int index = 0; index < numDerivs; index++) if (allParamDerivNames[index] == energyParameterDerivatives[i]) saveDerivs<<"energyParamDerivs[get_global_id(0)*"< defines; if (useCutoff) defines["USE_CUTOFF"] = "1"; if (usePeriodic) defines["USE_PERIODIC"] = "1"; if (useExclusions) defines["USE_EXCLUSIONS"] = "1"; if (isSymmetric) defines["USE_SYMMETRIC"] = "1"; if (useCutoff && context.getSIMDWidth() < 32) defines["PRUNE_BY_CUTOFF"] = "1"; if (includeForces) defines["INCLUDE_FORCES"] = "1"; if (includeEnergy) defines["INCLUDE_ENERGY"] = "1"; defines["FORCE_WORK_GROUP_SIZE"] = context.intToString(forceThreadBlockSize); double maxCutoff = 0.0; for (int i = 0; i < 32; i++) { if ((groups&(1<(index++, context.getLongForceBuffer().getDeviceBuffer()); else kernel.setArg(index++, context.getForceBuffers().getDeviceBuffer()); kernel.setArg(index++, context.getEnergyBuffer().getDeviceBuffer()); kernel.setArg(index++, context.getPosq().getDeviceBuffer()); kernel.setArg(index++, exclusions.getDeviceBuffer()); kernel.setArg(index++, exclusionTiles.getDeviceBuffer()); kernel.setArg(index++, startTileIndex); kernel.setArg(index++, numTiles); if (useCutoff) { kernel.setArg(index++, interactingTiles.getDeviceBuffer()); kernel.setArg(index++, interactionCount.getDeviceBuffer()); index += 5; // The periodic box size arguments are set when the kernel is executed. kernel.setArg(index++, interactingTiles.getSize()); kernel.setArg(index++, blockCenter.getDeviceBuffer()); kernel.setArg(index++, blockBoundingBox.getDeviceBuffer()); kernel.setArg(index++, interactingAtoms.getDeviceBuffer()); } for (int i = 0; i < (int) params.size(); i++) { kernel.setArg(index++, params[i].getMemory()); } for (int i = 0; i < (int) arguments.size(); i++) { kernel.setArg(index++, arguments[i].getMemory()); } if (energyParameterDerivatives.size() > 0) kernel.setArg(index++, context.getEnergyParamDerivBuffer().getDeviceBuffer()); return kernel; }