-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathEwaldCUDA.h
88 lines (69 loc) · 2.31 KB
/
EwaldCUDA.h
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
#ifndef _EWALD_CUDA_H_
#define _EWALD_CUDA_H_
#include "HostCUDA.h"
/* defines for Hybrid API buffer indices */
#define EWALD_READ_ONLY_DATA 0
#define EWALD_TABLE 1
/* This has to be larger than the first two because there will be one
* of these for each Chare on the node. */
#define PARTICLE_TABLE 2
/* Defines for place in the bufferInfo array */
#define PARTICLE_TABLE_IDX 0
#define EWALD_READ_ONLY_DATA_IDX 1
#define EWALD_TABLE_IDX 2
#define BUFFERS_PER_CHARE 3
#define NEWH 80
#define BLOCK_SIZE 128
/* See "defines for Hybrid API buffer indices" in HostCUDA.h for this
* number. */
#define NUM_GRAVITY_BUFS 5
/** @brief Data for the Ewald h loop in the CUDA kernel
*/
typedef struct {
cudatype hx, hy, hz;
cudatype hCfac, hSfac;
} EwtData;
/** @brief CUDA version of complete MultipoleMoments for Ewald
*/
typedef struct {
#ifndef HEXADECAPOLE
cudatype xx, xy, xz, yy, yz, zz;
#endif
cudatype totalMass;
cudatype cmx, cmy, cmz;
} MultipoleMomentsData;
/** @brief CUDA version of MOMC for Ewald
*/
typedef struct {
cudatype m;
cudatype xx,yy,xy,xz,yz;
cudatype xxx,xyy,xxy,yyy,xxz,yyz,xyz;
cudatype xxxx,xyyy,xxxy,yyyy,xxxz,yyyz,xxyy,xxyz,xyyz;
cudatype zz;
cudatype xzz,yzz,zzz;
cudatype xxzz,xyzz,xzzz,yyzz,yzzz,zzzz;
} MomcData;
/** @brief Parameters and data for Ewald in the CUDA kernel
*/
typedef struct {
MultipoleMomentsData mm;
MomcData momcRoot;
int n, nReps, nEwReps, nEwhLoop;
cudatype L, fEwCut, alpha, alpha2, k1, ka, fEwCut2, fInner2;
} EwaldReadOnlyData;
typedef struct {
int EwaldRange[2];
int *EwaldMarkers;
EwtData *ewt;
EwaldReadOnlyData *cachedData;
} EwaldData;
void EwaldHostMemorySetup(EwaldData *h_idata, int size, int nEwhLoop, int largephase);
void EwaldHostMemoryFree(EwaldData *h_idata, int largephase);
#ifdef CUDA_INSTRUMENT_WRS
void EwaldHost(EwaldData *h_idata, void *cb, int myIndex, char phase, int largephase);
#else
void EwaldHost(EwaldData *h_idata, void *cb, int myIndex, int largephase);
#endif
__global__ void EwaldTopKernel(CompactPartData *particleCores, VariablePartData *particleVars, int *markers, int largephase, int First, int Last);
__global__ void EwaldBottomKernel(CompactPartData *particleCores, VariablePartData *particleVars, int *markers, int largephase, int First, int Last);
#endif