forked from ComputationalRadiationPhysics/picongpu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeviceBufferIntern.hpp
328 lines (279 loc) · 10.6 KB
/
DeviceBufferIntern.hpp
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
/**
* Copyright 2013 Axel Huebl, Heiko Burau, Rene Widera
*
* This file is part of libPMacc.
*
* libPMacc is free software: you can redistribute it and/or modify
* it under the terms of of either the GNU General Public License or
* 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.
* libPMacc 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 General Public License and the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License
* and the GNU Lesser General Public License along with libPMacc.
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _DEVICEBUFFERINTERN_HPP
#define _DEVICEBUFFERINTERN_HPP
#include <cassert>
#include "dimensions/DataSpace.hpp"
#include "memory/buffers/DeviceBuffer.hpp"
#include "memory/boxes/DataBox.hpp"
#include "eventSystem/tasks/Factory.hpp"
namespace PMacc
{
/**
* Internal device buffer implementation.
*/
template <class TYPE, unsigned DIM>
class DeviceBufferIntern : public DeviceBuffer<TYPE, DIM>
{
public:
typedef typename DeviceBuffer<TYPE, DIM>::DataBoxType DataBoxType;
/*! create device buffer
* @param dataSpace size in any dimension of the grid on the device
* @param sizeOnDevice memory with the current size of the grid is stored on device
* @param useVectorAsBase use a vector as base of the array (is not lined pitched)
* if true size on device is atomaticly set to false
*/
DeviceBufferIntern(DataSpace<DIM> dataSpace, bool sizeOnDevice = false, bool useVectorAsBase = false) :
DeviceBuffer<TYPE, DIM>(dataSpace),
sizeOnDevice(sizeOnDevice),
useOtherMemory(false),
offset(DataSpace<DIM>())
{
//create size on device before any use of setCurrentSize
if (useVectorAsBase)
{
sizeOnDevice = false;
createSizeOnDevice(sizeOnDevice);
createFakeData();
this->data1D = true;
}
else
{
createSizeOnDevice(sizeOnDevice);
createData();
this->data1D = false;
}
}
DeviceBufferIntern(DeviceBuffer<TYPE,DIM>& source, DataSpace<DIM> dataSpace, DataSpace<DIM> offset, bool sizeOnDevice = false) :
DeviceBuffer<TYPE, DIM>(dataSpace),
sizeOnDevice(sizeOnDevice),
offset(offset + source.getOffset()),
data(source.getCudaPitched()),
useOtherMemory(true)
{
createSizeOnDevice(sizeOnDevice);
this->data1D = false;
}
virtual ~DeviceBufferIntern()
{
__startOperation(ITask::TASK_CUDA);
if (sizeOnDevice)
{
CUDA_CHECK(cudaFree(sizeOnDevicePtr));
}
if (!useOtherMemory)
{
CUDA_CHECK(cudaFree(data.ptr));
}
}
void reset(bool preserveData = true)
{
this->setCurrentSize(Buffer<TYPE, DIM>::getDataSpace().productOfComponents());
__startOperation(ITask::TASK_CUDA);
if (!preserveData)
{
if (DIM == DIM1)
{
CUDA_CHECK(cudaMemset(data.ptr, 0, Buffer<TYPE, DIM>::getDataSpace()[0] * sizeof (TYPE)));
}
if (DIM == DIM2)
{
CUDA_CHECK(cudaMemset2D(data.ptr, data.pitch, 0, data.xsize , data.ysize));
}
if (DIM == DIM3)
{
cudaExtent extent;
extent.width = this->data_space[0] * sizeof (TYPE);
extent.height = this->data_space[1];
extent.depth = this->data_space[2];
CUDA_CHECK(cudaMemset3D(data, 0, extent));
}
}
}
DataBoxType getDataBox()
{
__startOperation(ITask::TASK_CUDA);
return DataBoxType(PitchedBox<TYPE, DIM > ((TYPE*) data.ptr, offset,
this->data_space, data.pitch));
}
TYPE* getPointer()
{
__startOperation(ITask::TASK_CUDA);
size_t widthMultHeight = 0;
switch (DIM)
{
case DIM1:
return (TYPE*) (data.ptr) + this->offset[0];
case DIM2:
return (TYPE*) ((char*) data.ptr + this->offset[1] * this->data.pitch) + this->offset[0];
case DIM3:
widthMultHeight = this->offset[1] * this->data.pitch;
return (TYPE*) ((char*) data.ptr + this->offset[2] * widthMultHeight + widthMultHeight + this->offset[0]);
default:
throw std::runtime_error("DIM has invalid value");
}
}
DataSpace<DIM> getOffset() const
{
return offset;
}
bool hasCurrentSizeOnDevice() const
{
return sizeOnDevice;
}
size_t* getCurrentSizeOnDevicePointer() throw (std::runtime_error)
{
__startOperation(ITask::TASK_CUDA);
if (!sizeOnDevice)
{
throw std::runtime_error("Buffer has no size on device!, currentSize is only stored on host side.");
}
return sizeOnDevicePtr;
}
size_t* getCurrentSizeHostSidePointer()
{
__startOperation(ITask::TASK_HOST);
return this->current_size;
}
TYPE* getBasePointer()
{
__startOperation(ITask::TASK_CUDA);
return (TYPE*) data.ptr;
}
/*! Get current size of any dimension
* @return count of current elements per dimension
*/
virtual size_t getCurrentSize()
{
if (sizeOnDevice)
{
__startTransaction(__getTransactionEvent());
Factory::getInstance().createTaskGetCurrentSizeFromDevice(*this);
__endTransaction().waitForFinished();
}
return DeviceBuffer<TYPE, DIM>::getCurrentSize();
}
virtual void setCurrentSize(const size_t size)
{
Buffer<TYPE, DIM>::setCurrentSize(size);
if (sizeOnDevice)
{
Factory::getInstance().createTaskSetCurrentSizeOnDevice(
*this, size);
}
}
void copyFrom(HostBuffer<TYPE, DIM>& other)
{
__startAtomicTransaction(__getTransactionEvent());
assert(this->isMyDataSpaceGreaterThan(other.getCurrentDataSpace()));
Factory::getInstance().createTaskCopyHostToDevice(other, *this);
__setTransactionEvent(__endTransaction());
}
void copyFrom(DeviceBuffer<TYPE, DIM>& other)
{
__startAtomicTransaction(__getTransactionEvent());
assert(this->isMyDataSpaceGreaterThan(other.getCurrentDataSpace()));
Factory::getInstance().createTaskCopyDeviceToDevice(other, *this);
__setTransactionEvent(__endTransaction());
}
const cudaPitchedPtr getCudaPitched() const
{
__startOperation(ITask::TASK_CUDA);
return data;
}
size_t getPitch() const
{
return data.pitch;
}
virtual void setValue(const TYPE& value)
{
Factory::getInstance().createTaskSetValue(*this, value);
};
private:
/*! create native array with pitched lines
*/
void createData()
{
__startOperation(ITask::TASK_CUDA);
data.ptr = NULL;
data.pitch = 1;
data.xsize = this->data_space[0]* sizeof (TYPE);
data.ysize = 1;
if (DIM == DIM1)
{
log<ggLog::MEMORY >("Create device 1D data: %1% MiB") % ( data.xsize / 1024 / 1024 );
CUDA_CHECK(cudaMallocPitch(&data.ptr, &data.pitch, data.xsize , 1));
}
if (DIM == DIM2)
{
data.ysize = this->data_space[1];
log<ggLog::MEMORY >("Create device 2D data: %1% MiB") % ( data.xsize * data.ysize / 1024 / 1024 );
CUDA_CHECK(cudaMallocPitch(&data.ptr, &data.pitch, data.xsize , data.ysize));
}
if (DIM == DIM3)
{
cudaExtent extent;
extent.width = this->data_space[0] * sizeof (TYPE);
extent.height = this->data_space[1];
extent.depth = this->data_space[2];
log<ggLog::MEMORY >("Create device 3D data: %1% MiB") % ( this->data_space.productOfComponents() * sizeof (TYPE) / 1024 / 1024 );
CUDA_CHECK(cudaMalloc3D(&data, extent));
}
reset(false);
}
/*!create 1D, 2D, 3D Array which use only a vector as base
*/
void createFakeData()
{
__startOperation(ITask::TASK_CUDA);
data.ptr = NULL;
data.pitch = 1;
data.xsize = this->data_space[0]* sizeof (TYPE);
data.ysize = 1;
log<ggLog::MEMORY >("Create device fake data: %1% MiB") % ( this->data_space.productOfComponents() * sizeof (TYPE) / 1024 / 1024 );
CUDA_CHECK(cudaMallocPitch(&data.ptr, &data.pitch, this->data_space.productOfComponents() * sizeof (TYPE), 1));
//fake the pitch, thus we can use this 1D Buffer as 2D or 3D
data.pitch = this->data_space[0] * sizeof (TYPE);
if (DIM > DIM1)
{
data.ysize = this->data_space[1];
}
reset(false);
}
void createSizeOnDevice(bool sizeOnDevice)
{
__startOperation(ITask::TASK_HOST);
sizeOnDevicePtr = NULL;
if (sizeOnDevice)
{
CUDA_CHECK(cudaMalloc(&sizeOnDevicePtr, sizeof (size_t)));
}
setCurrentSize(Buffer<TYPE, DIM>::getDataSpace().productOfComponents());
}
private:
DataSpace<DIM> offset;
bool sizeOnDevice;
size_t* sizeOnDevicePtr;
cudaPitchedPtr data;
bool useOtherMemory;
};
} //namespace PMacc
#endif /* _DEVICEBUFFERINTERN_HPP */