-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCudaPyTorchKernelsE2EDiffConf.cpp
More file actions
401 lines (325 loc) · 14 KB
/
CudaPyTorchKernelsE2EDiffConf.cpp
File metadata and controls
401 lines (325 loc) · 14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
#include "CudaPyTorchKernels.h"
#include "CudaPyTorchKernelSources.h"
#include "openmm/common/ContextSelector.h"
#include "openmm/internal/ContextImpl.h"
#include <map>
#include <cuda_runtime_api.h>
#include <fstream>
#include <assert.h>
using namespace PyTorchPlugin;
using namespace OpenMM;
using namespace std;
/**
* @brief
*
* @param context
* @param numParticles
* @return std::vector<double>
*/
// This function extracts and collects context variables for each particle and returns them as a vector of doubles.
// signals vector would have a length of numParticles * PARAMETERNAMES.size()
static std::vector<double> extractContextVariables(ContextImpl& context, int numParticles) {
std::vector<double> signals;
string name;
for (int i=0; i < numParticles; i++) {
for (std::size_t j=0; j < PARAMETERNAMES.size(); j++) {
signals.push_back(context.getParameter(PARAMETERNAMES[j]+std::to_string(i)));
}
}
return signals;
}
// macro for checking the result of synchronization operation on CUDA
// copied from `openmm/platforms/cuda/src/CudaParallelKernels.cpp`
// report errors that occur during synchronization operations.
#define CHECK_RESULT(result, prefix) \
if (result != CUDA_SUCCESS) { \
std::stringstream m; \
m<<prefix<<": "<<cu.getErrorString(result)<<" ("<<result<<")"<<" at "<<__FILE__<<":"<<__LINE__; \
throw OpenMMException(m.str());\
}
/**
* Get a pointer to the data in a PyTorch tensor.
* The tensor is converted to the correct data type if necessary.
*/
static void* getTensorPointer(OpenMM::CudaContext& cu, torch::Tensor& tensor) {
void* data;
if (cu.getUseDoublePrecision()) {
data = tensor.to(torch::kFloat64).data_ptr<double>();
} else {
data = tensor.to(torch::kFloat32).data_ptr<float>();
}
return data;
}
// -------------------- Least-squares rigid-rotation remover (memory-efficient) --------------------
// Returns corrected_dX (N,3)
torch::Tensor remove_rigid_rotation_lstsq_loop(
const torch::Tensor& coords_in,
const torch::Tensor& dX_in,
bool center = true,
double lambda_reg = 1e-8
) {
TORCH_CHECK(coords_in.dim() == 2 && coords_in.size(1) == 3, "coords must be (N,3)");
TORCH_CHECK(dX_in.dim() == 2 && dX_in.size(1) == 3, "dX must be (N,3)");
TORCH_CHECK(coords_in.size(0) == dX_in.size(0), "coords and dX must have same N");
auto device = coords_in.device();
auto dtype = coords_in.dtype();
const int64_t N = coords_in.size(0);
// center if requested
auto coords = coords_in;
auto dX = dX_in;
if (center) {
auto coords_mean = coords_in.mean(0, /*keepdim=*/true);
auto dX_mean = dX_in.mean(0, /*keepdim=*/true);
coords = coords_in - coords_mean;
dX = dX_in - dX_mean;
}
// Prepare accumulators on device/dtype
auto I3 = torch::eye(3, torch::TensorOptions().device(device).dtype(dtype));
auto A = torch::zeros({3,3}, torch::TensorOptions().device(device).dtype(dtype));
auto b = torch::zeros({3}, torch::TensorOptions().device(device).dtype(dtype));
// Loop accumulate A and b in a memory-friendly way (vectorized in chunks if desired)
const int64_t chunk = 1 << 16; // process in chunks to reduce kernel launches if N large
for (int64_t start = 0; start < N; start += chunk) {
int64_t end = std::min<int64_t>(N, start + chunk);
auto r_chunk = coords.slice(0, start, end); // (M,3)
auto d_chunk = dX.slice(0, start, end); // (M,3)
// rsq: (M,)
auto rsq = torch::sum(r_chunk * r_chunk, 1);
// Compute per-chunk A contribution: sum ( rsq_i * I - r_i r_i^T )
// Use vectorized outer: (M,3,1) x (M,1,3) => (M,3,3)
auto r_col = r_chunk.unsqueeze(2);
auto r_row = r_chunk.unsqueeze(1);
auto outer = r_col.matmul(r_row); // (M,3,3)
// rsq * I per sample
auto rsq_exp = rsq.view({-1,1,1}); // (M,1,1)
auto rsqI = rsq_exp * I3.view({1,3,3}); // (M,3,3)
auto A_per = rsqI - outer; // (M,3,3)
auto A_sum = torch::sum(A_per, 0); // (3,3)
A += A_sum;
// b contribution: sum r_i x d_i
auto cross_rd = torch::cross(r_chunk, d_chunk, /*dim=*/1); // (M,3)
auto b_sum = torch::sum(cross_rd, 0); // (3,)
b += b_sum;
}
// Regularize
if (lambda_reg > 0.0) {
A = A + lambda_reg * I3;
}
// Solve A w = b
auto b_col = b.view({3,1});
torch::Tensor w_col;
// Try available linalg::solve signatures robustly
w_col = torch::linalg::solve(A, b_col, /*left=*/true);
auto w = w_col.view({3});
// Compute corrected displacements: dX_corr = dX - w x r
auto w_expand = w.view({1,3}).expand({coords.size(0),3});
auto wx = torch::cross(w_expand, coords, /*dim=*/1);
auto dX_corr = dX - wx;
return dX_corr;
}
CudaCalcPyTorchForceE2EDiffConfKernel::CudaCalcPyTorchForceE2EDiffConfKernel(string name, const Platform& platform, CudaContext& cu): CalcPyTorchForceE2EDiffConfKernel(name, platform), hasInitializedKernel(false), cu(cu) {
// Explicitly activate the primary context
CHECK_RESULT(cuDevicePrimaryCtxRetain(&primaryContext, cu.getDevice()), "Failed to retain the primary context");
}
/**
* @brief Destroy the Cuda CalcPy Torch Force Kernel:: Cuda CalcPy Torch Force Kernel object
*
*/
CudaCalcPyTorchForceE2EDiffConfKernel::~CudaCalcPyTorchForceE2EDiffConfKernel() {
cuDevicePrimaryCtxRelease(cu.getDevice());
}
/**
* @brief
*
* @param system
* @param force
* @param nnModule
*/
void CudaCalcPyTorchForceE2EDiffConfKernel::initialize(const System& system, const PyTorchForceE2EDiffConf& force, torch::jit::script::Module& nnModule) {
this->nnModule = nnModule;
nnModule.to(torch::kCPU);
nnModule.eval();
scale = force.getScale();
particleIndices = force.getParticleIndices();
signalForceWeights = force.getSignalForceWeights();
vector<int> tmpAtomTypes = force.getAtomTypes();
vector<vector<int>> tmpEdgeIdxs = force.getEdgeIndices();
vector<vector<int>> tmpAngles = force.getAngles();
vector<vector<int>> tmpPropers = force.getPropers();
vector<vector<int>> tmpImpropers = force.getImpropers();
vector<vector<int>> tmpPairs = force.getPairs();
vector<vector<int>> tmpTetras = force.getTetras();
vector<vector<int>> tmpCisTrans = force.getCisTrans();
vector<vector<float>> tmpEncoding = force.getEncoding();
usePeriodic = force.usesPeriodicBoundaryConditions();
int n_edges = tmpEdgeIdxs.size();
int numGhostParticles = particleIndices.size();
assert(tmpAtomTypes.size() == numGhostParticles);
assert(tmpEdgeIdxs[0].size() == 2);
options_float = torch::TensorOptions().device(torch::kCPU).dtype(torch::kFloat32);
options_int = torch::TensorOptions().device(torch::kCPU).dtype(torch::kInt64);
// define tensors used for model inputs
torch::Tensor atoms_tensor = torch::empty({static_cast<int64_t>(numGhostParticles)}, options_int);
auto at_acc = atoms_tensor.accessor<int64_t, 1>();
torch::Tensor bonds_tensor = torch::empty({static_cast<int64_t>(n_edges), 2}, options_int);
auto bonds_acc = bonds_tensor.accessor<int64_t, 2>();
torch::Tensor angles_tensor = torch::empty({static_cast<int64_t>(tmpAngles.size()), 4}, options_int);
auto angles_acc = angles_tensor.accessor<int64_t, 2>();
torch::Tensor propers_tensor = torch::empty({static_cast<int64_t>(tmpPropers.size()), 5}, options_int);
auto prop_acc = propers_tensor.accessor<int64_t, 2>();
torch::Tensor impropers_tensor = torch::empty({static_cast<int64_t>(tmpImpropers.size()), 5}, options_int);
auto improp_acc = impropers_tensor.accessor<int64_t, 2>();
torch::Tensor pairs_tensor = torch::empty({static_cast<int64_t>(tmpPairs.size()), 2}, options_int);
auto pairs_acc = pairs_tensor.accessor<int64_t, 2>();
torch::Tensor tetras_tensor = torch::empty({static_cast<int64_t>(tmpTetras.size()), 5}, options_int);
auto tetras_acc = tetras_tensor.accessor<int64_t, 2>();
torch::Tensor cistrans_tensor = torch::empty({static_cast<int64_t>(tmpCisTrans.size()), 5}, options_int);
auto cistrans_acc = cistrans_tensor.accessor<int64_t, 2>();
torch::Tensor encoding_tensor = torch::empty({static_cast<int64_t>(tmpEncoding.size()), static_cast<int64_t>(tmpEncoding[0].size())}, options_float);
auto enc_acc = encoding_tensor.accessor<float, 2>();
//Copy data to the tensors
// atoms
for (int i = 0; i < numGhostParticles; i++) {
at_acc[i] = tmpAtomTypes[i];
}
// bonds
for (int i = 0; i < n_edges; i++) {
bonds_acc[i][0] = tmpEdgeIdxs[i][0];
bonds_acc[i][1] = tmpEdgeIdxs[i][1];
}
// angles
for (int i = 0; i < tmpAngles.size(); i++) {
assert(tmpAngles[i].size() == 4);
for (int j = 0; j < 4; j++) {
angles_acc[i][j] = tmpAngles[i][j];
}
}
// propers
for (int i = 0; i < tmpPropers.size(); i++) {
assert(tmpPropers[i].size() == 5);
for (int j = 0; j < 5; j++) {
prop_acc[i][j] = tmpPropers[i][j];
}
}
// impropers
for (int i = 0; i < tmpImpropers.size(); i++) {
assert(tmpImpropers[i].size() == 5);
for (int j = 0; j < 5; j++) {
improp_acc[i][j] = tmpImpropers[i][j];
}
}
// pairs
for (int i = 0; i < tmpPairs.size(); i++) {
assert(tmpPairs[i].size() == 2);
for (int j = 0; j < 2; j++) {
pairs_acc[i][j] = tmpPairs[i][j];
}
}
// tetras
for (int i = 0; i < tmpTetras.size(); i++) {
assert(tmpTetras[i].size() == 5);
for (int j = 0; j < 5; j++) {
tetras_acc[i][j] = tmpTetras[i][j];
}
}
// cistrans
for (int i = 0; i < tmpCisTrans.size(); i++) {
assert(tmpCisTrans[i].size() == 5);
for (int j = 0; j < 5; j++) {
cistrans_acc[i][j] = tmpCisTrans[i][j];
}
}
// encoding
for (int i = 0; i < tmpEncoding.size(); i++) {
for (int j = 0; j < tmpEncoding[i].size(); j++) {
enc_acc[i][j] = tmpEncoding[i][j];
}
}
// |---------------------------- fixedInputs ---------------------------------|
// nnInputs = {pos, sigma, atoms, bonds, angles, propers, impropers, pairs, tetras, cistrans, encoding}
fixedInputs = {atoms_tensor, bonds_tensor, angles_tensor, propers_tensor, impropers_tensor, pairs_tensor, tetras_tensor, cistrans_tensor, encoding_tensor};
if (usePeriodic) {
int64_t boxVectorsDims[] = {3, 3};
boxVectorsTensor = torch::zeros(boxVectorsDims);
boxVectorsTensor = boxVectorsTensor.to(torch::kFloat32);
}
// Push the PyTorch context
// NOTE: Pytorch is always using the primary context.
// It makes the primary context current, if it is not a case.
CHECK_RESULT(cuCtxPushCurrent(primaryContext), "Failed to push the CUDA context");
// Initialize CUDA objects for PyTorch
const torch::Device device(torch::kCUDA, cu.getDeviceIndex()); // This implicitly initializes PyTorch
//torch::TensorOptions options_gpu = torch::TensorOptions().device(device).dtype(cu.getUseDoublePrecision() ? torch::kFloat64 : torch::kFloat32);
// Pop the PyTorch context
CUcontext ctx;
CHECK_RESULT(cuCtxPopCurrent(&ctx), "Failed to pop the CUDA context");
assert(primaryContext == ctx); // Check that PyTorch haven't messed up the context stack
ContextSelector selector(cu); // Switch to the OpenMM context
map<string, string> defines;
CUmodule program = cu.createModule(CudaPyTorchKernelSources::PyTorchForce, defines);
copyInputsKernel = cu.getKernel(program, "copyInputs");
addForcesKernel = cu.getKernel(program, "addForces");
}
/**
* @brief
*
* @param context
* @param includeForces
* @param includeEnergy
* @return double
*/
double CudaCalcPyTorchForceE2EDiffConfKernel::execute(ContextImpl& context,bool includeForces, bool includeEnergy) {
// Push to the PyTorch context
CHECK_RESULT(cuCtxPushCurrent(primaryContext), "Failed to push the CUDA context");
int numParticles = cu.getNumAtoms();
int numGhostParticles = particleIndices.size();
double sigma = context.getParameter("diff_sigma");
torch::Tensor sigmaTensor = torch::ones({1}, options_float) * sigma;
vector<Vec3> MDPositions;
context.getPositions(MDPositions);
torch::Tensor positionsTensor = torch::empty({numGhostParticles, 1, 3}, options_float.requires_grad(true));
auto positions = positionsTensor.accessor<float, 3>();
//Copy positions to the tensor
for (int i = 0; i < numGhostParticles; i++) {
positions[i][0][0] = MDPositions[particleIndices[i]][0] *10;
positions[i][0][1] = MDPositions[particleIndices[i]][1] *10;
positions[i][0][2] = MDPositions[particleIndices[i]][2] *10;
}
vector<torch::jit::IValue> nnInputs = {};
nnInputs.push_back(positionsTensor);
nnInputs.push_back(sigmaTensor);
for ( auto &ten : fixedInputs ) {
nnInputs.push_back(ten);
}
// synchronizing the current context before switching to PyTorch
CHECK_RESULT(cuCtxSynchronize(), "Error synchronizing CUDA context");
torch::Tensor noise = scale*nnModule.forward(nnInputs).toTensor();
noise = remove_rigid_rotation_lstsq_loop(positionsTensor.squeeze(1), noise);
// get forces on positions as before
if (includeForces) {
auto NNForce = noise.accessor<float, 2>();
// sending atomic forces to cuda context
torch::Tensor forceTensor = noise.index({torch::indexing::Slice(), torch::indexing::Slice(0,3)});
torch::Tensor paddedForceTensor = torch::zeros({numParticles, 3});
paddedForceTensor.narrow(0,
static_cast<int64_t>(particleIndices[0]),
static_cast<int64_t>(particleIndices.size())).copy_(forceTensor);
torch::Device device(torch::kCUDA, cu.getDeviceIndex());
paddedForceTensor = paddedForceTensor.to(device);
void* fdata = getTensorPointer(cu, paddedForceTensor);
CHECK_RESULT(cuCtxSynchronize(), "Error synchronizing CUDA context");
{
ContextSelector selector(cu);
int paddedNumAtoms = cu.getPaddedNumAtoms();
void* forceArgs[] = {&fdata, &cu.getForce().getDevicePointer(),
&cu.getAtomIndexArray().getDevicePointer(), &numParticles, &paddedNumAtoms};
cu.executeKernel(addForcesKernel, forceArgs, numParticles);
CHECK_RESULT(cuCtxSynchronize(), "Error synchronizing CUDA context");
}
}
// Pop to the PyTorch context
CUcontext ctx;
CHECK_RESULT(cuCtxPopCurrent(&ctx), "Failed to pop the CUDA context");
assert(primaryContext == ctx); // Check that the correct context was popped
return 0.0; // E2EDiffConf only updates forces, there is no energy
}