35#include <hip/hip_runtime.h> 
   53    hipLaunchKernelGGL(HIP_KERNEL_NAME(schwarz_extrude_kernel<real,NX>),  \ 
   54                       nblcks, nthrds, 0, stream,                         \ 
   55                       (real *) arr1,* l1, * f1,                          \ 
   56                       (real *) arr2, *l2, *f2);                          \ 
   57    HIP_CHECK(hipGetLastError());                                         \ 
 
__global__ void dirichlet_apply_scalar_kernel(const int *__restrict__ msk, T *__restrict__ x, const T g, const int m)
 
void hip_schwarz_toext3d(void *a, void *b, int *nx, int *nel, hipStream_t stream)
 
void hip_schwarz_extrude(void *arr1, int *l1, real *f1, void *arr2, int *l2, real *f2, int *nx, int *nel, hipStream_t stream)
 
void hip_schwarz_toreg3d(void *b, void *a, int *nx, int *nel, hipStream_t stream)