"plugins/amoeba/vscode:/vscode.git/clone" did not exist on "2bce659f15ce95534fb87655ee5010a029d2d138"
CudaArray.cpp 5.72 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.               *
 *                                                                            *
Peter Eastman's avatar
Peter Eastman committed
9
 * Portions copyright (c) 2012-2018 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 "CudaArray.h"
28
#include "CudaContext.h"
29
30
31
32
33
34
#include <iostream>
#include <sstream>
#include <vector>

using namespace OpenMM;

Peter Eastman's avatar
Peter Eastman committed
35
36
37
38
39
CudaArray::CudaArray() : pointer(0), ownsMemory(false) {
}

CudaArray::CudaArray(CudaContext& context, int size, int elementSize, const std::string& name) : pointer(0) {
    initialize(context, size, elementSize, name);
40
41
42
}

CudaArray::~CudaArray() {
Peter Eastman's avatar
Peter Eastman committed
43
    if (pointer != 0 && ownsMemory && context->getContextIsValid()) {
44
        context->setAsCurrent();
45
46
47
        CUresult result = cuMemFree(pointer);
        if (result != CUDA_SUCCESS) {
            std::stringstream str;
48
            str<<"Error deleting array "<<name<<": "<<CudaContext::getErrorString(result)<<" ("<<result<<")";
49
50
51
52
53
            throw OpenMMException(str.str());
        }
    }
}

Peter Eastman's avatar
Peter Eastman committed
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
void CudaArray::initialize(CudaContext& context, int size, int elementSize, const std::string& name) {
    if (this->pointer != 0)
        throw OpenMMException("CudaArray has already been initialized");
    this->context = &context;
    this->size = size;
    this->elementSize = elementSize;
    this->name = name;
    ownsMemory = true;
    CUresult result = cuMemAlloc(&pointer, size*elementSize);
    if (result != CUDA_SUCCESS) {
        std::stringstream str;
        str<<"Error creating array "<<name<<": "<<CudaContext::getErrorString(result)<<" ("<<result<<")";
        throw OpenMMException(str.str());
    }
}

void CudaArray::resize(int size) {
    if (pointer == 0)
        throw OpenMMException("CudaArray has not been initialized");
    if (!ownsMemory)
        throw OpenMMException("Cannot resize an array that does not own its storage");
    CUresult result = cuMemFree(pointer);
    if (result != CUDA_SUCCESS) {
        std::stringstream str;
        str<<"Error deleting array "<<name<<": "<<CudaContext::getErrorString(result)<<" ("<<result<<")";
        throw OpenMMException(str.str());
    }
    pointer = 0;
    initialize(*context, size, elementSize, name);
}

85
void CudaArray::upload(const void* data, bool blocking) {
Peter Eastman's avatar
Peter Eastman committed
86
87
    if (pointer == 0)
        throw OpenMMException("CudaArray has not been initialized");
88
89
90
91
    CUresult result;
    if (blocking)
        result = cuMemcpyHtoD(pointer, data, size*elementSize);
    else
Peter Eastman's avatar
Peter Eastman committed
92
        result = cuMemcpyHtoDAsync(pointer, data, size*elementSize, context->getCurrentStream());
93
94
    if (result != CUDA_SUCCESS) {
        std::stringstream str;
95
        str<<"Error uploading array "<<name<<": "<<CudaContext::getErrorString(result)<<" ("<<result<<")";
96
97
98
99
100
        throw OpenMMException(str.str());
    }
}

void CudaArray::download(void* data, bool blocking) const {
Peter Eastman's avatar
Peter Eastman committed
101
102
    if (pointer == 0)
        throw OpenMMException("CudaArray has not been initialized");
103
104
105
106
    CUresult result;
    if (blocking)
        result = cuMemcpyDtoH(data, pointer, size*elementSize);
    else
Peter Eastman's avatar
Peter Eastman committed
107
        result = cuMemcpyDtoHAsync(data, pointer, size*elementSize, context->getCurrentStream());
108
109
    if (result != CUDA_SUCCESS) {
        std::stringstream str;
110
        str<<"Error downloading array "<<name<<": "<<CudaContext::getErrorString(result)<<" ("<<result<<")";
111
112
113
        throw OpenMMException(str.str());
    }
}
114
115

void CudaArray::copyTo(CudaArray& dest) const {
Peter Eastman's avatar
Peter Eastman committed
116
117
    if (pointer == 0)
        throw OpenMMException("CudaArray has not been initialized");
118
119
    if (dest.getSize() != size || dest.getElementSize() != elementSize)
        throw OpenMMException("Error copying array "+name+" to "+dest.getName()+": The destination array does not match the size of the array");
Peter Eastman's avatar
Peter Eastman committed
120
    CUresult result = cuMemcpyDtoDAsync(dest.getDevicePointer(), pointer, size*elementSize, context->getCurrentStream());
121
122
123
124
125
126
    if (result != CUDA_SUCCESS) {
        std::stringstream str;
        str<<"Error copying array "<<name<<" to "<<dest.getName()<<": "<<CudaContext::getErrorString(result)<<" ("<<result<<")";
        throw OpenMMException(str.str());
    }
}