CudaPlatform.h 6.31 KB
Newer Older
1
2
3
4
5
6
#ifndef OPENMM_CUDAPLATFORM_H_
#define OPENMM_CUDAPLATFORM_H_

/* -------------------------------------------------------------------------- *
 *                                   OpenMM                                   *
 * -------------------------------------------------------------------------- *
Evan Pretti's avatar
Evan Pretti committed
7
8
 * This is part of the OpenMM molecular simulation toolkit.                   *
 * See https://openmm.org/development.                                        *
9
 *                                                                            *
10
 * Portions copyright (c) 2008-2023 Stanford University and the Authors.      *
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 * 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 "openmm/Platform.h"
#include "openmm/System.h"
30
#include "openmm/internal/ThreadPool.h"
31
#include "openmm/common/windowsExportCommon.h"
32
33
34
35
36
37
38
39
40

namespace OpenMM {
    
class CudaContext;

/**
 * This Platform subclass uses CUDA implementations of the OpenMM kernels.
 */

41
class OPENMM_EXPORT_COMMON CudaPlatform : public Platform {
42
43
44
45
46
47
48
public:
    class PlatformData;
    CudaPlatform();
    const std::string& getName() const {
        static const std::string name = "CUDA";
        return name;
    }
49
    double getSpeed() const;
50
51
52
53
    bool supportsDoublePrecision() const;
    const std::string& getPropertyValue(const Context& context, const std::string& property) const;
    void setPropertyValue(Context& context, const std::string& property, const std::string& value) const;
    void contextCreated(ContextImpl& context, const std::map<std::string, std::string>& properties) const;
54
    void linkedContextCreated(ContextImpl& context, ContextImpl& originalContext) const;
55
56
57
58
59
    void contextDestroyed(ContextImpl& context) const;
    /**
     * This is the name of the parameter for selecting which CUDA device or devices to use.
     */
    static const std::string& CudaDeviceIndex() {
60
        static const std::string key = "DeviceIndex";
61
62
        return key;
    }
63
64
65
66
    /**
     * This is the name of the parameter that reports the CUDA device or devices being used.
     */
    static const std::string& CudaDeviceName() {
67
        static const std::string key = "DeviceName";
68
69
        return key;
    }
70
71
72
73
    /**
     * This is the name of the parameter for selecting whether CUDA should sync or spin loop while waiting for results.
     */
    static const std::string& CudaUseBlockingSync() {
74
        static const std::string key = "UseBlockingSync";
75
76
77
78
79
80
        return key;
    }
    /**
     * This is the name of the parameter for selecting what numerical precision to use.
     */
    static const std::string& CudaPrecision() {
81
        static const std::string key = "Precision";
82
83
        return key;
    }
84
85
86
    /**
     * This is the name of the parameter for selecting whether to use the CPU based PME calculation.
     */
87
    static const std::string& CudaUseCpuPme() {
88
        static const std::string key = "UseCpuPme";
89
90
        return key;
    }
91
    /**
92
93
94
     * This property is ignored.  It exists only for backward compatibility.
     * 
     * @deprecated
95
96
97
98
99
     */
    static const std::string& CudaCompiler() {
        static const std::string key = "CudaCompiler";
        return key;
    }
100
    /**
101
102
103
     * This property is ignored.  It exists only for backward compatibility.
     * 
     * @deprecated
104
105
106
107
108
     */
    static const std::string& CudaHostCompiler() {
        static const std::string key = "CudaHostCompiler";
        return key;
    }
109
110
111
112
    /**
     * This is the name of the parameter for specifying the path to the directory for creating temporary files.
     */
    static const std::string& CudaTempDirectory() {
113
        static const std::string key = "TempDirectory";
114
115
        return key;
    }
116
117
118
119
    /**
     * This is the name of the parameter for selecting whether to disable use of a separate stream for PME.
     */
    static const std::string& CudaDisablePmeStream() {
120
        static const std::string key = "DisablePmeStream";
121
122
        return key;
    }
123
124
125
126
    /**
     * This is the name of the parameter for requesting that force computations be fully deterministic.
     */
    static const std::string& CudaDeterministicForces() {
127
        static const std::string key = "DeterministicForces";
128
129
        return key;
    }
130
131
};

132
class OPENMM_EXPORT_COMMON CudaPlatform::PlatformData {
133
public:
134
    PlatformData(ContextImpl* context, const System& system, const std::string& deviceIndexProperty, const std::string& blockingProperty, const std::string& precisionProperty,
135
136
            const std::string& cpuPmeProperty, const std::string& tempProperty, const std::string& pmeStreamProperty, const std::string& deterministicForcesProperty,
            int numThreads, ContextImpl* originalContext);
137
138
139
    ~PlatformData();
    void initializeContexts(const System& system);
    void syncContexts();
140
    ContextImpl* context;
141
142
    std::vector<CudaContext*> contexts;
    std::vector<double> contextEnergy;
143
    bool hasInitializedContexts, removeCM, peerAccessSupported, useCpuPme, disablePmeStream, deterministicForces;
144
145
    int cmMotionFrequency, computeForceCount;
    long long stepCount;
146
147
    double time;
    std::map<std::string, std::string> propertyValues;
148
    ThreadPool threads;
149
150
151
152
153
};

} // namespace OpenMM

#endif /*OPENMM_CUDAPLATFORM_H_*/