This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pack_kernel_cuda.cu
executable file
·260 lines (234 loc) · 9.8 KB
/
pack_kernel_cuda.cu
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
/*Crown Copyright 2012 AWE.
*
* This file is part of CloverLeaf.
*
* CloverLeaf is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* CloverLeaf 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 for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* CloverLeaf. If not, see http://www.gnu.org/licenses/.
*/
/*
* @brief CUDA mpi buffer transfer
* @author Michael Boulton
* @details Transfers the buffers required for the mpi halo exchange
*/
#include "cuda_common.hpp"
#include "kernel_files/pack_kernel.cuknl"
#include <numeric>
/**********************/
// define a generic interface for fortran
#define C_PACK_INTERFACE(operation, dir) \
extern "C" void operation##_##dir##_buffers_cuda_ \
(int *xmin, int *xmax, int *ymin, int *ymax, \
int *chunk_1, int *chunk_2, int *external_face, \
int *x_inc, int *y_inc, int *depth, int *which_field, \
double *field_ptr, double *buffer_1, double *buffer_2) \
{ \
cuda_chunk.operation##_##dir(*chunk_1, *chunk_2, *external_face,\
*x_inc, *y_inc, *depth, \
*which_field, buffer_1, buffer_2); \
}
C_PACK_INTERFACE(pack, left_right)
C_PACK_INTERFACE(unpack, left_right)
C_PACK_INTERFACE(pack, top_bottom)
C_PACK_INTERFACE(unpack, top_bottom)
/*****************************/
void CloverleafCudaChunk::packRect
(double* host_buffer, dir_t direction,
int x_inc, int y_inc, int edge, int dest,
int which_field, int depth)
{
// TODO just call packBuffer/unpackBuffer from this
}
void CloverleafCudaChunk::packBuffer
(const int which_array,
const int which_side,
double* buffer,
const int buffer_size,
const int depth)
{
#define CALL_PACK(dev_ptr, type, face, dir)\
{\
const int launch_sz = (ceil((dir##_max+4+type.dir##_extra)/static_cast<float>(BLOCK_SZ))) * depth; \
device_pack##face##Buffer<<< launch_sz, BLOCK_SZ >>> \
(x_min, x_max, y_min, y_max, type, \
dev_ptr, dev_##face##_send_buffer, depth); \
CUDA_ERR_CHECK; \
hipDeviceSynchronize();\
hipMemcpy(buffer, dev_##face##_send_buffer, buffer_size*sizeof(double), hipMemcpyDeviceToHost); \
CUDA_ERR_CHECK; \
break; \
}
#define PACK_CUDA_BUFFERS(dev_ptr, type) \
switch(which_side) \
{ \
case CHUNK_LEFT: \
CALL_PACK(dev_ptr, type, left, y);\
case CHUNK_RIGHT:\
CALL_PACK(dev_ptr, type, right, y);\
case CHUNK_BOTTOM:\
CALL_PACK(dev_ptr, type, bottom, x);\
case CHUNK_TOP:\
CALL_PACK(dev_ptr, type, top, x);\
default: \
DIE("Invalid side %d passed to buffer packing", which_side); \
}
switch(which_array)
{
case FIELD_density0: PACK_CUDA_BUFFERS(density0, CELL); break;
case FIELD_density1: PACK_CUDA_BUFFERS(density1, CELL); break;
case FIELD_energy0: PACK_CUDA_BUFFERS(energy0, CELL); break;
case FIELD_energy1: PACK_CUDA_BUFFERS(energy1, CELL); break;
case FIELD_pressure: PACK_CUDA_BUFFERS(pressure, CELL); break;
case FIELD_viscosity: PACK_CUDA_BUFFERS(viscosity, CELL); break;
case FIELD_soundspeed: PACK_CUDA_BUFFERS(soundspeed, CELL); break;
case FIELD_xvel0: PACK_CUDA_BUFFERS(xvel0, VERTEX_X); break;
case FIELD_xvel1: PACK_CUDA_BUFFERS(xvel1, VERTEX_X); break;
case FIELD_yvel0: PACK_CUDA_BUFFERS(yvel0, VERTEX_Y); break;
case FIELD_yvel1: PACK_CUDA_BUFFERS(yvel1, VERTEX_Y); break;
case FIELD_vol_flux_x: PACK_CUDA_BUFFERS(vol_flux_x, X_FACE); break;
case FIELD_vol_flux_y: PACK_CUDA_BUFFERS(vol_flux_y, Y_FACE); break;
case FIELD_mass_flux_x: PACK_CUDA_BUFFERS(mass_flux_x, X_FACE); break;
case FIELD_mass_flux_y: PACK_CUDA_BUFFERS(mass_flux_y, Y_FACE); break;
default: DIE("Invalid which_array identifier '%d' passed to CUDA - valid range is %d-%d", which_array, FIELD_density0, FIELD_mass_flux_y);
}
#undef CALL_PACK
#undef PACK_CUDA_BUFFERS
}
void CloverleafCudaChunk::unpackBuffer
(const int which_array,
const int which_side,
double* buffer,
const int buffer_size,
const int depth)
{
#define CALL_UNPACK(dev_ptr, type, face, dir)\
{ \
hipMemcpy(dev_##face##_recv_buffer, buffer, buffer_size*sizeof(double), hipMemcpyHostToDevice); \
CUDA_ERR_CHECK; \
hipDeviceSynchronize();\
const int launch_sz = (ceil((dir##_max+4+type.dir##_extra)/static_cast<float>(BLOCK_SZ))) * depth; \
device_unpack##face##Buffer<<< launch_sz, BLOCK_SZ >>> \
(x_min, x_max, y_min, y_max, type, \
dev_ptr, dev_##face##_recv_buffer, depth); \
CUDA_ERR_CHECK; \
break; \
}
#define UNPACK_CUDA_BUFFERS(dev_ptr, type) \
switch(which_side) \
{ \
case CHUNK_LEFT: \
CALL_UNPACK(dev_ptr, type, left, y);\
case CHUNK_RIGHT:\
CALL_UNPACK(dev_ptr, type, right, y);\
case CHUNK_BOTTOM:\
CALL_UNPACK(dev_ptr, type, bottom, x);\
case CHUNK_TOP:\
CALL_UNPACK(dev_ptr, type, top, x);\
default: \
DIE("Invalid side %d passed to buffer unpacking", which_side); \
}
switch(which_array)
{
case FIELD_density0: UNPACK_CUDA_BUFFERS(density0, CELL); break;
case FIELD_density1: UNPACK_CUDA_BUFFERS(density1, CELL); break;
case FIELD_energy0: UNPACK_CUDA_BUFFERS(energy0, CELL); break;
case FIELD_energy1: UNPACK_CUDA_BUFFERS(energy1, CELL); break;
case FIELD_pressure: UNPACK_CUDA_BUFFERS(pressure, CELL); break;
case FIELD_viscosity: UNPACK_CUDA_BUFFERS(viscosity, CELL); break;
case FIELD_soundspeed: UNPACK_CUDA_BUFFERS(soundspeed, CELL); break;
case FIELD_xvel0: UNPACK_CUDA_BUFFERS(xvel0, VERTEX_X); break;
case FIELD_xvel1: UNPACK_CUDA_BUFFERS(xvel1, VERTEX_X); break;
case FIELD_yvel0: UNPACK_CUDA_BUFFERS(yvel0, VERTEX_Y); break;
case FIELD_yvel1: UNPACK_CUDA_BUFFERS(yvel1, VERTEX_Y); break;
case FIELD_vol_flux_x: UNPACK_CUDA_BUFFERS(vol_flux_x, X_FACE); break;
case FIELD_vol_flux_y: UNPACK_CUDA_BUFFERS(vol_flux_y, Y_FACE); break;
case FIELD_mass_flux_x: UNPACK_CUDA_BUFFERS(mass_flux_x, X_FACE); break;
case FIELD_mass_flux_y: UNPACK_CUDA_BUFFERS(mass_flux_y, Y_FACE); break;
default: DIE("Invalid which_array identifier '%d' passed to CUDA - valid range is %d-%d", which_array, FIELD_density0, FIELD_mass_flux_y);
}
#undef CALL_UNPACK
#undef UNPACK_CUDA_BUFFERS
}
int CloverleafCudaChunk::getBufferSize
(int edge, int depth, int x_inc, int y_inc)
{
int region[2];
switch (edge)
{
// depth*y_max+... region - 1 or 2 columns
case CHUNK_LEFT:
region[0] = depth;
region[1] = y_max + y_inc + (2*depth);
break;
case CHUNK_RIGHT:
region[0] = depth;
region[1] = y_max + y_inc + (2*depth);
break;
// depth*x_max+... region - 1 or 2 rows
case CHUNK_BOTTOM:
region[0] = x_max + x_inc + (2*depth);
region[1] = depth;
break;
case CHUNK_TOP:
region[0] = x_max + x_inc + (2*depth);
region[1] = depth;
break;
default:
DIE("Invalid face identifier (%d) passed to getBufferSize\n", edge);
}
return region[0]*region[1];
}
#define CHECK_PACK(op, side1, side2) \
if (external_face != chunk_1 || external_face != chunk_2) \
{ \
hipDeviceSynchronize(); \
} \
if (external_face != chunk_1) \
{ \
op##Buffer(which_field, \
side1, \
buffer_1, \
getBufferSize(side1, depth, x_inc, y_inc), \
depth); \
} \
if (external_face != chunk_2) \
{ \
op##Buffer(which_field, \
side2, \
buffer_2, \
getBufferSize(side2, depth, x_inc, y_inc), \
depth); \
} \
if (external_face != chunk_1 || external_face != chunk_2) \
{ \
hipDeviceSynchronize(); \
}
void CloverleafCudaChunk::pack_left_right
(PACK_ARGS)
{
CHECK_PACK(pack, CHUNK_LEFT, CHUNK_RIGHT);
}
void CloverleafCudaChunk::unpack_left_right
(PACK_ARGS)
{
CHECK_PACK(unpack, CHUNK_LEFT, CHUNK_RIGHT);
}
void CloverleafCudaChunk::pack_top_bottom
(PACK_ARGS)
{
CHECK_PACK(pack, CHUNK_BOTTOM, CHUNK_TOP);
}
void CloverleafCudaChunk::unpack_top_bottom
(PACK_ARGS)
{
CHECK_PACK(unpack, CHUNK_BOTTOM, CHUNK_TOP);
}