-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCUDAGlobalMemoryManager.hxx
661 lines (596 loc) · 15.8 KB
/
CUDAGlobalMemoryManager.hxx
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
/*
____ _ __ ____ __ ____
/ __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____
_\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_-</ __/ _/ // _ \/ __/
/___/\__/_/_.__/\__/_/ \___\_\_,_/\__/___/\__/ /___/_//_/\__(_)
Copyright 2012 SciberQuest Inc.
*/
#ifndef __CUDAGlobalMemoryManager_h
#define __CUDAGlobalMemoryManager_h
//#define CUDAMemoryManagerDEBUG
#include "CUDAMemoryManager.hxx"
#include "CUDAMacros.h"
#include "vtkDataArray.h"
#include <iostream>
using std::cerr;
#include <cuda.h>
#include <cuda_runtime.h>
/// CUDAGlobalMemoryManager - Memory manager for global device memory
template<typename T>
class CUDAGlobalMemoryManager : public CUDAMemoryManager<T>
{
public:
/**
Constructors and copy constructors. The copy constructors copy
the data from host memory poiniter into the new device memory
block. The vtkDataArray overload conditionally copies data
if push is set to true.
*/
static CUDAGlobalMemoryManager<T> *New();
static CUDAGlobalMemoryManager<T> *New(unsigned long n);
static CUDAGlobalMemoryManager<T> *New(unsigned long nx, unsigned long ny);
static CUDAGlobalMemoryManager<T> *New(T *hostBlock, unsigned long n=1);
static CUDAGlobalMemoryManager<T> *New(T *hostBlock, unsigned long nx, unsigned long ny);
static CUDAGlobalMemoryManager<T> *New(vtkDataArray *da, int push=0);
///
virtual ~CUDAGlobalMemoryManager();
/**
Copy from host memory to device memory.
*/
virtual int Push(T *hostBlock);
virtual int Push(T *hostBlock, unsigned long nT);
virtual int Push(T *hostBlock, unsigned long ni, unsigned long nj);
virtual int Push(vtkDataArray *da);
virtual int Push(vtkDataArray *da, unsigned long nT);
/**
Copy from device memory into host memory.
*/
virtual int Pull(T *hostBlock);
virtual int Pull(T *hostBlock, unsigned long nT);
virtual int Pull(T *hostBlock, unsigned long ni, unsigned long nj);
virtual int Pull(vtkDataArray *da);
virtual int Pull(vtkDataArray *da, unsigned long nT);
/**
Set device memory to zero.
*/
int Zero();
int Zero(unsigned long n);
int Zero(unsigned long ni, unsigned long nj);
/**
Get a pointer to the device memory, usually to pass to
a kernel.
*/
virtual T *GetDevicePointer(){ return this->DeviceBlock; }
virtual unsigned long GetSize(){ return this->Ni; }
/**
Get the pitch from 2d allocation.
*/
unsigned long GetPitch(){ return this->Pitch; }
/**
Assign a texture reference to this device memory.
*/
virtual int BindToTexture(
textureReference *tex);
virtual int BindToTexture(
textureReference *tex,
int ni);
virtual int BindToTexture(
textureReference *tex,
int ni,
int nj);
virtual int BindToTexture(
textureReference *tex,
int ni,
int nj,
int nk);
/**
Low level allocation and deallocation.
*/
virtual int NewDeviceBlock(unsigned long n);
virtual int NewDeviceBlock(unsigned long nx, unsigned long ny);
virtual int DeleteDeviceBlock();
protected:
///
CUDAGlobalMemoryManager();
CUDAGlobalMemoryManager(unsigned long n);
CUDAGlobalMemoryManager(unsigned long ni, unsigned long nj);
CUDAGlobalMemoryManager(T *hostBlock, unsigned long n=1);
CUDAGlobalMemoryManager(T *hostBlock, unsigned long ni, unsigned long nj);
/**
Get a reference to the texture by name.
*/
const textureReference *GetTextureReference(const char *name);
CUDAGlobalMemoryManager(const CUDAGlobalMemoryManager<T>&); // not implemented
void operator=(const CUDAGlobalMemoryManager<T>&); // not implemented
private:
T *DeviceBlock;
unsigned long Ni;
unsigned long Nj;
unsigned long Nk;
unsigned long Pitch;
};
//-----------------------------------------------------------------------------
template<typename T>
CUDAGlobalMemoryManager<T>::CUDAGlobalMemoryManager()
:
DeviceBlock(0),
Ni(1),
Nj(0),
Nk(0),
Pitch(0)
{
unsigned long size=sizeof(T);
this->NewDeviceBlock(size);
}
//-----------------------------------------------------------------------------
template<typename T>
CUDAGlobalMemoryManager<T>::CUDAGlobalMemoryManager(
unsigned long ni,
unsigned long nj)
:
DeviceBlock(0),
Ni(ni),
Nj(nj),
Nk(0),
Pitch(0)
{
this->NewDeviceBlock(ni,nj);
}
//-----------------------------------------------------------------------------
template<typename T>
CUDAGlobalMemoryManager<T>::CUDAGlobalMemoryManager(unsigned long n)
:
DeviceBlock(0),
Ni(n),
Nj(0),
Nk(0),
Pitch(0)
{
unsigned long size=n*sizeof(T);
this->NewDeviceBlock(size);
}
//-----------------------------------------------------------------------------
template<typename T>
CUDAGlobalMemoryManager<T>::CUDAGlobalMemoryManager(
T *hostBlock,
unsigned long ni,
unsigned long nj)
:
DeviceBlock(0),
Ni(ni),
Nj(ni),
Nk(0),
Pitch(0)
{
this->NewDeviceBlock(ni,nj);
this->Push(hostBlock);
}
//-----------------------------------------------------------------------------
template<typename T>
CUDAGlobalMemoryManager<T>::CUDAGlobalMemoryManager(
T *hostBlock,
unsigned long n)
:
DeviceBlock(0),
Ni(n),
Nj(0),
Nk(0),
Pitch(0)
{
unsigned long size=n*sizeof(T);
this->NewDeviceBlock(size);
this->Push(hostBlock);
}
//-----------------------------------------------------------------------------
template<typename T>
CUDAGlobalMemoryManager<T>::~CUDAGlobalMemoryManager()
{
this->DeleteDeviceBlock();
}
//-----------------------------------------------------------------------------
template<typename T>
CUDAGlobalMemoryManager<T> *
CUDAGlobalMemoryManager<T>::New()
{
return new CUDAGlobalMemoryManager<T>;
}
//-----------------------------------------------------------------------------
template<typename T>
CUDAGlobalMemoryManager<T> *
CUDAGlobalMemoryManager<T>::New(unsigned long n)
{
return new CUDAGlobalMemoryManager<T>(n);
}
//-----------------------------------------------------------------------------
template<typename T>
CUDAGlobalMemoryManager<T> *
CUDAGlobalMemoryManager<T>::New(unsigned long ni, unsigned long nj)
{
return new CUDAGlobalMemoryManager<T>(ni,nj);
}
//-----------------------------------------------------------------------------
template<typename T>
CUDAGlobalMemoryManager<T> *
CUDAGlobalMemoryManager<T>::New(T *hostBlock, unsigned long n)
{
return new CUDAGlobalMemoryManager<T>(hostBlock,n);
}
//-----------------------------------------------------------------------------
template<typename T>
CUDAGlobalMemoryManager<T> *
CUDAGlobalMemoryManager<T>::New(T *hostBlock, unsigned long ni, unsigned long nj)
{
return new CUDAGlobalMemoryManager<T>(hostBlock,ni,nj);
}
//-----------------------------------------------------------------------------
template<typename T>
CUDAGlobalMemoryManager<T> *
CUDAGlobalMemoryManager<T>::New(vtkDataArray *da, int push)
{
int nComp=da->GetNumberOfComponents();
unsigned long n=da->GetNumberOfTuples()*nComp;
if (push)
{
return
new CUDAGlobalMemoryManager<T>((T*)da->GetVoidPointer(0),n);
}
return
new CUDAGlobalMemoryManager<T>(n);
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::NewDeviceBlock(
unsigned long ni,
unsigned long nj)
{
this->DeleteDeviceBlock();
cudaError_t ierr;
size_t pitch;
ierr=cudaMallocPitch(&this->DeviceBlock,&pitch,ni*sizeof(T),nj);
if (ierr)
{
CUDAErrorMacro(cerr,ierr,"NewDeviceBlock failed");
return -1;
}
this->Pitch=pitch;
#ifdef CUDAMemoryManagerDEBUG
cerr
<< "Allocated " << this->DeviceBlock << ", " << ni << "-x-" << nj
<< " bytes on the device. Pitch=" << pitch
<< endl;
#endif
return 0;
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::NewDeviceBlock(unsigned long n)
{
this->DeleteDeviceBlock();
if (n==0) return 0;
cudaError_t ierr;
ierr=cudaMalloc(&this->DeviceBlock,n);
if (ierr)
{
CUDAErrorMacro(cerr,ierr,"NewDeviceBlock failed");
return -1;
}
#ifdef CUDAMemoryManagerDEBUG
cerr
<< "Allocated " << this->DeviceBlock << ", " << n
<< " bytes on the device"
<< endl;
#endif
return 0;
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::DeleteDeviceBlock()
{
if (this->DeviceBlock)
{
#ifdef CUDAMemoryManagerDEBUG
cerr << "Deleted " << this->DeviceBlock << endl;
#endif
cudaFree(this->DeviceBlock);
this->DeviceBlock=0;
}
return 0;
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::Push(vtkDataArray *da)
{
T *pDa=(T*)da->GetVoidPointer(0);
return this->Push(pDa);
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::Push(vtkDataArray *da, unsigned long nT)
{
T *pDa=(T*)da->GetVoidPointer(0);
return this->Push(pDa,nT);
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::Push(T *hostBlock)
{
if (this->Nj)
{
return this->Push(hostBlock,this->Ni,this->Nj);
}
return this->Push(hostBlock,this->Ni);
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::Push(T *hostBlock, unsigned long nT)
{
unsigned long n=nT*sizeof(T);
#ifdef CUDAMemoryManagerDEBUG
cerr
<< "Pushing " << this->DeviceBlock << ", " << n
<< " bytes to the device"
<< endl;
#endif
cudaError_t ierr;
ierr=cudaMemcpy(
this->DeviceBlock,
hostBlock,
n,
cudaMemcpyHostToDevice);
if (ierr)
{
CUDAErrorMacro(cerr,ierr,"Push failed");
return -1;
}
return 0;
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::Push(
T *hostBlock,
unsigned long ni,
unsigned long nj)
{
#ifdef CUDAMemoryManagerDEBUG
cerr
<< "Pushing " << this->DeviceBlock << ", " << ni*nj*sizeof(T)
<< " bytes to the device"
<< endl;
#endif
cudaError_t ierr;
unsigned long hostPitch=ni*sizeof(T);
ierr=cudaMemcpy2D(
this->DeviceBlock,
this->Pitch,
hostBlock,
hostPitch,
hostPitch,
nj,
cudaMemcpyHostToDevice);
if (ierr)
{
CUDAErrorMacro(cerr,ierr,"Push 2d failed");
return -1;
}
return 0;
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::Pull(vtkDataArray *da)
{
unsigned long n=this->Ni;
T *pDa=(T*)da->GetVoidPointer(0);
return this->Pull(pDa,n);
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::Pull(vtkDataArray *da, unsigned long nT)
{
T *pDa=(T*)da->GetVoidPointer(0);
return this->Pull(pDa,nT);
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::Pull(T *hostBlock)
{
if (this->Nj)
{
return this->Pull(hostBlock,this->Ni,this->Nj);
}
return this->Pull(hostBlock,this->Ni);
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::Pull(T *hostBlock, unsigned long nT)
{
unsigned long n=nT*sizeof(T);
#ifdef CUDAMemoryManagerDEBUG
cerr
<< "Pulling " << this->DeviceBlock << ", " << n
<< " bytes from the device"
<< endl;
#endif
cudaError_t ierr;
ierr=cudaMemcpy(
hostBlock,
this->DeviceBlock,
n,
cudaMemcpyDeviceToHost);
if (ierr)
{
CUDAErrorMacro(cerr,ierr,"Pull failed");
return -1;
}
return 0;
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::Pull(
T *hostBlock,
unsigned long ni,
unsigned long nj)
{
#ifdef CUDAMemoryManagerDEBUG
cerr
<< "Pulling " << this->DeviceBlock << ", " << ni*nj*sizeof(T)
<< " bytes from the device"
<< endl;
#endif
cudaError_t ierr;
unsigned long hostPitch=ni*sizeof(T);
ierr=cudaMemcpy2D(
hostBlock,
hostPitch,
this->DeviceBlock,
this->Pitch,
hostPitch,
nj,
cudaMemcpyDeviceToHost);
if (ierr)
{
CUDAErrorMacro(cerr,ierr,"Pull failed");
return -1;
}
return 0;
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::Zero()
{
if (this->Nj)
{
return this->Zero(this->Ni,this->Nj);
}
return this->Zero(this->Ni);
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::Zero(unsigned long ni, unsigned long nj)
{
#ifdef CUDAMemoryManagerDEBUG
cerr
<< "Zero'd " << this->DeviceBlock << ", " << ni*nj*sizeof(T)
<< " bytes"
<< endl;
#endif
cudaError_t ierr;
ierr=cudaMemset2D(this->DeviceBlock,this->Pitch,0,ni*sizeof(T),nj);
if (ierr)
{
CUDAErrorMacro(cerr,ierr,"Memset 0 failed");
return -1;
}
return 0;
}
//-----------------------------------------------------------------------------
template<typename T>
int CUDAGlobalMemoryManager<T>::Zero(unsigned long nT)
{
unsigned long n=nT*sizeof(T);
#ifdef CUDAMemoryManagerDEBUG
cerr
<< "Zero'd " << this->DeviceBlock << ", " << n
<< " bytes"
<< endl;
#endif
cudaError_t ierr;
ierr=cudaMemset(this->DeviceBlock,0,n);
if (ierr)
{
CUDAErrorMacro(cerr,ierr,"Memset 0 failed");
return -1;
}
return 0;
}
//-----------------------------------------------------------------------------
template<typename T>
int
CUDAGlobalMemoryManager<T>::BindToTexture(textureReference *tex)
{
if (this->Nj)
{
return this->BindToTexture(tex,this->Ni,this->Nj);
}
return this->BindToTexture(tex,this->Ni);
}
//-----------------------------------------------------------------------------
template<typename T>
int
CUDAGlobalMemoryManager<T>::BindToTexture(
textureReference *tex,
int ni)
{
cudaChannelFormatDesc desc=cudaCreateChannelDesc<T>();
cudaError_t ierr=cudaBindTexture(
NULL,
tex,
this->DeviceBlock,
&desc,
ni*sizeof(T));
if (ierr)
{
CUDAErrorMacro(
cerr,
ierr,
<< "Failed to bind " << this->DeviceBlock);
return -1;
}
return 0;
}
//-----------------------------------------------------------------------------
template<typename T>
int
CUDAGlobalMemoryManager<T>::BindToTexture(
textureReference *tex,
int ni,
int nj)
{
cudaChannelFormatDesc desc=cudaCreateChannelDesc<T>();
cudaError_t ierr=cudaBindTexture2D(
NULL,
tex,
this->DeviceBlock,
&desc,
ni,
nj,
this->Pitch);
if (ierr)
{
CUDAErrorMacro(
cerr,
ierr,
<< "Failed to bind 2d " << this->DeviceBlock);
return -1;
}
return 0;
}
//-----------------------------------------------------------------------------
template<typename T>
int
CUDAGlobalMemoryManager<T>::BindToTexture(
textureReference *tex,
int ni,
int nj,
int nk)
{
// TODO
sqErrorMacro(cerr,"Not implemented.");
return -1;
}
//-----------------------------------------------------------------------------
template<typename T>
const textureReference *
CUDAGlobalMemoryManager<T>::GetTextureReference(
const char *name)
{
const textureReference *ref;
cudaError_t ierr;
ierr=cudaGetTextureReference(&ref,name);
if (ierr)
{
CUDAErrorMacro(cerr,ierr,"Failed to find a texture reference for " << name);
return 0;
}
return ref;
}
#endif