CudaArray.cpp 5.69 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
45
46
        CUresult result = cuMemFree(pointer);
        if (result != CUDA_SUCCESS) {
            std::stringstream str;
47
            str<<"Error deleting array "<<name<<": "<<CudaContext::getErrorString(result)<<" ("<<result<<")";
48
49
50
51
52
            throw OpenMMException(str.str());
        }
    }
}

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

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

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

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