CudaKernelFactory.cpp 10.4 KB
Newer Older
1
2
3
4
5
6
7
8
/* -------------------------------------------------------------------------- *
 *                                   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.               *
 *                                                                            *
9
 * Portions copyright (c) 2008-2025 Stanford University and the Authors.      *
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 * 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 <http://www.gnu.org/licenses/>.      *
 * -------------------------------------------------------------------------- */

#include "CudaKernelFactory.h"
28
#include "CudaKernels.h"
29
#include "CudaParallelKernels.h"
30
#include "CudaPlatform.h"
31
#include "openmm/common/CommonKernels.h"
Peter Eastman's avatar
Peter Eastman committed
32
#include "openmm/common/CommonParallelKernels.h"
33
34
35
36
37
38
#include "openmm/common/CommonCalcCustomGBForceKernel.h"
#include "openmm/common/CommonCalcCustomHbondForceKernel.h"
#include "openmm/common/CommonCalcCustomManyParticleForceKernel.h"
#include "openmm/common/CommonCalcCustomNonbondedForceKernel.h"
#include "openmm/common/CommonIntegrateCustomStepKernel.h"
#include "openmm/common/CommonIntegrateNoseHooverStepKernel.h"
39
#include "openmm/common/CommonIntegrateQTBStepKernel.h"
40
41
42
43
44
45
46
#include "openmm/internal/ContextImpl.h"
#include "openmm/OpenMMException.h"

using namespace OpenMM;

KernelImpl* CudaKernelFactory::createKernelImpl(std::string name, const Platform& platform, ContextImpl& context) const {
    CudaPlatform::PlatformData& data = *static_cast<CudaPlatform::PlatformData*>(context.getPlatformData());
Peter Eastman's avatar
Peter Eastman committed
47
    CudaContext& cu = *data.contexts[0];
48
49
50
51
52
53
    if (data.contexts.size() > 1) {
        // We are running in parallel on multiple devices, so we may want to create a parallel kernel.
        
        if (name == CalcForcesAndEnergyKernel::Name())
            return new CudaParallelCalcForcesAndEnergyKernel(name, platform, data);
        if (name == CalcHarmonicBondForceKernel::Name())
Peter Eastman's avatar
Peter Eastman committed
54
            return new CommonParallelCalcHarmonicBondForceKernel(name, platform, cu, context.getSystem());
55
        if (name == CalcCustomBondForceKernel::Name())
Peter Eastman's avatar
Peter Eastman committed
56
            return new CommonParallelCalcCustomBondForceKernel(name, platform, cu, context.getSystem());
57
        if (name == CalcHarmonicAngleForceKernel::Name())
Peter Eastman's avatar
Peter Eastman committed
58
            return new CommonParallelCalcHarmonicAngleForceKernel(name, platform, cu, context.getSystem());
59
        if (name == CalcCustomAngleForceKernel::Name())
Peter Eastman's avatar
Peter Eastman committed
60
            return new CommonParallelCalcCustomAngleForceKernel(name, platform, cu, context.getSystem());
61
        if (name == CalcPeriodicTorsionForceKernel::Name())
Peter Eastman's avatar
Peter Eastman committed
62
            return new CommonParallelCalcPeriodicTorsionForceKernel(name, platform, cu, context.getSystem());
63
        if (name == CalcRBTorsionForceKernel::Name())
Peter Eastman's avatar
Peter Eastman committed
64
            return new CommonParallelCalcRBTorsionForceKernel(name, platform, cu, context.getSystem());
65
        if (name == CalcCMAPTorsionForceKernel::Name())
Peter Eastman's avatar
Peter Eastman committed
66
            return new CommonParallelCalcCMAPTorsionForceKernel(name, platform, cu, context.getSystem());
67
        if (name == CalcCustomTorsionForceKernel::Name())
Peter Eastman's avatar
Peter Eastman committed
68
            return new CommonParallelCalcCustomTorsionForceKernel(name, platform, cu, context.getSystem());
69
70
71
        if (name == CalcNonbondedForceKernel::Name())
            return new CudaParallelCalcNonbondedForceKernel(name, platform, data, context.getSystem());
        if (name == CalcCustomNonbondedForceKernel::Name())
Peter Eastman's avatar
Peter Eastman committed
72
            return new CommonParallelCalcCustomNonbondedForceKernel(name, platform, cu, context.getSystem());
73
        if (name == CalcCustomExternalForceKernel::Name())
Peter Eastman's avatar
Peter Eastman committed
74
            return new CommonParallelCalcCustomExternalForceKernel(name, platform, cu, context.getSystem());
75
        if (name == CalcCustomHbondForceKernel::Name())
Peter Eastman's avatar
Peter Eastman committed
76
            return new CommonParallelCalcCustomHbondForceKernel(name, platform, cu, context.getSystem());
77
        if (name == CalcCustomCompoundBondForceKernel::Name())
Peter Eastman's avatar
Peter Eastman committed
78
            return new CommonParallelCalcCustomCompoundBondForceKernel(name, platform, cu, context.getSystem());
79
    }
80
81
82
    if (name == CalcForcesAndEnergyKernel::Name())
        return new CudaCalcForcesAndEnergyKernel(name, platform, cu);
    if (name == UpdateStateDataKernel::Name())
83
        return new CommonUpdateStateDataKernel(name, platform, cu);
84
    if (name == ApplyConstraintsKernel::Name())
85
        return new CommonApplyConstraintsKernel(name, platform, cu);
86
    if (name == VirtualSitesKernel::Name())
87
        return new CommonVirtualSitesKernel(name, platform, cu);
88
    if (name == CalcHarmonicBondForceKernel::Name())
89
        return new CommonCalcHarmonicBondForceKernel(name, platform, cu, context.getSystem());
90
    if (name == CalcCustomBondForceKernel::Name())
91
        return new CommonCalcCustomBondForceKernel(name, platform, cu, context.getSystem());
92
    if (name == CalcHarmonicAngleForceKernel::Name())
93
        return new CommonCalcHarmonicAngleForceKernel(name, platform, cu, context.getSystem());
94
    if (name == CalcCustomAngleForceKernel::Name())
95
        return new CommonCalcCustomAngleForceKernel(name, platform, cu, context.getSystem());
96
    if (name == CalcPeriodicTorsionForceKernel::Name())
97
        return new CommonCalcPeriodicTorsionForceKernel(name, platform, cu, context.getSystem());
98
    if (name == CalcRBTorsionForceKernel::Name())
99
        return new CommonCalcRBTorsionForceKernel(name, platform, cu, context.getSystem());
100
    if (name == CalcCMAPTorsionForceKernel::Name())
101
        return new CommonCalcCMAPTorsionForceKernel(name, platform, cu, context.getSystem());
102
    if (name == CalcCustomTorsionForceKernel::Name())
103
        return new CommonCalcCustomTorsionForceKernel(name, platform, cu, context.getSystem());
104
105
    if (name == CalcNonbondedForceKernel::Name())
        return new CudaCalcNonbondedForceKernel(name, platform, cu, context.getSystem());
106
    if (name == CalcCustomNonbondedForceKernel::Name())
107
        return new CommonCalcCustomNonbondedForceKernel(name, platform, cu, context.getSystem());
108
    if (name == CalcGBSAOBCForceKernel::Name())
109
        return new CommonCalcGBSAOBCForceKernel(name, platform, cu);
110
    if (name == CalcCustomGBForceKernel::Name())
111
        return new CommonCalcCustomGBForceKernel(name, platform, cu, context.getSystem());
112
    if (name == CalcCustomExternalForceKernel::Name())
113
        return new CommonCalcCustomExternalForceKernel(name, platform, cu, context.getSystem());
114
    if (name == CalcCustomHbondForceKernel::Name())
115
        return new CommonCalcCustomHbondForceKernel(name, platform, cu, context.getSystem());
116
    if (name == CalcCustomCentroidBondForceKernel::Name())
117
        return new CommonCalcCustomCentroidBondForceKernel(name, platform, cu, context.getSystem());
118
    if (name == CalcCustomCompoundBondForceKernel::Name())
119
        return new CommonCalcCustomCompoundBondForceKernel(name, platform, cu, context.getSystem());
120
121
    if (name == CalcCustomCVForceKernel::Name())
        return new CudaCalcCustomCVForceKernel(name, platform, cu);
122
123
    if (name == CalcATMForceKernel::Name())
        return new CudaCalcATMForceKernel(name, platform, cu);
124
125
    if (name == CalcCustomCPPForceKernel::Name())
        return new CommonCalcCustomCPPForceKernel(name, platform, context, cu);
126
    if (name == CalcRMSDForceKernel::Name())
127
        return new CommonCalcRMSDForceKernel(name, platform, cu);
128
    if (name == CalcCustomManyParticleForceKernel::Name())
129
        return new CommonCalcCustomManyParticleForceKernel(name, platform, cu, context.getSystem());
peastman's avatar
peastman committed
130
    if (name == CalcGayBerneForceKernel::Name())
131
        return new CommonCalcGayBerneForceKernel(name, platform, cu);
132
    if (name == IntegrateVerletStepKernel::Name())
133
        return new CommonIntegrateVerletStepKernel(name, platform, cu);
134
135
    if (name == IntegrateLangevinMiddleStepKernel::Name())
        return new CommonIntegrateLangevinMiddleStepKernel(name, platform, cu);
136
    if (name == IntegrateBrownianStepKernel::Name())
137
        return new CommonIntegrateBrownianStepKernel(name, platform, cu);
138
    if (name == IntegrateVariableVerletStepKernel::Name())
139
        return new CommonIntegrateVariableVerletStepKernel(name, platform, cu);
140
    if (name == IntegrateVariableLangevinStepKernel::Name())
141
        return new CommonIntegrateVariableLangevinStepKernel(name, platform, cu);
142
    if (name == IntegrateCustomStepKernel::Name())
143
        return new CommonIntegrateCustomStepKernel(name, platform, cu);
Peter Eastman's avatar
Peter Eastman committed
144
145
    if (name == IntegrateDPDStepKernel::Name())
        return new CommonIntegrateDPDStepKernel(name, platform, cu);
146
147
    if (name == IntegrateQTBStepKernel::Name())
        return new CommonIntegrateQTBStepKernel(name, platform, cu);
148
    if (name == ApplyAndersenThermostatKernel::Name())
149
        return new CommonApplyAndersenThermostatKernel(name, platform, cu);
150
151
    if (name == IntegrateNoseHooverStepKernel::Name())
        return new CommonIntegrateNoseHooverStepKernel(name, platform, cu);
152
    if (name == ApplyMonteCarloBarostatKernel::Name())
153
        return new CommonApplyMonteCarloBarostatKernel(name, platform, cu);
154
    if (name == RemoveCMMotionKernel::Name())
155
        return new CommonRemoveCMMotionKernel(name, platform, cu);
156
157
    throw OpenMMException((std::string("Tried to create kernel with illegal kernel name '")+name+"'").c_str());
}