CudaArray.cpp 6.8 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
CudaArray::CudaArray() : pointer(0), ownsMemory(false) {
}

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
CudaArray::CudaArray(const CudaArray &other) noexcept {
    context = other.context;
    pointer = other.pointer;
    size = other.size;
    elementSize = other.elementSize;
    ownsMemory = false;
    name = other.name;
}

CudaArray::CudaArray(CudaArray &&other) noexcept :
    context(std::move(other.context)),
    pointer(std::move(other.pointer)),
    size(std::move(other.size)),
    elementSize(std::move(other.elementSize)),
    ownsMemory(false),
    name(std::move(other.name)) { }

CudaArray& CudaArray::operator =(const CudaArray& other) noexcept{
    if(this != &other) {
        context = other.context;
        pointer = other.pointer;
        size = other.size;
        elementSize = other.elementSize;
        ownsMemory = false;
        name = other.name;
    }
    return *this;
}

CudaArray& CudaArray::operator =(CudaArray &&other) noexcept{
    if(this != &other) {
        context = other.context;
        pointer = other.pointer;
        size = other.size;
        elementSize = other.elementSize;
        ownsMemory = false;
        name = other.name;
    }
    return *this;
}

Peter Eastman's avatar
Peter Eastman committed
79
80
CudaArray::CudaArray(CudaContext& context, int size, int elementSize, const std::string& name) : pointer(0) {
    initialize(context, size, elementSize, name);
81
82
83
}

CudaArray::~CudaArray() {
Peter Eastman's avatar
Peter Eastman committed
84
    if (pointer != 0 && ownsMemory && context->getContextIsValid()) {
85
        context->setAsCurrent();
86
87
88
        CUresult result = cuMemFree(pointer);
        if (result != CUDA_SUCCESS) {
            std::stringstream str;
89
            str<<"Error deleting array "<<name<<": "<<CudaContext::getErrorString(result)<<" ("<<result<<")";
90
91
92
93
94
            throw OpenMMException(str.str());
        }
    }
}

Peter Eastman's avatar
Peter Eastman committed
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
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);
}

126
void CudaArray::upload(const void* data, bool blocking) {
Peter Eastman's avatar
Peter Eastman committed
127
128
    if (pointer == 0)
        throw OpenMMException("CudaArray has not been initialized");
129
130
131
132
    CUresult result;
    if (blocking)
        result = cuMemcpyHtoD(pointer, data, size*elementSize);
    else
Peter Eastman's avatar
Peter Eastman committed
133
        result = cuMemcpyHtoDAsync(pointer, data, size*elementSize, context->getCurrentStream());
134
135
    if (result != CUDA_SUCCESS) {
        std::stringstream str;
136
        str<<"Error uploading array "<<name<<": "<<CudaContext::getErrorString(result)<<" ("<<result<<")";
137
138
139
140
141
        throw OpenMMException(str.str());
    }
}

void CudaArray::download(void* data, bool blocking) const {
Peter Eastman's avatar
Peter Eastman committed
142
143
    if (pointer == 0)
        throw OpenMMException("CudaArray has not been initialized");
144
145
146
147
    CUresult result;
    if (blocking)
        result = cuMemcpyDtoH(data, pointer, size*elementSize);
    else
Peter Eastman's avatar
Peter Eastman committed
148
        result = cuMemcpyDtoHAsync(data, pointer, size*elementSize, context->getCurrentStream());
149
150
    if (result != CUDA_SUCCESS) {
        std::stringstream str;
151
        str<<"Error downloading array "<<name<<": "<<CudaContext::getErrorString(result)<<" ("<<result<<")";
152
153
154
        throw OpenMMException(str.str());
    }
}
155
156

void CudaArray::copyTo(CudaArray& dest) const {
Peter Eastman's avatar
Peter Eastman committed
157
158
    if (pointer == 0)
        throw OpenMMException("CudaArray has not been initialized");
159
160
    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
161
    CUresult result = cuMemcpyDtoDAsync(dest.getDevicePointer(), pointer, size*elementSize, context->getCurrentStream());
162
163
164
165
166
167
    if (result != CUDA_SUCCESS) {
        std::stringstream str;
        str<<"Error copying array "<<name<<" to "<<dest.getName()<<": "<<CudaContext::getErrorString(result)<<" ("<<result<<")";
        throw OpenMMException(str.str());
    }
}