/* -------------------------------------------------------------------------- * * 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-2013 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), cutoff(-1.0), useCutoff(false), anyExclusions(false), usePadding(true), numForceBuffers(0), exclusionIndices(NULL), exclusionRowIndices(NULL), exclusionTiles(NULL), exclusions(NULL), interactingTiles(NULL), interactingAtoms(NULL), interactionCount(NULL), blockCenter(NULL), blockBoundingBox(NULL), sortedBlocks(NULL), sortedBlockCenter(NULL), sortedBlockBoundingBox(NULL), oldPositions(NULL), rebuildNeighborList(NULL), blockSorter(NULL), nonbondedForceGroup(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; } } } OpenCLNonbondedUtilities::~OpenCLNonbondedUtilities() { if (exclusionIndices != NULL) delete exclusionIndices; if (exclusionRowIndices != NULL) delete exclusionRowIndices; if (exclusionTiles != NULL) delete exclusionTiles; if (exclusions != NULL) delete exclusions; if (interactingTiles != NULL) delete interactingTiles; if (interactingAtoms != NULL) delete interactingAtoms; if (interactionCount != NULL) delete interactionCount; if (blockCenter != NULL) delete blockCenter; if (blockBoundingBox != NULL) delete blockBoundingBox; if (sortedBlocks != NULL) delete sortedBlocks; if (sortedBlockCenter != NULL) delete sortedBlockCenter; if (sortedBlockBoundingBox != NULL) delete sortedBlockBoundingBox; if (oldPositions != NULL) delete oldPositions; if (rebuildNeighborList != NULL) delete rebuildNeighborList; if (blockSorter != NULL) delete blockSorter; } void OpenCLNonbondedUtilities::addInteraction(bool usesCutoff, bool usesPeriodic, bool usesExclusions, double cutoffDistance, const vector >& exclusionList, const string& kernel, int forceGroup) { if (cutoff != -1.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 (cutoffDistance != cutoff) throw OpenMMException("All Forces must use the same cutoff distance"); if (forceGroup != nonbondedForceGroup) throw OpenMMException("All nonbonded forces must be in the same force group"); } if (usesExclusions) requestExclusions(exclusionList); useCutoff = usesCutoff; usePeriodic = usesPeriodic; cutoff = cutoffDistance; if (kernel.size() > 0) kernelSource += kernel+"\n"; nonbondedForceGroup = forceGroup; } void OpenCLNonbondedUtilities::addParameter(const ParameterInfo& parameter) { parameters.push_back(parameter); } void OpenCLNonbondedUtilities::addArgument(const ParameterInfo& parameter) { arguments.push_back(parameter); } 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) { 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(), compareUshort2); exclusionTiles = OpenCLArray::create(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(); } exclusionIndices = OpenCLArray::create(context, exclusionIndicesVec.size(), "exclusionIndices"); exclusionRowIndices = OpenCLArray::create(context, exclusionRowIndicesVec.size(), "exclusionRowIndices"); exclusionIndices->upload(exclusionIndicesVec); exclusionRowIndices->upload(exclusionRowIndicesVec); // Record the exclusion data. exclusions = OpenCLArray::create(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<upload(exclusionVec); // Create data structures for the neighbor list. if (useCutoff) { // Select a size for the arrays that hold the neighbor list. We have to make a fairly // arbitrary guess, but if this turns out to be too small we'll increase it later. int maxTiles = 20*numAtomBlocks; if (maxTiles > numTiles) maxTiles = numTiles; if (maxTiles < 1) maxTiles = 1; int numAtoms = context.getNumAtoms(); interactingTiles = OpenCLArray::create(context, maxTiles, "interactingTiles"); interactingAtoms = OpenCLArray::create(context, OpenCLContext::TileSize*maxTiles, "interactingAtoms"); interactionCount = OpenCLArray::create(context, 1, "interactionCount"); int elementSize = (context.getUseDoublePrecision() ? sizeof(cl_double) : sizeof(cl_float)); blockCenter = new OpenCLArray(context, numAtomBlocks, 4*elementSize, "blockCenter"); blockBoundingBox = new OpenCLArray(context, numAtomBlocks, 4*elementSize, "blockBoundingBox"); sortedBlocks = new OpenCLArray(context, numAtomBlocks, 2*elementSize, "sortedBlocks"); sortedBlockCenter = new OpenCLArray(context, numAtomBlocks+1, 4*elementSize, "sortedBlockCenter"); sortedBlockBoundingBox = new OpenCLArray(context, numAtomBlocks+1, 4*elementSize, "sortedBlockBoundingBox"); oldPositions = new OpenCLArray(context, numAtoms, 4*elementSize, "oldPositions"); if (context.getUseDoublePrecision()) { vector oldPositionsVec(numAtoms, mm_double4(1e30, 1e30, 1e30, 0)); oldPositions->upload(oldPositionsVec); } else { vector oldPositionsVec(numAtoms, mm_float4(1e30f, 1e30f, 1e30f, 0)); oldPositions->upload(oldPositionsVec); } rebuildNeighborList = OpenCLArray::create(context, 1, "rebuildNeighborList"); blockSorter = new OpenCLSort(context, new BlockSortTrait(context.getUseDoublePrecision()), numAtomBlocks); vector count(1, 0); interactionCount->upload(count); } // Create kernels. if (kernelSource.size() > 0) forceKernel = createInteractionKernel(kernelSource, parameters, arguments, true, true); if (useCutoff) { double padding = (usePadding ? 0.1*cutoff : 0.0); double paddedCutoff = cutoff+padding; map defines; defines["TILE_SIZE"] = context.intToString(OpenCLContext::TileSize); defines["NUM_ATOMS"] = context.intToString(context.getNumAtoms()); defines["PADDING"] = context.doubleToString(padding); 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()); if (usePeriodic) defines["USE_PERIODIC"] = "1"; int maxExclusions = 0; for (int i = 0; i < (int) exclusionBlocksForBlock.size(); i++) maxExclusions = (maxExclusions > exclusionBlocksForBlock[i].size() ? maxExclusions : exclusionBlocksForBlock[i].size()); defines["MAX_EXCLUSIONS"] = context.intToString(maxExclusions); defines["BUFFER_GROUPS"] = (deviceIsCpu ? "4" : "2"); string file = (deviceIsCpu ? OpenCLKernelSources::findInteractingBlocks_cpu : OpenCLKernelSources::findInteractingBlocks); int groupSize = (deviceIsCpu ? 32 : 128); while (true) { defines["GROUP_SIZE"] = context.intToString(groupSize); cl::Program interactingBlocksProgram = context.createProgram(file, defines); findBlockBoundsKernel = cl::Kernel(interactingBlocksProgram, "findBlockBounds"); findBlockBoundsKernel.setArg(0, context.getNumAtoms()); findBlockBoundsKernel.setArg(3, context.getPosq().getDeviceBuffer()); findBlockBoundsKernel.setArg(4, blockCenter->getDeviceBuffer()); findBlockBoundsKernel.setArg(5, blockBoundingBox->getDeviceBuffer()); findBlockBoundsKernel.setArg(6, rebuildNeighborList->getDeviceBuffer()); findBlockBoundsKernel.setArg(7, sortedBlocks->getDeviceBuffer()); sortBoxDataKernel = cl::Kernel(interactingBlocksProgram, "sortBoxData"); sortBoxDataKernel.setArg(0, sortedBlocks->getDeviceBuffer()); sortBoxDataKernel.setArg(1, blockCenter->getDeviceBuffer()); sortBoxDataKernel.setArg(2, blockBoundingBox->getDeviceBuffer()); sortBoxDataKernel.setArg(3, sortedBlockCenter->getDeviceBuffer()); sortBoxDataKernel.setArg(4, sortedBlockBoundingBox->getDeviceBuffer()); sortBoxDataKernel.setArg(5, context.getPosq().getDeviceBuffer()); sortBoxDataKernel.setArg(6, oldPositions->getDeviceBuffer()); sortBoxDataKernel.setArg(7, interactionCount->getDeviceBuffer()); sortBoxDataKernel.setArg(8, rebuildNeighborList->getDeviceBuffer()); findInteractingBlocksKernel = cl::Kernel(interactingBlocksProgram, "findBlocksWithInteractions"); findInteractingBlocksKernel.setArg(2, interactionCount->getDeviceBuffer()); findInteractingBlocksKernel.setArg(3, interactingTiles->getDeviceBuffer()); findInteractingBlocksKernel.setArg(4, interactingAtoms->getDeviceBuffer()); findInteractingBlocksKernel.setArg(5, context.getPosq().getDeviceBuffer()); findInteractingBlocksKernel.setArg(6, interactingTiles->getSize()); findInteractingBlocksKernel.setArg(7, startBlockIndex); findInteractingBlocksKernel.setArg(8, numBlocks); findInteractingBlocksKernel.setArg(9, sortedBlocks->getDeviceBuffer()); findInteractingBlocksKernel.setArg(10, sortedBlockCenter->getDeviceBuffer()); findInteractingBlocksKernel.setArg(11, sortedBlockBoundingBox->getDeviceBuffer()); findInteractingBlocksKernel.setArg(12, exclusionIndices->getDeviceBuffer()); findInteractingBlocksKernel.setArg(13, exclusionRowIndices->getDeviceBuffer()); findInteractingBlocksKernel.setArg(14, oldPositions->getDeviceBuffer()); findInteractingBlocksKernel.setArg(15, rebuildNeighborList->getDeviceBuffer()); if (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; } } } static void setPeriodicBoxSizeArg(OpenCLContext& cl, cl::Kernel& kernel, int index) { if (cl.getUseDoublePrecision()) kernel.setArg(index, cl.getPeriodicBoxSizeDouble()); else kernel.setArg(index, cl.getPeriodicBoxSize()); } static void setInvPeriodicBoxSizeArg(OpenCLContext& cl, cl::Kernel& kernel, int index) { if (cl.getUseDoublePrecision()) kernel.setArg(index, cl.getInvPeriodicBoxSizeDouble()); else kernel.setArg(index, cl.getInvPeriodicBoxSize()); } void OpenCLNonbondedUtilities::prepareInteractions() { if (!useCutoff) return; if (usePeriodic) { mm_float4 box = context.getPeriodicBoxSize(); double minAllowedSize = 1.999999*cutoff; 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. setPeriodicBoxSizeArg(context, findBlockBoundsKernel, 1); setInvPeriodicBoxSizeArg(context, findBlockBoundsKernel, 2); context.executeKernel(findBlockBoundsKernel, context.getNumAtoms()); blockSorter->sort(*sortedBlocks); context.executeKernel(sortBoxDataKernel, context.getNumAtoms()); setPeriodicBoxSizeArg(context, findInteractingBlocksKernel, 0); setInvPeriodicBoxSizeArg(context, findInteractingBlocksKernel, 1); context.executeKernel(findInteractingBlocksKernel, context.getNumAtoms(), deviceIsCpu ? 1 : 128); } void OpenCLNonbondedUtilities::computeInteractions() { if (kernelSource.size() > 0) { if (useCutoff) { setPeriodicBoxSizeArg(context, forceKernel, 9); setInvPeriodicBoxSizeArg(context, forceKernel, 10); } context.executeKernel(forceKernel, numForceThreadBlocks*forceThreadBlockSize, forceThreadBlockSize); if (context.getComputeForceCount() == 1) updateNeighborListSize(); // This is the first time step, so check whether our initial guess was large enough. } } void OpenCLNonbondedUtilities::updateNeighborListSize() { if (!useCutoff) return; unsigned int* pinnedInteractionCount = (unsigned int*) context.getPinnedBuffer(); interactionCount->download(pinnedInteractionCount); if (pinnedInteractionCount[0] <= (unsigned int) interactingTiles->getSize()) return; // 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*pinnedInteractionCount[0]); int totalTiles = context.getNumAtomBlocks()*(context.getNumAtomBlocks()+1)/2; if (maxTiles > totalTiles) maxTiles = totalTiles; delete interactingTiles; delete interactingAtoms; interactingTiles = NULL; // Avoid an error in the destructor if the following allocation fails interactingAtoms = NULL; interactingTiles = OpenCLArray::create(context, maxTiles, "interactingTiles"); interactingAtoms = OpenCLArray::create(context, OpenCLContext::TileSize*maxTiles, "interactingAtoms"); forceKernel.setArg(7, interactingTiles->getDeviceBuffer()); forceKernel.setArg(11, maxTiles); forceKernel.setArg(14, interactingAtoms->getDeviceBuffer()); findInteractingBlocksKernel.setArg(3, interactingTiles->getDeviceBuffer()); findInteractingBlocksKernel.setArg(4, interactingAtoms->getDeviceBuffer()); findInteractingBlocksKernel.setArg(6, maxTiles); int numAtoms = context.getNumAtoms(); if (context.getUseDoublePrecision()) { vector oldPositionsVec(numAtoms, mm_double4(1e30, 1e30, 1e30, 0)); oldPositions->upload(oldPositionsVec); } else { vector oldPositionsVec(numAtoms, mm_float4(1e30f, 1e30f, 1e30f, 0)); oldPositions->upload(oldPositionsVec); } } 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 && interactingTiles != NULL) { // We are using a cutoff, and the kernels have already been created. forceKernel.setArg(5, startTileIndex); forceKernel.setArg(6, numTiles); findInteractingBlocksKernel.setArg(7, startBlockIndex); findInteractingBlocksKernel.setArg(8, numBlocks); } } cl::Kernel OpenCLNonbondedUtilities::createInteractionKernel(const string& source, const vector& params, const vector& arguments, bool useExclusions, bool isSymmetric) const { 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(); } } 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]."< 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"; defines["FORCE_WORK_GROUP_SIZE"] = context.intToString(forceThreadBlockSize); defines["CUTOFF_SQUARED"] = context.doubleToString(cutoff*cutoff); defines["CUTOFF"] = context.doubleToString(cutoff); defines["NUM_ATOMS"] = context.intToString(context.getNumAtoms()); defines["PADDED_NUM_ATOMS"] = context.intToString(context.getPaddedNumAtoms()); defines["NUM_BLOCKS"] = context.intToString(context.getNumAtomBlocks()); defines["TILE_SIZE"] = context.intToString(OpenCLContext::TileSize); int numExclusionTiles = exclusionTiles->getSize(); defines["NUM_TILES_WITH_EXCLUSIONS"] = context.intToString(numExclusionTiles); int numContexts = context.getPlatformData().contexts.size(); int startExclusionIndex = context.getContextIndex()*numExclusionTiles/numContexts; int endExclusionIndex = (context.getContextIndex()+1)*numExclusionTiles/numContexts; defines["FIRST_EXCLUSION_TILE"] = context.intToString(startExclusionIndex); defines["LAST_EXCLUSION_TILE"] = context.intToString(endExclusionIndex); if ((localDataSize/4)%2 == 0) defines["PARAMETER_SIZE_IS_EVEN"] = "1"; string file; if (deviceIsCpu) file = OpenCLKernelSources::nonbonded_cpu; else file = OpenCLKernelSources::nonbonded; cl::Program program = context.createProgram(context.replaceStrings(file, replacements), defines); cl::Kernel kernel(program, "computeNonbonded"); // Set arguments to the Kernel. int index = 0; if (context.getSupports64BitGlobalAtomics()) kernel.setArg(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 += 2; // 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()); } return kernel; }