Replaced deprecated DCONST_INT calls with overloaded DCONST()
This commit is contained in:
@@ -80,17 +80,13 @@ DCONST(const AcReal3Param param)
|
|||||||
{
|
{
|
||||||
return d_mesh_info.real3_params[param];
|
return d_mesh_info.real3_params[param];
|
||||||
}
|
}
|
||||||
constexpr VertexBufferHandle
|
static __device__ constexpr VertexBufferHandle
|
||||||
DCONST(const VertexBufferHandle handle)
|
DCONST(const VertexBufferHandle handle)
|
||||||
{
|
{
|
||||||
return handle;
|
return handle;
|
||||||
}
|
}
|
||||||
#define DCONST_INT(x) DCONST(x)
|
#define DEVICE_VTXBUF_IDX(i, j, k) ((i) + (j)*DCONST(AC_mx) + (k)*DCONST(AC_mxy))
|
||||||
#define DCONST_INT3(x) DCONST(x)
|
#define DEVICE_1D_COMPDOMAIN_IDX(i, j, k) ((i) + (j)*DCONST(AC_nx) + (k)*DCONST(AC_nxy))
|
||||||
#define DCONST_REAL(x) DCONST(x)
|
|
||||||
#define DCONST_REAL3(x) DCONST(x)
|
|
||||||
#define DEVICE_VTXBUF_IDX(i, j, k) ((i) + (j)*DCONST_INT(AC_mx) + (k)*DCONST_INT(AC_mxy))
|
|
||||||
#define DEVICE_1D_COMPDOMAIN_IDX(i, j, k) ((i) + (j)*DCONST_INT(AC_nx) + (k)*DCONST_INT(AC_nxy))
|
|
||||||
#define globalGridN (d_mesh_info.int3_params[AC_global_grid_n])
|
#define globalGridN (d_mesh_info.int3_params[AC_global_grid_n])
|
||||||
//#define globalMeshM // Placeholder
|
//#define globalMeshM // Placeholder
|
||||||
//#define localMeshN // Placeholder
|
//#define localMeshN // Placeholder
|
||||||
|
|||||||
@@ -38,36 +38,35 @@ kernel_periodic_boundconds(const int3 start, const int3 end, AcReal* vtxbuf)
|
|||||||
if (i_dst >= end.x || j_dst >= end.y || k_dst >= end.z)
|
if (i_dst >= end.x || j_dst >= end.y || k_dst >= end.z)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// if (i_dst >= DCONST_INT(AC_mx) || j_dst >= DCONST_INT(AC_my) || k_dst >= DCONST_INT(AC_mz))
|
// if (i_dst >= DCONST(AC_mx) || j_dst >= DCONST(AC_my) || k_dst >= DCONST(AC_mz))
|
||||||
// return;
|
// return;
|
||||||
|
|
||||||
// If destination index is inside the computational domain, return since
|
// If destination index is inside the computational domain, return since
|
||||||
// the boundary conditions are only applied to the ghost zones
|
// the boundary conditions are only applied to the ghost zones
|
||||||
if (i_dst >= DCONST_INT(AC_nx_min) && i_dst < DCONST_INT(AC_nx_max) &&
|
if (i_dst >= DCONST(AC_nx_min) && i_dst < DCONST(AC_nx_max) && j_dst >= DCONST(AC_ny_min) &&
|
||||||
j_dst >= DCONST_INT(AC_ny_min) && j_dst < DCONST_INT(AC_ny_max) &&
|
j_dst < DCONST(AC_ny_max) && k_dst >= DCONST(AC_nz_min) && k_dst < DCONST(AC_nz_max))
|
||||||
k_dst >= DCONST_INT(AC_nz_min) && k_dst < DCONST_INT(AC_nz_max))
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Find the source index
|
// Find the source index
|
||||||
// Map to nx, ny, nz coordinates
|
// Map to nx, ny, nz coordinates
|
||||||
int i_src = i_dst - DCONST_INT(AC_nx_min);
|
int i_src = i_dst - DCONST(AC_nx_min);
|
||||||
int j_src = j_dst - DCONST_INT(AC_ny_min);
|
int j_src = j_dst - DCONST(AC_ny_min);
|
||||||
int k_src = k_dst - DCONST_INT(AC_nz_min);
|
int k_src = k_dst - DCONST(AC_nz_min);
|
||||||
|
|
||||||
// Translate (s.t. the index is always positive)
|
// Translate (s.t. the index is always positive)
|
||||||
i_src += DCONST_INT(AC_nx);
|
i_src += DCONST(AC_nx);
|
||||||
j_src += DCONST_INT(AC_ny);
|
j_src += DCONST(AC_ny);
|
||||||
k_src += DCONST_INT(AC_nz);
|
k_src += DCONST(AC_nz);
|
||||||
|
|
||||||
// Wrap
|
// Wrap
|
||||||
i_src %= DCONST_INT(AC_nx);
|
i_src %= DCONST(AC_nx);
|
||||||
j_src %= DCONST_INT(AC_ny);
|
j_src %= DCONST(AC_ny);
|
||||||
k_src %= DCONST_INT(AC_nz);
|
k_src %= DCONST(AC_nz);
|
||||||
|
|
||||||
// Map to mx, my, mz coordinates
|
// Map to mx, my, mz coordinates
|
||||||
i_src += DCONST_INT(AC_nx_min);
|
i_src += DCONST(AC_nx_min);
|
||||||
j_src += DCONST_INT(AC_ny_min);
|
j_src += DCONST(AC_ny_min);
|
||||||
k_src += DCONST_INT(AC_nz_min);
|
k_src += DCONST(AC_nz_min);
|
||||||
|
|
||||||
const int src_idx = DEVICE_VTXBUF_IDX(i_src, j_src, k_src);
|
const int src_idx = DEVICE_VTXBUF_IDX(i_src, j_src, k_src);
|
||||||
const int dst_idx = DEVICE_VTXBUF_IDX(i_dst, j_dst, k_dst);
|
const int dst_idx = DEVICE_VTXBUF_IDX(i_dst, j_dst, k_dst);
|
||||||
|
|||||||
Reference in New Issue
Block a user