CudaArray.cpp 6.07 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.               *
 *                                                                            *
9
 * Portions copyright (c) 2012-2021 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());
        }
    }
}

54
void CudaArray::initialize(ComputeContext& context, int size, int elementSize, const std::string& name) {
Peter Eastman's avatar
Peter Eastman committed
55
56
    if (this->pointer != 0)
        throw OpenMMException("CudaArray has already been initialized");
57
    this->context = &dynamic_cast<CudaContext&>(context);
Peter Eastman's avatar
Peter Eastman committed
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
    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
86
87
88
ComputeContext& CudaArray::getContext() {
    return *context;
}

89
void CudaArray::uploadSubArray(const void* data, int offset, int elements, bool blocking) {
Peter Eastman's avatar
Peter Eastman committed
90
91
    if (pointer == 0)
        throw OpenMMException("CudaArray has not been initialized");
92
93
    if (offset < 0 || offset+elements > getSize())
        throw OpenMMException("uploadSubArray: data exceeds range of array");
94
95
    CUresult result;
    if (blocking)
96
        result = cuMemcpyHtoD(pointer+offset*elementSize, data, elements*elementSize);
97
    else
98
        result = cuMemcpyHtoDAsync(pointer+offset*elementSize, data, elements*elementSize, context->getCurrentStream());
99
100
    if (result != CUDA_SUCCESS) {
        std::stringstream str;
101
        str<<"Error uploading array "<<name<<": "<<CudaContext::getErrorString(result)<<" ("<<result<<")";
102
103
104
105
106
        throw OpenMMException(str.str());
    }
}

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

121
void CudaArray::copyTo(ArrayInterface& dest) const {
Peter Eastman's avatar
Peter Eastman committed
122
123
    if (pointer == 0)
        throw OpenMMException("CudaArray has not been initialized");
124
125
    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");
126
127
    CudaArray& cuDest = context->unwrap(dest);
    CUresult result = cuMemcpyDtoDAsync(cuDest.getDevicePointer(), pointer, size*elementSize, context->getCurrentStream());
128
129
130
131
132
133
    if (result != CUDA_SUCCESS) {
        std::stringstream str;
        str<<"Error copying array "<<name<<" to "<<dest.getName()<<": "<<CudaContext::getErrorString(result)<<" ("<<result<<")";
        throw OpenMMException(str.str());
    }
}